summaryrefslogtreecommitdiff
path: root/kconfig/linux.kconfig
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-09-16 21:40:16 +0200
committerAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-09-16 21:40:16 +0200
commita7579a7a1326c22f0a6332fd54875e5fffcec5d1 (patch)
treea68d6803ccdbdeb088fbe6faba6ae0094919f6e1 /kconfig/linux.kconfig
parent81b17ec2baa1cef60b0be8f3e533d6b5e1730d79 (diff)
downloadembtoolkit-a7579a7a1326c22f0a6332fd54875e5fffcec5d1.tar.gz
embtoolkit-a7579a7a1326c22f0a6332fd54875e5fffcec5d1.tar.bz2
embtoolkit-a7579a7a1326c22f0a6332fd54875e5fffcec5d1.tar.xz
Toolchain: Give users ability to choose the exact linux version
Signed-off-by: Abdoulaye Walsimou Gaye <walsimou@walsimou.com>
Diffstat (limited to 'kconfig/linux.kconfig')
-rw-r--r--kconfig/linux.kconfig45
1 files changed, 29 insertions, 16 deletions
diff --git a/kconfig/linux.kconfig b/kconfig/linux.kconfig
index 0f73070..b9c97ae 100644
--- a/kconfig/linux.kconfig
+++ b/kconfig/linux.kconfig
@@ -23,34 +23,54 @@
################################################################################
choice
- prompt "Linux kernel headers you wish to use"
+ prompt "Linux series to use"
default EMBTK_LINUX_VERSION_2_6_30_X
help
Here you can choose which Linux kernel headers you
you want to use.
+ config EMBTK_LINUX_VERSION_2_6_31_X
+ bool "linux-2.6.31.x"
+ help
+ Use a linux-2.6.31.x version.
config EMBTK_LINUX_VERSION_2_6_30_X
bool "linux-2.6.30.x"
help
- Will download linux-2.6.30.6 as it was the latest version of
- 2.6.30.x series at this version of Embtk.
+ Use a linux-2.6.30.x version.
config EMBTK_LINUX_VERSION_2_6_29_X
bool "linux-2.6.29.x"
help
- Will download linux-2.6.29.6 as it was the latest version of
- 2.6.29.x series at this version of Embtk.
+ Use a linux-2.6.29.x version.
config EMBTK_LINUX_VERSION_2_6_28_X
bool "linux-2.6.28.x"
help
- Will download linux-2.6.28.10 as it was the latest version of
- 2.6.28.x series at this version of Embtk.
+ Use a linux-2.6.28.x version.
config EMBTK_LINUX_VERSION_2_6_27_X
bool "linux-2.6.27.x"
help
- Will download linux-2.6.27.19 as it was the latest version of
- 2.6.27.x series at this version of Embtk.
+ Use a linux-2.6.27.x version.
endchoice
+if EMBTK_LINUX_VERSION_2_6_31_X
+source kconfig/linux-kconfigs/linux-2.6.31.kconfig
+endif
+
+if EMBTK_LINUX_VERSION_2_6_30_X
+source kconfig/linux-kconfigs/linux-2.6.30.kconfig
+endif
+
+if EMBTK_LINUX_VERSION_2_6_29_X
+source kconfig/linux-kconfigs/linux-2.6.29.kconfig
+endif
+
+if EMBTK_LINUX_VERSION_2_6_28_X
+source kconfig/linux-kconfigs/linux-2.6.28.kconfig
+endif
+
+if EMBTK_LINUX_VERSION_2_6_27_X
+source kconfig/linux-kconfigs/linux-2.6.27.kconfig
+endif
+
config EMBTK_LINUX_HAVE_MIRROR
bool "Use a linux mirror"
help
@@ -62,10 +82,3 @@ config EMBTK_LINUX_HAVE_MIRROR_SITE
help
specify an alternate location where to download linux sources
-config EMBTK_LINUX_VERSION_STRING
- string
- default "2.6.30.6" if EMBTK_LINUX_VERSION_2_6_30_X
- default "2.6.29.6" if EMBTK_LINUX_VERSION_2_6_29_X
- default "2.6.28.10" if EMBTK_LINUX_VERSION_2_6_28_X
- default "2.6.27.20" if EMBTK_LINUX_VERSION_2_6_27_X
-