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 /package/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 'package/Config.in')
-rw-r--r-- | package/Config.in | 53 |
1 files changed, 52 insertions, 1 deletions
diff --git a/package/Config.in b/package/Config.in index 14474afe7..924937f02 100644 --- a/package/Config.in +++ b/package/Config.in @@ -2,10 +2,60 @@ menu "Package Selection for the target" comment "The default minimal system" -source "package/busybox/Config.in" +menuconfig BR2_CONFIG_SKELETON + bool "Skeleton configuration" + default y + help + Configuration of target skeleton +if BR2_CONFIG_SKELETON +config BR2_HOSTNAME + string "hostname" + default "uclibc" + help + The hostname string is stored in "/etc/hostname" + +config BR2_BANNER + string "banner" + default "Welcome to the Erik's uClibc development environment." + help + The banner string is stored in "/etc/issue" +config BR2_PACKAGE_BUSYBOX_SKELETON + bool "use minimal target skeleton" + depends on BR2_PACKAGE_BUSYBOX + depends on !BR2_BUSYBOX_VERSION_1_0_1 + help + Use a minimal target skeleton. Make sure to select mdev + which is used to populate /dev/. +endif + +menuconfig BR2_MINIMAL + bool "Busybox configuration (required)" + default y + help + Busybox Support + +if BR2_MINIMAL +source "package/busybox/Config.in" +endif +config BR2_PACKAGE_BUSYBOX_HIDE_OTHERS + bool "Hide applications that are provided by busybox" + depends on BR2_PACKAGE_BUSYBOX + default y if BR2_PACKAGE_BUSYBOX_SNAPSHOT + help + Do not show packages in menuconfig that are potentially provided + by busybox. comment "The minimum needed to build a uClibc development system" + +menuconfig BR2_APPLICATIONS + bool "General purpose applications" + default y + help + Support for miscellaneous packages + +if BR2_APPLICATIONS + source "package/bash/Config.in" source "package/bzip2/Config.in" if !BR2_PACKAGE_BUSYBOX_HIDE_OTHERS @@ -114,6 +164,7 @@ endif if !BR2_PACKAGE_BUSYBOX_HIDE_OTHERS source "package/which/Config.in" endif +endif menuconfig BR2_NETWORK_SUPPORT bool "Networking" |