diff options
Diffstat (limited to 'payloads/libpayload/Config.in')
-rw-r--r-- | payloads/libpayload/Config.in | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/payloads/libpayload/Config.in b/payloads/libpayload/Config.in index 55f09f7b2d..e0add21f4d 100644 --- a/payloads/libpayload/Config.in +++ b/payloads/libpayload/Config.in @@ -30,15 +30,27 @@ mainmenu "Libpayload Configuration" -# When (if) we support multiple architectures, this will become an option. +menu "Architecture Options" + +choice + prompt "Target Architecture" + default TARGET_I386 + config TARGET_I386 - bool - default y + bool "x86" + help + Support the x86 architecture -menu "Architecture Options" +config TARGET_POWERPC + bool "PowerPC" + help + Support the PowerPC architecture + +endchoice config MULTIBOOT bool "Multiboot header support" + depends on TARGET_I386 default y endmenu |