From 05374459533dd3d3a8e2bdfa5c68a791a893e290 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 2 Sep 2015 10:42:04 +0200 Subject: allow to use linux defconfigs, needs more work --- target/config/Config.in.kernelfmt | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 target/config/Config.in.kernelfmt (limited to 'target/config/Config.in.kernelfmt') 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" + -- cgit v1.2.3