summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorUlf Samuelsson <ulf.samuelsson@atmel.com>2007-07-11 14:42:32 +0000
committerUlf Samuelsson <ulf.samuelsson@atmel.com>2007-07-11 14:42:32 +0000
commitc0c804da6ebb4297d4a10fbaf13246956b27768f (patch)
tree3ea096dbe7f693ee50f8f268da06d3bb372f2b2f /target
parentcf254e81d14e66e3dc93b628fbd31d92b9050ac7 (diff)
downloadbuildroot-novena-c0c804da6ebb4297d4a10fbaf13246956b27768f.tar.gz
buildroot-novena-c0c804da6ebb4297d4a10fbaf13246956b27768f.zip
Configure linux within target/linux/Config.in instead of within target/device/Config.in
Diffstat (limited to 'target')
-rw-r--r--target/linux/Config.in44
1 files changed, 44 insertions, 0 deletions
diff --git a/target/linux/Config.in b/target/linux/Config.in
new file mode 100644
index 000000000..7213b5b3d
--- /dev/null
+++ b/target/linux/Config.in
@@ -0,0 +1,44 @@
+menu "Linux Options"
+
+config BR2_PACKAGE_LINUX
+ bool "linux kernel"
+ default n
+ 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.
+
+config BR2_PACKAGE_LINUX_KCONFIG
+ string ".config file"
+ depends on BR2_PACKAGE_LINUX
+ default ""
+ help
+ kernel's .config to use to build a kernel for the target.
+
+ If the above setting is empty, you can change the default
+ board-imposed value by passing LINUX26_KCONFIG=<path> to
+ make.
+
+config BR2_PACKAGE_LINUX_FORMAT
+ string "kernel binary format"
+ depends on BR2_PACKAGE_LINUX
+ default ""
+ help
+ kernel binary format.
+ Popular values include:
+ - bzImage
+ - zImage
+ and other, architecture dependant formats.
+
+ Note that the default format is supposed to be set by your
+ board-description, if any.
+ i386 and compatible default to bzImage if nothing was given
+ above.
+ If the above setting is empty, you can change the default
+ board-imposed value by passing LINUX26_FORMAT=<string> to
+ make.
+
+endmenu