summaryrefslogtreecommitdiff
path: root/meta-unit-graphics/recipes-bsp/u-boot-splash/u-boot-splash.bb
diff options
context:
space:
mode:
authorunitexe <unitexe70@gmail.com>2026-02-08 11:41:19 -0600
committerunitexe <unitexe70@gmail.com>2026-02-08 11:41:39 -0600
commit019a45d52dc06c812c3ba74941ee692df6a72e21 (patch)
tree2f2eb9784cf5d7f94725216392037206d245c407 /meta-unit-graphics/recipes-bsp/u-boot-splash/u-boot-splash.bb
parente9ef477e623a397c3cae8e1e2d676046069cbb01 (diff)
U-boot splash for raspberrypi3-64
Diffstat (limited to 'meta-unit-graphics/recipes-bsp/u-boot-splash/u-boot-splash.bb')
-rw-r--r--meta-unit-graphics/recipes-bsp/u-boot-splash/u-boot-splash.bb21
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-unit-graphics/recipes-bsp/u-boot-splash/u-boot-splash.bb b/meta-unit-graphics/recipes-bsp/u-boot-splash/u-boot-splash.bb
new file mode 100644
index 0000000..7e5b318
--- /dev/null
+++ b/meta-unit-graphics/recipes-bsp/u-boot-splash/u-boot-splash.bb
@@ -0,0 +1,21 @@
+SUMMARY = "Deploy u-boot splash image"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://${UNIT_GRAPHICS_LAYERDIR}/LICENSE;md5=a77c12e0c0e8a14cebb1494195720ccc"
+
+inherit deploy
+
+SRC_URI = "\
+ file://yocto_project_logo_white_800x480_24bpp.bmp.gz;unpack=0 \
+"
+
+S = "${UNPACKDIR}"
+
+do_deploy() {
+ install -d ${DEPLOY_DIR_IMAGE}
+ install -m 0644 ${S}/yocto_project_logo_white_800x480_24bpp.bmp.gz ${DEPLOY_DIR_IMAGE}/yocto_project_logo_white_800x480_24bpp.bmp.gz
+}
+
+addtask deploy before do_build after do_compile
+
+# The recipe just deploys a file it doesn't install anything to rootfs
+ALLOW_EMPTY:${PN} = "1"