c5f4dfe113
Sometimes it is necessary to modify the kernel command-line of the
image, this adds support for a [customizations.kernel] section to the
blueprint:
[customizations.kernel]
append = "nosmt=force"
This will be appended to the kickstart's bootloader --append argument.
Includes tests for modifying the bootloader line, the kickstart
template, and examining the final-kickstart.ks created for a compose.
(cherry picked from commit 59464286f9
)
19 lines
296 B
TOML
19 lines
296 B
TOML
name = "example-append"
|
|
description = "An example using kernel append customization"
|
|
version = "0.0.1"
|
|
|
|
[[packages]]
|
|
name = "tmux"
|
|
version = "2.8"
|
|
|
|
[[packages]]
|
|
name = "openssh-server"
|
|
version = "7.*"
|
|
|
|
[[packages]]
|
|
name = "rsync"
|
|
version = "3.1.*"
|
|
|
|
[customizations.kernel]
|
|
append = "nosmt=force"
|