mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-18 23:04:20 +01:00
qemu: add initrd support
Append initrd image to qemu arguments if configured. Signed-off-by: Peng Tao <bergwolf@gmail.com>
This commit is contained in:
@@ -1117,6 +1117,9 @@ type Kernel struct {
|
||||
// Path is the guest kernel path on the host filesystem.
|
||||
Path string
|
||||
|
||||
// InitrdPath is the guest initrd path on the host filesystem.
|
||||
InitrdPath string
|
||||
|
||||
// Params is the kernel parameters string.
|
||||
Params string
|
||||
}
|
||||
@@ -1395,6 +1398,11 @@ func (config *Config) appendKernel() {
|
||||
config.qemuParams = append(config.qemuParams, "-kernel")
|
||||
config.qemuParams = append(config.qemuParams, config.Kernel.Path)
|
||||
|
||||
if config.Kernel.InitrdPath != "" {
|
||||
config.qemuParams = append(config.qemuParams, "-initrd")
|
||||
config.qemuParams = append(config.qemuParams, config.Kernel.InitrdPath)
|
||||
}
|
||||
|
||||
if config.Kernel.Params != "" {
|
||||
config.qemuParams = append(config.qemuParams, "-append")
|
||||
config.qemuParams = append(config.qemuParams, config.Kernel.Params)
|
||||
|
||||
Reference in New Issue
Block a user