We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ea40dc commit 7cc18c2Copy full SHA for 7cc18c2
1 file changed
mkimage.sh.in
@@ -121,6 +121,13 @@ case "$PLATFORM" in
121
*) die "The $PLATFORM is not supported, exiting..."
122
esac
123
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
131
# By default we build all platform images with a 64MiB boot partition
132
# formated FAT16, and an approximately 1.9GiB root partition formated
133
# ext4. More exotic combinations are of course possible, but this
0 commit comments