More nits and polish
This commit is contained in:
parent
ddb8e7300d
commit
560466ed8e
3 changed files with 15 additions and 10 deletions
|
@ -238,11 +238,11 @@ echo "
|
||||||
--- Step 4 --- Block size -------------------------------------------
|
--- Step 4 --- Block size -------------------------------------------
|
||||||
"
|
"
|
||||||
echo "\
|
echo "\
|
||||||
The default block size on the disk is $blockdefault KB. However, sizes of 1 to $blockdefault KB
|
The default block size on the disk is $blockdefault KB.
|
||||||
are also supported. If you have a small disk or small RAM you may want less
|
If you have a small disk or small RAM you may want less
|
||||||
than $blockdefault KB, in which case type a block size from 1 to 8 (1, 2, 4 or $blockdefault are
|
than $blockdefault KB. Please type 1, 2, or 4 for a smaller
|
||||||
suggested values). Otherwise hit ENTER for the default of $blockdefault KB blocks, which
|
block size (in KB), or hit ENTER for the default of
|
||||||
should be fine in most cases."
|
$blockdefault KB blocks, which should be fine in most cases."
|
||||||
|
|
||||||
while [ -z "$blocksize" ]
|
while [ -z "$blocksize" ]
|
||||||
do echo -n "Block size [$blockdefault KB]? "
|
do echo -n "Block size [$blockdefault KB]? "
|
||||||
|
@ -250,8 +250,8 @@ do echo -n "Block size [$blockdefault KB]? "
|
||||||
if [ -z "$blocksize" ]
|
if [ -z "$blocksize" ]
|
||||||
then blocksize=$blockdefault
|
then blocksize=$blockdefault
|
||||||
fi
|
fi
|
||||||
if [ $blocksize -gt $blockdefault -o $blocksize -lt 1 ]
|
if [ "$blocksize" -ne 1 -a "$blocksize" -ne 2 -a "$blocksize" -ne 4 -a "$blocksize" -ne $blockdefault ]
|
||||||
then echo "$blocksize bogus block size. 1-$blockdefault please."
|
then echo "$blocksize bogus block size. 1, 2, 4 or $blockdefault please."
|
||||||
blocksize=""
|
blocksize=""
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
@ -376,7 +376,7 @@ if [ -n "$driver" ]
|
||||||
then echo "eth0 $driver 0 { default; };" >/mnt/etc/inet.conf
|
then echo "eth0 $driver 0 { default; };" >/mnt/etc/inet.conf
|
||||||
echo "$driverargs" >$LOCALRC
|
echo "$driverargs" >$LOCALRC
|
||||||
disable=""
|
disable=""
|
||||||
else disable=inet
|
else disable="disable=inet;"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
umount /dev/$root || exit # Unmount the new root.
|
umount /dev/$root || exit # Unmount the new root.
|
||||||
|
@ -398,7 +398,7 @@ if [ $cache -eq 0 ]; then cache=; else cache="ramsize=$cache"; fi
|
||||||
|
|
||||||
# Make bootable.
|
# Make bootable.
|
||||||
installboot -d /dev/$root /usr/mdec/bootblock /boot/boot >/dev/null || exit
|
installboot -d /dev/$root /usr/mdec/bootblock /boot/boot >/dev/null || exit
|
||||||
edparams /dev/$root "rootdev=$root; ramimagedev=$root; disable=$disable; $cache; main() { echo This is the MINIX 3 boot monitor.; echo MINIX will load in 5 seconds, or press ESC.; trap 5000 boot; menu; }; save" || exit
|
edparams /dev/$root "rootdev=$root; ramimagedev=$root; $disable $cache; main() { echo This is the MINIX 3 boot monitor.; echo MINIX will load in 5 seconds, or press ESC.; trap 5000 boot; menu; }; save" || exit
|
||||||
pfile="/usr/src/tools/fdbootparams"
|
pfile="/usr/src/tools/fdbootparams"
|
||||||
echo "Remembering boot parameters in ${pfile}."
|
echo "Remembering boot parameters in ${pfile}."
|
||||||
echo "rootdev=$root; ramimagedev=$root; $cache; save" >$pfile || exit
|
echo "rootdev=$root; ramimagedev=$root; $cache; save" >$pfile || exit
|
||||||
|
|
|
@ -32,6 +32,7 @@ umount $TMPDISK
|
||||||
umount $RAM
|
umount $RAM
|
||||||
|
|
||||||
( cd .. && make clean )
|
( cd .. && make clean )
|
||||||
|
( cd .. && make depend )
|
||||||
echo " * Cleanup old files"
|
echo " * Cleanup old files"
|
||||||
rm -rf $RELEASEDIR $ISO $IMAGE $ROOTIMAGE $ISOGZ $CDFILES
|
rm -rf $RELEASEDIR $ISO $IMAGE $ROOTIMAGE $ISOGZ $CDFILES
|
||||||
mkdir -p $CDFILES || exit
|
mkdir -p $CDFILES || exit
|
||||||
|
@ -67,7 +68,7 @@ make programs image
|
||||||
(cd ../boot && make)
|
(cd ../boot && make)
|
||||||
make image || exit 1
|
make image || exit 1
|
||||||
sh mkboot cdfdboot
|
sh mkboot cdfdboot
|
||||||
cp cdfdboot $CDFILES/bootflp.img
|
cp $IMAGE $CDFILES/bootflp.img
|
||||||
cp release/cd/* $CDFILES
|
cp release/cd/* $CDFILES
|
||||||
writeisofs -l MINIX -b $IMAGE $CDFILES $ISO || exit 1
|
writeisofs -l MINIX -b $IMAGE $CDFILES $ISO || exit 1
|
||||||
echo "Appending Minix root and usr filesystem"
|
echo "Appending Minix root and usr filesystem"
|
||||||
|
|
|
@ -8,6 +8,10 @@ harddisk with it. Its contents are not visible here.
|
||||||
In this directory:
|
In this directory:
|
||||||
README.TXT: This file.
|
README.TXT: This file.
|
||||||
PRESZ134.ZIP: A tool to help resizing partitions.
|
PRESZ134.ZIP: A tool to help resizing partitions.
|
||||||
|
BOOTFLP.IMG: If you can't boot from CD, write this image to a
|
||||||
|
floppy and boot from it, while having the CD in a
|
||||||
|
CD drive. The system on the floppy should find the
|
||||||
|
CD and start up as if it had been booted from CD.
|
||||||
|
|
||||||
For more information, new releases, other software and documentation
|
For more information, new releases, other software and documentation
|
||||||
about MINIX 3, please visit:
|
about MINIX 3, please visit:
|
||||||
|
|
Loading…
Reference in a new issue