Skip to content

Commit

Permalink
chore: added more debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Oct 29, 2023
1 parent d105a68 commit 83bfc77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/build/make.rasp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ dd if=/dev/zero of=$FILE bs=$BLOCK_SIZE count=$BLOCK_COUNT && sync

echo "make.rasp: setting up partition table for $FILE (using fdisk) with $HEADS heads and $SECTORS sectors"

(echo n; echo p; echo 1; echo ; echo ; echo a; echo 1; echo t; echo c; echo w) | fdisk -H $HEADS -S $SECTORS $FILE &> /dev/null
(echo n; echo p; echo 1; echo ; echo ; echo a; echo 1; echo t; echo c; echo w) | fdisk -H $HEADS -S $SECTORS $FILE
sleep $SLEEP_TIME && sync

echo "mask.rasp: setting up loop devices for $FILE"
Expand Down
2 changes: 1 addition & 1 deletion scripts/build/make.usb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ dd if=/dev/zero of=$FILE bs=$BLOCK_SIZE count=$BLOCK_COUNT && sync

echo "make.rasp: setting up partition table for $FILE (using fdisk) with $HEADS heads and $SECTORS sectors"

(echo n; echo p; echo 1; echo ; echo ; echo a; echo 1; echo t; echo c; echo w) | fdisk -H $HEADS -S $SECTORS $FILE &> /dev/null
(echo n; echo p; echo 1; echo ; echo ; echo a; echo 1; echo t; echo c; echo w) | fdisk -H $HEADS -S $SECTORS $FILE
sleep $SLEEP_TIME && sync

if [ -e $PREFIX/lib/syslinux/mbr ]; then
Expand Down

0 comments on commit 83bfc77

Please sign in to comment.