From: Ben Gras Date: Fri, 22 Apr 2005 13:30:16 +0000 (+0000) Subject: Made sure root filesystem is 1kB-block-size, which is necessary to make it X-Git-Tag: v3.1.0~911 X-Git-Url: http://zhaoyanbai.com/repos/Bv9ARM.ch08.html?a=commitdiff_plain;h=7ce48162c19b2bde85c0d5d07e0ed97f604080d9;p=minix.git Made sure root filesystem is 1kB-block-size, which is necessary to make it bootable with the current boot loader (and to make it a ramdisk, with the current ramdisk copying implementation in the FS) --- diff --git a/commands/scripts/setup.sh b/commands/scripts/setup.sh index 0ce5b6647..3687c3db1 100755 --- a/commands/scripts/setup.sh +++ b/commands/scripts/setup.sh @@ -311,7 +311,7 @@ echo " Copying $fdroot to /dev/$root " -mkfs /dev/$root || exit +mkfs -B 1024 /dev/$root || exit mount /dev/$root /mnt || exit if [ $thisroot = /dev/ram ] then