Increase block size of kernel squashfs image to 128K (#3509)

While mksquashfs uses this value by default, Genimage's default is 4K. This is
far too low value and results in slower kernel load, especially on embedded
boards with a flash drive. Explicitly set it to 128K to generate same images as
in pre-genimage builds.

(cherry picked from commit edba18f6c41539f18e53f285b2c6cbecd509eab9)
This commit is contained in:
Jan Čermák 2024-08-07 20:14:13 +02:00 committed by Jan Čermák
parent ba86720163
commit 42baa80900
No known key found for this signature in database
GPG Key ID: A78C897AA3AF012B

View File

@ -4,6 +4,7 @@ image kernel.img {
squashfs {
compression = "lzo"
block-size = 131072
}
}