projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2daf1a
)
scripts: mkbootimg_rpi4.sh: Fix module image size to 32MB
author
Hoegeun Kwon
<hoegeun.kwon@samsung.com>
Thu, 20 Aug 2020 05:24:51 +0000
(14:24 +0900)
committer
Hoegeun Kwon
<hoegeun.kwon@samsung.com>
Wed, 23 Nov 2022 02:23:53 +0000
(11:23 +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
patch
|
blob
|
history
diff --git
a/scripts/mkbootimg_rpi4.sh
b/scripts/mkbootimg_rpi4.sh
index
f78575d
..
1127b94
100755
(executable)
--- a/
scripts/mkbootimg_rpi4.sh
+++ b/
scripts/mkbootimg_rpi4.sh
@@
-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