scripts: mkbootimg_rpi4.sh: Fix module image size to 32MB
authorHoegeun Kwon <hoegeun.kwon@samsung.com>
Thu, 20 Aug 2020 05:24:51 +0000 (14:24 +0900)
committerHoegeun Kwon <hoegeun.kwon@samsung.com>
Thu, 3 Aug 2023 08:46:07 +0000 (17:46 +0900)
The partition module size has been modified to 32MB.

Change-Id: I467fd7618d345a25d87af62985a1c2f8f47ad0eb
Signed-off-by: Hoegeun Kwon <hoegeun.kwon@samsung.com>
scripts/mkbootimg_rpi4.sh

index f78575d..1127b94 100755 (executable)
@@ -58,7 +58,7 @@ mkdir -p tmp/lib/modules
 mkdir -p tmp_modules
 
 # Create modules.img
-dd if=/dev/zero of=modules.img bs=1024 count=20480
+dd if=/dev/zero of=modules.img bs=1024 count=32768
 mkfs.ext4 -q -F -t ext4 -b 1024 -L modules modules.img
 sudo mount -o loop modules.img ./tmp/lib/modules
 if [ -n "$IS_64BIT" ]; then