blob: 6c7180b0e4c68425ebc0724a0e5245d144c75b6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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"
|