summaryrefslogtreecommitdiff
path: root/meta-unit-graphics/recipes-bsp/u-boot-splash/u-boot-splash.bb
blob: 7e5b31824e0cffba9040777875c42e6320f97f8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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"