blob: a82c27cc133282c92eb3bf7675ea7ff302e62035 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DISTRO_FEATURES_append = " agl-medium-arm-compiler"
# This disables the Freescale/NXP Vivante GPU driver and enables
# etnaviv support.
MACHINEOVERRIDES .= ":use-mainline-bsp"
# Include devicetrees for SOM 1.5 and Hummingboard 2 hardware
KERNEL_DEVICETREE_append = " \
imx6dl-hummingboard-som-v15.dtb imx6q-hummingboard-som-v15.dtb \
imx6dl-hummingboard2.dtb imx6q-hummingboard2.dtb \
imx6dl-hummingboard2-som-v15.dtb imx6q-hummingboard2-som-v15.dtb \
"
# Disable the meta-freescale weston-init bbappend as it conflicts
# with AGL's.
BBMASK = "meta-freescale/recipes-graphics/wayland/weston-init"
# Set CMA size large enough to work with AGL
UBOOT_EXTLINUX_KERNEL_ARGS_append = " cma=512M"
# Generate WIC image also
AGL_EXTRA_IMAGE_FSTYPES = "wic.xz wic.bmap wic.xz.sha256sum"
|