use blockdev --rereadpt instead of sleep

FTR, this may not be needed. i have realized after this change that
the pendrive i was using was too small and fdisk errored out in a
way that was not visible in the log, only its symptoms.

but this is a nicer way than arbitrary sleeps for not much extra space.
This commit is contained in:
Attila Lendvai 2023-08-17 23:12:45 +02:00
parent a21e995567
commit 309e6dd80c
No known key found for this signature in database
GPG Key ID: FEFA9FE55CF6E3CD
2 changed files with 15 additions and 3 deletions

View File

@ -38,7 +38,8 @@ fi
# the absolute minimum for extroot to work at all (i.e. when the disk is already set up, for example by hand). # the absolute minimum for extroot to work at all (i.e. when the disk is already set up, for example by hand).
# this list may be smaller and/or different for your router, but it works with my ath79. # this list may be smaller and/or different for your router, but it works with my ath79.
PREINSTALLED_PACKAGES="block-mount kmod-fs-ext4 kmod-usb-storage" # blockdev is needed to re-read the partition table using `blockdev --rereadpt /dev/sdX`
PREINSTALLED_PACKAGES="block-mount kmod-fs-ext4 kmod-usb-storage blockdev"
# some kernel modules may also be needed for your hardware # some kernel modules may also be needed for your hardware
#PREINSTALLED_PACKAGES+=" kmod-usb-uhci kmod-usb-ohci" #PREINSTALLED_PACKAGES+=" kmod-usb-uhci kmod-usb-ohci"

View File

@ -31,14 +31,24 @@ hasBigEnoughPendrive()
fi fi
} }
rereadPartitionTable()
{
log "Rereading partition table"
blockdev --rereadpt /dev/sda
}
setupPendrivePartitions() setupPendrivePartitions()
{ {
log "Erasing partition table"
# erase partition table # erase partition table
dd if=/dev/zero of=/dev/sda bs=1M count=1 dd if=/dev/zero of=/dev/sda bs=1M count=1
rereadPartitionTable
log "Creating partitions"
# sda1 is 'swap' # sda1 is 'swap'
# sda2 is 'root' # sda2 is 'root'
# sda3 is 'data' # sda3 is 'data', if there's any space left
fdisk /dev/sda <<EOF fdisk /dev/sda <<EOF
o o
n n
@ -64,7 +74,7 @@ q
EOF EOF
log "Finished partitioning /dev/sda using fdisk" log "Finished partitioning /dev/sda using fdisk"
sleep 2 rereadPartitionTable
until [ -e /dev/sda1 ] until [ -e /dev/sda1 ]
do do
@ -76,6 +86,7 @@ EOF
mkfs.ext4 -F -L root -U $rootUUID /dev/sda2 mkfs.ext4 -F -L root -U $rootUUID /dev/sda2
mkfs.ext4 -F -L data -U $dataUUID /dev/sda3 mkfs.ext4 -F -L data -U $dataUUID /dev/sda3
rereadPartitionTable
log "Finished setting up filesystems" log "Finished setting up filesystems"
} }