mvebu: use ptgen instead of fdisk to make the clearfog image script more portable

Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
Felix Fietkau 2016-09-01 15:29:48 +02:00
parent 7130833a27
commit 2d7d9baf19

View file

@ -31,62 +31,27 @@ fi
set -e set -e
# parameters # parameters
IMGSIZE=$1 IMGSIZE=$1; shift
OUTFILE="$2" OUTFILE="$1"; shift
BOOTLOADER="$3" BOOTLOADER="$1"; shift
# calculate number of partitions from argument list
NUMPARTS=$#
((NUMPARTS=(NUMPARTS-3)/3))
# find required applications
FDISK=$(env PATH="/usr/local/sbin:/usr/sbin:/sbin:$PATH" which fdisk)
# generate image file # generate image file
printf "Creating $OUTFILE from /dev/zero: " printf "Creating $OUTFILE from /dev/zero: "
dd if=/dev/zero of="$OUTFILE" bs=512 count=1 >/dev/null dd if=/dev/zero of="$OUTFILE" bs=512 count=1 >/dev/null
printf "Done\n" printf "Done\n"
# generate fdisk argument list while [ "$#" -ge 3 ]; do
printf "Generating fdisk argument list: " ptgen_args="$ptgen_args -p $(($2 / 2)) -S 0x$1"
ARGSFILE=$(mktemp) parts="$parts$3 "
shift; shift; shift
# empty partition table
printf "o\n" >> $ARGSFILE
# actual partitions
offset=2048
for i in $(seq 1 1 $NUMPARTS); do
((n=3+3*i-2)); type=$(eval echo \${$n})
((n=3+3*i-1)); size=$(eval echo \${$n})
((end=offset+size-1))
printf "n\np\n%i\n\n%i\n" $i $end >> $ARGSFILE
# special case on first aprtition: fdisk wont ask which one
if [ $i -eq 1 ]; then
printf "t\n%s\n" $type >> $ARGSFILE
else
printf "t\n%i\n%s\n" $i $type >> $ARGSFILE
fi
# add this partitions size to offset for next partition
((offset=end+1))
done done
# write and exit head=16
printf "w\n" >> $ARGSFILE sect=63
printf "Done\n"
# create real partition table using fdisk # create real partition table using fdisk
printf "Creating partition table: " printf "Creating partition table: "
cat $ARGSFILE | $FDISK "$OUTFILE" >/dev/null set `ptgen -o "$OUTFILE" -h $head -s $sect -l 1024 $ptgen_args`
printf "Done\n"
# remove temporary files
printf "Cleaning up: "
rm -f $ARGSFILE
printf "Done\n" printf "Done\n"
# install bootloader # install bootloader
@ -94,18 +59,15 @@ printf "Writing bootloader: "
dd of="$OUTFILE" if="$BOOTLOADER" bs=512 seek=1 conv=notrunc 2>/dev/null dd of="$OUTFILE" if="$BOOTLOADER" bs=512 seek=1 conv=notrunc 2>/dev/null
printf "Done\n" printf "Done\n"
# write partition data i=1
while [ "$#" -ge 2 ]; do
# offset of first partition is 2048 img="${parts%% *}"
offset=2048 parts="${parts#* }"
for i in $(seq 1 1 $NUMPARTS); do
((n=3+3*i-1)); size=$(eval echo \${$n})
((n=3+3*i)); img="$(eval echo \${$n})"
printf "Writing %s to partition %i: " "$img" $i printf "Writing %s to partition %i: " "$img" $i
dd if="$img" of="$OUTFILE" bs=512 seek=$offset conv=notrunc 2>/dev/null dd if="$img" of="$OUTFILE" bs=512 seek=$(($1 / 512)) conv=notrunc 2>/dev/null
printf "Done\n" printf "Done\n"
# add this partitions size to offset for next partition let i=i+1
((offset=offset+size)) shift; shift
done done