summaryrefslogtreecommitdiff
path: root/target/config/Config.in.kernelfmt
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbrodkorb@conet.de>2015-09-02 10:42:04 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2015-09-02 15:54:30 +0200
commit05374459533dd3d3a8e2bdfa5c68a791a893e290 (patch)
tree156d0ed9505c3dadd84292d3beb1ad4e2a2fca3e /target/config/Config.in.kernelfmt
parent6785da0b860ccfcfa5d6349b9997e34c477f37a9 (diff)
allow to use linux defconfigs, needs more work
Diffstat (limited to 'target/config/Config.in.kernelfmt')
-rw-r--r--target/config/Config.in.kernelfmt35
1 files changed, 35 insertions, 0 deletions
diff --git a/target/config/Config.in.kernelfmt b/target/config/Config.in.kernelfmt
new file mode 100644
index 000000000..6c7180b0e
--- /dev/null
+++ b/target/config/Config.in.kernelfmt
@@ -0,0 +1,35 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+config ADK_TARGET_KERNEL_VMLINUZ
+ bool
+
+config ADK_TARGET_KERNEL_ZIMAGE
+ bool
+
+config ADK_TARGET_KERNEL_LINUXBIN
+ bool
+
+config ADK_TARGET_KERNEL_IMAGE
+ bool
+
+config ADK_TARGET_KERNEL_UIMAGE
+ bool
+
+config ADK_TARGET_KERNEL_BZIMAGE
+ bool
+
+config ADK_TARGET_KERNEL_VMLINUX_AOUT
+ bool
+
+config ADK_TARGET_KERNEL
+ string
+ default "uImage" if ADK_TARGET_KERNEL_UIMAGE
+ default "zImage" if ADK_TARGET_KERNEL_ZIMAGE
+ default "Image" if ADK_TARGET_KERNEL_IMAGE
+ default "linux.bin" if ADK_TARGET_KERNEL_LINUXBIN
+ default "vmlinuz" if ADK_TARGET_KERNEL_VMLINUZ
+ default "bzImage" if ADK_TARGET_KERNEL_BZIMAGE
+ default "vmlinux.aout" if ADK_TARGET_KERNEL_VMLINUX_AOUT
+ default "vmlinux"
+