diff options
author | Seung-Woo Kim <sw0312.kim@samsung.com> | 2018-04-04 10:28:27 +0900 |
---|---|---|
committer | Seung-Woo Kim <sw0312.kim@samsung.com> | 2019-01-23 13:14:59 +0900 |
commit | 981a5238205a48067961f568dce212f13f7e474a (patch) | |
tree | f3dece8dc6cb57f30fec2d23ecd16c4e2c7f0bf9 | |
parent | 147b5de9dfd8ebd95006822c83b4fe95db31c199 (diff) | |
download | linux-rpi3-981a5238205a48067961f568dce212f13f7e474a.tar.gz linux-rpi3-981a5238205a48067961f568dce212f13f7e474a.tar.bz2 linux-rpi3-981a5238205a48067961f568dce212f13f7e474a.zip |
scripts: mkbootimg_rpi3.sh: Fix to set volume name of boot.img
There is no fixed volume name of boot.img made by script. Like
release image, fix to set volume name.
Change-Id: If8372a3ea48d4d655d7132e6ee6bc965e2d3174d
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
-rwxr-xr-x | scripts/mkbootimg_rpi3.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mkbootimg_rpi3.sh b/scripts/mkbootimg_rpi3.sh index 3f365f483a06..722beacc593c 100755 --- a/scripts/mkbootimg_rpi3.sh +++ b/scripts/mkbootimg_rpi3.sh @@ -9,7 +9,7 @@ rm -rf tmp mkdir tmp # Create boot.img -mkfs.vfat -F 16 -C boot.img 65536 +mkfs.vfat -F 16 -C -n BOOT boot.img 65536 sudo mount -o loop,uid=$USER_ID,gid=$GROUP_ID,showexec boot.img ./tmp cp -a $BOOT_PATH/config_64bit.txt ./tmp/config.txt cp -a $BOOT_PATH/LICENCE.broadcom ./tmp |