diff options
Diffstat (limited to 'payloads/external/linux')
-rw-r--r-- | payloads/external/linux/Kconfig | 21 | ||||
-rw-r--r-- | payloads/external/linux/Kconfig.name | 9 |
2 files changed, 30 insertions, 0 deletions
diff --git a/payloads/external/linux/Kconfig b/payloads/external/linux/Kconfig new file mode 100644 index 0000000000..8b15f99cdc --- /dev/null +++ b/payloads/external/linux/Kconfig @@ -0,0 +1,21 @@ +if PAYLOAD_LINUX + +config PAYLOAD_FILE + string "Linux path and filename" + default "bzImage" + help + The path and filename of the bzImage kernel to use as payload. + +config LINUX_COMMAND_LINE + string "Linux command line" + default "" + help + A command line to add to the Linux kernel. + +config LINUX_INITRD + string "Linux initrd" + default "" + help + An initrd image to add to the Linux kernel. + +endif diff --git a/payloads/external/linux/Kconfig.name b/payloads/external/linux/Kconfig.name new file mode 100644 index 0000000000..ae1d906f17 --- /dev/null +++ b/payloads/external/linux/Kconfig.name @@ -0,0 +1,9 @@ +config PAYLOAD_LINUX + bool "A Linux payload" + help + Select this option if you have a Linux bzImage which coreboot + should run as soon as the basic hardware initialization + is completed. + + You will be able to specify the location and file name of the + payload image later. |