diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-09-25 07:55:45 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-09-25 07:55:45 +0000 |
commit | 5010039460817ceb3893a0f0c8ea15e8d8484023 (patch) | |
tree | c22b410c402b6a56ddfb2a3f0527c61b2a3658f4 /target/Config.in | |
parent | b363ba0c603ff8f815fc55a9365e4c4698447f60 (diff) | |
download | buildroot-novena-5010039460817ceb3893a0f0c8ea15e8d8484023.tar.gz buildroot-novena-5010039460817ceb3893a0f0c8ea15e8d8484023.zip |
- revert patch that obfuscates the config UI and doesn't reflect the order of config steps
Diffstat (limited to 'target/Config.in')
-rw-r--r-- | target/Config.in | 48 |
1 files changed, 23 insertions, 25 deletions
diff --git a/target/Config.in b/target/Config.in index 71fb3c934..a9d5c3537 100644 --- a/target/Config.in +++ b/target/Config.in @@ -1,3 +1,25 @@ +menu "Target Options" + +comment "filesystem for target device" + +source "target/cramfs/Config.in" +source "target/cloop/Config.in" +source "target/ext2/Config.in" +source "target/jffs2/Config.in" +source "target/squashfs/Config.in" +source "target/tar/Config.in" +source "target/cpio/Config.in" +source "target/iso9660/Config.in" +source "target/initramfs/Config.in" + +comment "bootloader for target device" + +source "target/x86/grub/Config.in" +#source "target/x86/grub2/Config.in" +source "target/x86/syslinux/Config.in" +source "target/powerpc/yaboot/Config.in" +endmenu + menu "Kernel" choice prompt "Kernel type" @@ -24,30 +46,6 @@ endif if BR2_KERNEL_HURD source "target/hurd/Config.in" endif -source "toolchain/kernel-headers/Config.in" -endmenu - -menu "Target Options" - -comment "filesystem for target device" - -source "target/cramfs/Config.in" -source "target/cloop/Config.in" -source "target/ext2/Config.in" -source "target/jffs2/Config.in" -source "target/squashfs/Config.in" -source "target/tar/Config.in" -source "target/cpio/Config.in" -source "target/iso9660/Config.in" -source "target/initramfs/Config.in" - -comment "bootloader for target device" - -source "target/x86/grub/Config.in" -#source "target/x86/grub2/Config.in" -source "target/x86/syslinux/Config.in" -source "target/powerpc/yaboot/Config.in" endmenu - - +source "target/device/Config.in" |