tizen: Add splash image file to the bootloader tar image
authorSylwester Nawrocki <s.nawrocki@samsung.com>
Wed, 2 Dec 2020 09:37:27 +0000 (10:37 +0100)
committerMarek Szyprowski <m.szyprowski@samsung.com>
Mon, 15 Nov 2021 10:37:12 +0000 (11:37 +0100)
Change-Id: Ie3e1f76a663eddb65887ec42c651dedbd6b07f81
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
tizen/build-amlogic.sh

index bee5731..d239683 100755 (executable)
@@ -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