Skip to content

Commit

Permalink
Merge pull request #271 from Scumi/fix_logo_resolution
Browse files Browse the repository at this point in the history
openvario-logo: fix resolution for 7-inch texim displays (CH070)
  • Loading branch information
linuxianer99 authored Feb 15, 2022
2 parents 6e5ef9c + a737fa0 commit 290e143
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meta-ov/recipes-support/logo/openvario-logo.bb
Original file line number Diff line number Diff line change
Expand Up @@ -83,15 +83,15 @@ build_uboot_logos2() {
do_compile() {
build_uboot_logos2 1280 800
build_uboot_logos2 1024 600
build_uboot_logos2 800 600
build_uboot_logos2 800 480
build_uboot_logos2 640 480
build_uboot_logos2 480 272
}

do_compile[depends] += "ttf-dejavu:do_populate_sysroot"

do_install() {
for i in 1280x800 1024x600 800x600 640x480 480x272; do
for i in 1280x800 1024x600 800x480 640x480 480x272; do
install -d ${D}/${datadir}/openvario/u-boot/$i
install ${B}/$i/ov_*_?.bmp ${D}/${datadir}/openvario/u-boot/$i
done
Expand Down

0 comments on commit 290e143

Please sign in to comment.