blob: afc28448098bf93db19405c861ec411bc18c25a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
IMAGE_FEATURES =+ "debug-tweaks tools-debug tools-profile"
IMAGE_INSTALL:append = " \
packagegroup-agl-core-devel \
"
# Install libdrm-test, including modetest, to images with GUI
IMAGE_INSTALL:append = "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', ' libdrm-tests', '', d)}"
# disable install of debug files in SDK
# initial value: SDKIMAGE_FEATURES="dev-pkgs dbg-pkgs staticdev-pkgs"
SDKIMAGE_FEATURES="dev-pkgs"
# allows insertion of code or items specific to developement
OVERRIDES .= ":agl-devel"
DISTRO_FEATURES:append = " agl-devel"
|