blob: 30e656b17a65e7fee2d7a969e6a7aa42a861e0a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
FILESEXTRAPATHS_prepend := "${THISDIR}/linux-yocto:"
require recipes-kernel/linux/linux-agl.inc
# Extra configuration options for the QEMU kernel
SRC_URI += "file://hciattach.cfg \
file://virtio.cfg \
"
# Enable some things on qemuarm64 so MOST drivers will build and load.
SRC_URI_append_qemuarm64 = " file://most_deps.cfg"
# Configuration for using the virt machine (and not versatilepb)
SRC_URI_append_qemuarm = " file://qemuarm.cfg"
# Build a generic v7 kernel instead of the arm926j one that upstream
# qemuarm defaults to.
KBUILD_DEFCONFIG_qemuarm = "multi_v7_defconfig"
KCONFIG_MODE = "--alldefconfig"
|