From 727cb91e2be3907a2b5f1e93b0b2be86e0a29de6 Mon Sep 17 00:00:00 2001 From: Junghoon Kim Date: Mon, 9 Dec 2019 16:22:54 +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: I33413d641a18122612d23f3f110b7eed0997c2ea 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