mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-07-15 15:37:15 +00:00
09ed7fc673
All meta-arm-bsp machines specific settings should live at meta-arm-autonomy/dynamic-layers/meta-arm-bsp/ and only be included if meta-arm-bsp layer is present. Change-Id: Ice8a301db85b5186384d602d9e3bedb909183320 Issue-Id: SCM-984 Signed-off-by: Diego Sueiro <diego.sueiro@arm.com> Reviewed-by: Bertrand Marquis <bertrand.marquis@arm.com> Signed-off-by: Jon Mason <jon.mason@arm.com>
23 lines
816 B
PHP
23 lines
816 B
PHP
# Add arm-autonomy specific features to the kernel
|
|
|
|
FILESEXTRAPATHS_prepend := "${THISDIR}:"
|
|
|
|
#
|
|
# arm-autonomy kmeta
|
|
#
|
|
SRC_URI_append = " file://arm-autonomy-kmeta;type=kmeta;name=arm-autonomy-kmeta;destsuffix=arm-autonomy-kmeta"
|
|
|
|
|
|
# Add xen host drivers to kernel if arm-autonomy-host is activated
|
|
KERNEL_FEATURES += "${@bb.utils.contains('DISTRO_FEATURES', \
|
|
'arm-autonomy-host', 'features/arm-autonomy/xen-host.scc', '', d)}"
|
|
|
|
# Add xen guest drivers to kernel if arm-autonomy-guest is activated
|
|
KERNEL_FEATURES += "${@bb.utils.contains('DISTRO_FEATURES', \
|
|
'arm-autonomy-guest', 'features/arm-autonomy/xen-guest.scc', '', d)}"
|
|
|
|
# Add support for arm64-autonomy-guest machine
|
|
COMPATIBLE_MACHINE_arm64-autonomy-guest = "arm64-autonomy-guest"
|
|
KMACHINE_arm64-autonomy-guest = "arm64-autonomy-guest"
|
|
|