Skip to content

Commit 7cc18c2

Browse files
committed
mkimage.sh: default for bigger boot parition size on pinebookpro
1 parent 2ea40dc commit 7cc18c2

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

mkimage.sh.in

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,13 @@ case "$PLATFORM" in
121121
*) die "The $PLATFORM is not supported, exiting..."
122122
esac
123123

124+
# Default for bigger boot partion on pinebookpro since it needs to fit
125+
# at least 2 Kernels + initramfs
126+
case "$PLATFORM" in
127+
pinebookpro*)
128+
: "${BOOT_FSSIZE:=256MiB}"
129+
;;
130+
esac
124131
# By default we build all platform images with a 64MiB boot partition
125132
# formated FAT16, and an approximately 1.9GiB root partition formated
126133
# ext4. More exotic combinations are of course possible, but this

0 commit comments

Comments
 (0)