From 6ae858fb945ac88813638ae0396738b2be821a59 Mon Sep 17 00:00:00 2001 From: Junghoon Kim Date: Wed, 18 Dec 2019 09:49:11 +0900 Subject: [PATCH] scripts: mkbootimg_rpi4.sh: Create boot tarball for the lthor flashing This patch is to create boot tarball for the lthor flashing. With this, we can easily test the rpi4 kernel in the local environment. Change-Id: Iaf16cf1ae22f8b882fac7156c6ca499593f9539d Signed-off-by: Junghoon Kim --- scripts/mkbootimg_rpi4.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/scripts/mkbootimg_rpi4.sh b/scripts/mkbootimg_rpi4.sh index 194007f..896b0e7 100755 --- a/scripts/mkbootimg_rpi4.sh +++ b/scripts/mkbootimg_rpi4.sh @@ -57,3 +57,15 @@ sync sudo umount tmp/lib/modules rm -rf tmp tmp_modules + +# Create boot tarball for the lthor flashing +DATE=`date +%Y%m%d` +BOOT_TARBALL=tizen-local-${DATE}-boot-armv7l-rpi4.tar + +tar cf ${BOOT_TARBALL} boot.img modules.img +if [ "$?" != "0" ]; then + echo "Failed to create boot tarball" + exit 1 +fi + +echo ${BOOT_TARBALL} -- 2.7.4