about summary refs log tree commit diff
path: root/mkimage.sh.in
diff options
context:
space:
mode:
authorJuan RP <xtraeme@gmail.com>2014-01-21 23:27:52 +0100
committerJuan RP <xtraeme@gmail.com>2014-01-21 23:27:52 +0100
commit1ee561f98db2f08fb5e7479443eec05ac121fb5a (patch)
tree5f792e59a8cfb17b99fe085341692e77c666bd14 /mkimage.sh.in
parent0756604fb0a26c7e17b22f4311e980d7fd16ae0e (diff)
downloadhrmpf-1ee561f98db2f08fb5e7479443eec05ac121fb5a.tar.gz
hrmpf-1ee561f98db2f08fb5e7479443eec05ac121fb5a.tar.xz
hrmpf-1ee561f98db2f08fb5e7479443eec05ac121fb5a.zip
mkimage: create /boot partition at 4096 sectors.
Diffstat (limited to 'mkimage.sh.in')
-rw-r--r--mkimage.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/mkimage.sh.in b/mkimage.sh.in
index 1acaa83..31bc64a 100644
--- a/mkimage.sh.in
+++ b/mkimage.sh.in
@@ -116,7 +116,7 @@ parted $FILENAME mktable msdos
 if [ "$BOOT_FSTYPE" = "vfat" ]; then
     _btype="fat32"
 fi
-parted $FILENAME mkpart primary ${_btype} 2048s 256M
+parted $FILENAME mkpart primary ${_btype} 4096s 256M
 parted $FILENAME mkpart primary ext2 256M 100%
 parted $FILENAME toggle 1 boot
 LOOPDEV=$(losetup --show --find -P $FILENAME)