blob: 58fff1b06bda3ec3b168a4b218b9efcc6a1d2bcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# We should not need any includes as the board should include the right set already. This is just for reference.
# high profile boards need to
# include conf/machine/include/arm/arch-armv7ve.inc
# medium profile boards need to
# include conf/machine/include/arch/arm-armv7-a.inc
DEFAULTTUNE = "${@bb.utils.contains('DISTRO_FEATURES', 'agl-medium-arm-compiler', 'armv7athf-neon', 'armv7vethf-neon-vfpv4', d)}"
QB_SYSTEM_NAME ?= "qemu-system-arm"
QB_DEFAULT_KERNEL ?= "zImage"
QB_DEFAULT_FSTYPE ?= "ext4"
QB_MACHINE ?= "${@bb.utils.contains('DISTRO_FEATURES', 'agl-medium-arm-compiler', '-machine vexpress-a9', '-machine vexpress-a15', d)}"
QB_CPU ?= "${@bb.utils.contains('DISTRO_FEATURES', 'agl-medium-arm-compiler', '-cpu cortex-a9', '-cpu cortex-a15', d)}"
|