blob: 10c176f31f23a3b287e01fa60a28dd3a821e233d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Find defconfig path
FILESEXTRAPATHS_append := ":${THISDIR}/${PN}"
# Kernel configs
SRC_URI_append_vexpressa9 = " file://vexpress_a9.cfg"
SRC_URI_append_qemux86 = " file://qemux86.cfg"
SRC_URI_append_qemux86-64 = " file://qemux86_64.cfg"
# vexpress-a9 support
KMACHINE_vexpressa9 = "qemuarma9"
COMPATIBLE_MACHINE_vexpressa9 = "vexpressa9"
KERNEL_DEVICETREE_vexpressa9 = "vexpress-v2p-ca9.dtb"
# no warning message during do_kernel_configcheck
KCONF_AUDIT_LEVEL = "0"
|