This change adds PPC support to libpayload, and hooks it up in the build
[coreboot.git] / payloads / libpayload / Config.in
index 55f09f7b2d6c9e830b917ad2b98c093f0bb564ec..e0add21f4d76dbffc0346686c42aa46b57abf45e 100644 (file)
 
 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