From: Sylwester Nawrocki Date: Wed, 2 Dec 2020 09:37:27 +0000 (+0100) Subject: tizen: Add splash image file to the bootloader tar image X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ef72fb0c7333f55fd9d1eb9f1004d940fad48b38;p=platform%2Fkernel%2Fu-boot.git tizen: Add splash image file to the bootloader tar image Change-Id: Ie3e1f76a663eddb65887ec42c651dedbd6b07f81 Signed-off-by: Sylwester Nawrocki --- diff --git a/tizen/build-amlogic.sh b/tizen/build-amlogic.sh index bee5731..d239683 100755 --- a/tizen/build-amlogic.sh +++ b/tizen/build-amlogic.sh @@ -120,8 +120,9 @@ build_amlogic() --level v3 cp params.bin output/${PARAMS} + cp images/tizen_logo.bmp.gz output cd ./output/ - tar cvf ${OUTPUT_TAR} ${OUTPUT_BIN} boot.scr.uimg ${PARAMS} + tar cvf ${OUTPUT_TAR} ${OUTPUT_BIN} boot.scr.uimg ${PARAMS} *.bmp.gz cd .. } @@ -147,7 +148,7 @@ build_format() # WARNING: the order of files in the TAR is important!!! # 0-format.cmd MUST be before any other MBR related entity # boot.img must be before any file from FAT partiton - tar cvfz ${OUTPUT2_TGZ} u-boot-+([a-z0-9]).bin 0-format.cmd boot.img boot.scr.uimg params*.bin + tar cvfz ${OUTPUT2_TGZ} u-boot-+([a-z0-9]).bin 0-format.cmd boot.img boot.scr.uimg params*.bin *.bmp.gz cd .. } @@ -183,7 +184,7 @@ if [ "$1" = "all" ] then set_names "all" cd output - tar cvf ${OUTPUT_TAR} u-boot-+([a-z0-9]).bin boot.scr.uimg params*.bin + tar cvf ${OUTPUT_TAR} u-boot-+([a-z0-9]).bin boot.scr.uimg params*.bin *.bmp.gz cd .. fi build_format