summaryrefslogtreecommitdiff
path: root/target/Config.in
diff options
context:
space:
mode:
authorUlf Samuelsson <ulf.samuelsson@atmel.com>2007-10-13 18:30:28 +0000
committerUlf Samuelsson <ulf.samuelsson@atmel.com>2007-10-13 18:30:28 +0000
commit453dca995ee437b2f6fc3e0a6e4e2b4317346dae (patch)
treecb581b1c418560e1a8c0a062f09f6b2df8e82911 /target/Config.in
parentf53d9ece642824fb7a7c73c5d99e8c514bee15e6 (diff)
Create Advanced Linux Configuration option/Remove experimental
Diffstat (limited to 'target/Config.in')
-rw-r--r--target/Config.in34
1 files changed, 30 insertions, 4 deletions
diff --git a/target/Config.in b/target/Config.in
index 2ca190c9c..a9a40e4d3 100644
--- a/target/Config.in
+++ b/target/Config.in
@@ -23,26 +23,52 @@ endmenu
menu "Kernel"
choice
prompt "Kernel type"
- default BR2_KERNEL_LINUX
+ default BR2_KERNEL_LINUX_ADVANCED if BR2_TARGET_ATMEL
+ default BR2_KERNEL_LINUX if !BR2_TARGET_ATMEL
config BR2_KERNEL_none
bool "none"
help
Do not build a kernel
+config BR2_KERNEL_LINUX_ADVANCED
+ bool "linux (Advanced configuration)"
+ select BR2_PACKAGE_LINUX
+ help
+ The Linux kernel - Advanced Configuration.
+ http://www.kernel.org/
+
+ Note: Requires kernel-headers >= 2.6.19 since the other
+ kernel headers are just that (headers) and not full
+ kernels. This is a feature.
+
config BR2_KERNEL_LINUX
- bool "linux"
+ bool "linux (Same version as linux headers)"
+ select BR2_PACKAGE_LINUX
help
- Linux kernel
+ The Linux kernel.
+ http://www.kernel.org/
+
+ Note: Requires kernel-headers >= 2.6.19 since the other
+ kernel headers are just that (headers) and not full
+ kernels. This is a feature.
config BR2_KERNEL_HURD
bool "hurd"
help
GNU/Hurd kernel
endchoice
-if BR2_KERNEL_LINUX
+
+config BR2_PACKAGE_LINUX
+ bool
+ default n
+
+if BR2_PACKAGE_LINUX
source "target/linux/Config.in"
+#source "target/linux/Config.in.experimental"
+source "target/linux/Config.in.advanced"
endif
+
if BR2_KERNEL_HURD
source "target/hurd/Config.in"
endif