| 12345678910111213141516171819202122232425262728293031323334353637 | # 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	boolconfig ADK_TARGET_KERNEL_ZIMAGE	boolconfig ADK_TARGET_KERNEL_LINUXBIN	boolconfig ADK_TARGET_KERNEL_IMAGE	boolconfig ADK_TARGET_KERNEL_UIMAGE	boolconfig ADK_TARGET_KERNEL_BZIMAGE	boolconfig ADK_TARGET_KERNEL_VMLINUX_AOUT	boolconfig 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"config ADK_TARGET_KERNEL_WITH_COMPRESSION	bool
 |