diff options
| author | unitexe <unitexe70@gmail.com> | 2026-02-25 10:49:22 -0600 |
|---|---|---|
| committer | unitexe <unitexe70@gmail.com> | 2026-03-02 22:51:24 -0600 |
| commit | 69509e438d1417d25d646ff1a3ba88e27e4ed282 (patch) | |
| tree | 142d8831c62b7784bce1a79d8d057183197fc16c /meta-unit-core/dynamic-layers/unit-graphics-layer/recipes-unit | |
| parent | 9489c2328c8254d7225cd55f8776fa29a4f8661b (diff) | |
Allow u-boot splash & splash features to be independently enabled
Some platforms (i.e. beaglebone black) don't have u-boot video support.
Diffstat (limited to 'meta-unit-core/dynamic-layers/unit-graphics-layer/recipes-unit')
| -rw-r--r-- | meta-unit-core/dynamic-layers/unit-graphics-layer/recipes-unit/images/core-image-unit.bbappend | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta-unit-core/dynamic-layers/unit-graphics-layer/recipes-unit/images/core-image-unit.bbappend b/meta-unit-core/dynamic-layers/unit-graphics-layer/recipes-unit/images/core-image-unit.bbappend index 5cedc57..9776077 100644 --- a/meta-unit-core/dynamic-layers/unit-graphics-layer/recipes-unit/images/core-image-unit.bbappend +++ b/meta-unit-core/dynamic-layers/unit-graphics-layer/recipes-unit/images/core-image-unit.bbappend @@ -4,6 +4,7 @@ inherit mask-tty1-getty IMAGE_FEATURES:append = " hwcodecs" IMAGE_INSTALL:append = " packagegroup-unit-kiosk" -IMAGE_INSTALL:append = " packagegroup-unit-splash" +IMAGE_INSTALL:append = " ${@bb.utils.contains('IMAGE_FEATURES', 'splash', 'packagegroup-unit-splash', '', d)}" +IMAGE_INSTALL:append = " ${@bb.utils.contains('IMAGE_FEATURES', 'boot-splash', 'packagegroup-unit-boot-splash', '', d)}" -IMAGE_BOOT_FILES:append = " yocto_project_logo_white_800x480_24bpp.bmp.gz" +IMAGE_BOOT_FILES:append = " ${@bb.utils.contains('IMAGE_FEATURES', 'boot-splash', 'yocto_project_logo_white_800x480_24bpp.bmp.gz', '', d)}" |
