diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-09-24 21:10:43 +0000 |
---|---|---|
committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-09-24 21:10:43 +0000 |
commit | 34a88f1fb025266e0a15b3749516e04d80994344 (patch) | |
tree | 52c05f4f94007bded9e3a18538deef45a3b527a7 /target/Config.in | |
parent | 23b8823a18b19cd30720d5808e4cc27025817bc2 (diff) | |
download | buildroot-novena-34a88f1fb025266e0a15b3749516e04d80994344.tar.gz buildroot-novena-34a88f1fb025266e0a15b3749516e04d80994344.zip |
Reorganize configs to even more logical positions
Diffstat (limited to 'target/Config.in')
-rw-r--r-- | target/Config.in | 48 |
1 files changed, 25 insertions, 23 deletions
diff --git a/target/Config.in b/target/Config.in index a9d5c3537..71fb3c934 100644 --- a/target/Config.in +++ b/target/Config.in @@ -1,25 +1,3 @@ -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" @@ -46,6 +24,30 @@ 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" + + |