| 1234567891011121314151617181920212223242526272829303132333435363738394041 | # 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_XIPIMAGE	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 "xipImage" if ADK_TARGET_KERNEL_XIPIMAGE	default "vmlinux"config ADK_TARGET_KERNEL_WITH_COMPRESSION	bool
 |