blob: f6801352c3e3f6ab0358d0987fcc840cde07df2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maximum memory allowed to be assigned
GPU_MEM = "255"
ENABLE_CMA = "1"
CMA_LWM = "16"
CMA_HWM = "32"
KERNEL_IMAGETYPE = "Image"
KERNEL_DEVICETREE_append = " overlays/vc4-kms-v3d-overlay.dtb"
MACHINE_FEATURES += "vc4graphics"
# For libomxil
#LICENSE_FLAGS_WHITELIST = "commercial"
IMAGE_INSTALL_append = " kernel-modules linux-firmware "
# Psplash causes crash on first boot on RPi
IMAGE_FEATURES_remove = "splash"
# Add the custom rpi-sdimg output format
AGL_EXTRA_IMAGE_FSTYPES = " rpi-sdimg.xz"
# Use the AGL default ext4.xz to generate the rpi-sdimg
SDIMG_ROOTFS_TYPE = "ext4.xz"
lass="nv">install -m 0755 ${WORKDIR}/switch_on_${PN}.sh ${D}/usr/AGL/${PN}
install -d ${D}${sysconfdir}/xdg/weston
install -m 0644 ${WORKDIR}/weston-${PN}.ini ${D}${sysconfdir}/xdg/weston/weston-${PN}.ini
install -d ${D}${systemd_system_unitdir}
install -m 0644 ${WORKDIR}/weston-mapviewer-demo.service ${D}${systemd_system_unitdir}
}
## DO NOT ENABLE 'weston-mapviewer-demo.service' BY DEFAULT
##
## The 'weston-mapviewer-demo.service' is exclusive of default 'weston.ini',
## it should be enabled/disabled by 'switch_on_mapviewer-demo.sh'/'switch_off_mapviewer-demo.sh'.
##
#SYSTEMD_SERVICE_${PN} = "weston-mapviewer-demo.service"
FILES_${PN} += " \
${systemd_system_unitdir} \
/usr/AGL/${PN}/ \
${sysconfdir}/xdg/weston/${PN} \
"
|