summaryrefslogtreecommitdiffstats
path: root/target/Config.in
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2010-06-22 23:43:08 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2010-06-22 23:43:08 +0200
commitf3050b0b9ed14596d74a1bcb340ff7f5d86e1b1a (patch)
tree2b1e7628b5bad58c4b4065b9de30321bd02ff502 /target/Config.in
parentb10197dcf2ca1d6afbdf8f131560a3a0a8b9c72d (diff)
parent7b7b4260966a5d991b1dabc82c792fbecd77c63a (diff)
downloadbuildroot-novena-f3050b0b9ed14596d74a1bcb340ff7f5d86e1b1a.tar.gz
buildroot-novena-f3050b0b9ed14596d74a1bcb340ff7f5d86e1b1a.zip
Merge branch 'linux-cleanup' of git://git.busybox.net/~tpetazzoni/git/buildroot
Conflicts: target/Makefile.in
Diffstat (limited to 'target/Config.in')
-rw-r--r--target/Config.in50
1 files changed, 0 insertions, 50 deletions
diff --git a/target/Config.in b/target/Config.in
deleted file mode 100644
index 2d967931e..000000000
--- a/target/Config.in
+++ /dev/null
@@ -1,50 +0,0 @@
-menu "Kernel"
-choice
- prompt "Kernel type"
- default BR2_KERNEL_none
-
-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.
-
-# The kernel with the same version as linux headers cannot be compiled
-# when using an external toolchain, because the linux headers are not
-# handled by Buildroot in this case.
-if BR2_TOOLCHAIN_BUILDROOT
-
-config BR2_KERNEL_LINUX
- bool "linux (Same version as linux headers)"
- select BR2_PACKAGE_LINUX
- help
- 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.
-
-endif
-
-endchoice
-
-config BR2_PACKAGE_LINUX
- bool
-
-if BR2_PACKAGE_LINUX
-source "target/linux/Config.in"
-source "target/linux/Config.in.advanced"
-endif
-
-endmenu