The magic for autodetecting the boot media does not work anymore

on STABLE or CURRENT.  Put the explicit name for the floppy.
This commit is contained in:
Luigi Rizzo 2001-01-27 03:23:44 +00:00
parent 4ff9c03cc5
commit e5b68d5513
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ export PATH
trap "echo 'Reboot interrupted'; exit 1" 3
### Special setup for one floppy PICOBSD ###
set `df /` ; dev="/dev/$8"
dev="/dev/fd0c"
echo "Reading /etc from ${dev}..."
mount -o rdonly ${dev} /mnt
cd /mnt/etc ; cp -Rp . /etc/

View File

@ -3,7 +3,7 @@
# script to edit and save some config file(s)
thefiles=$*
pwd=`pwd`
set `df /` ; dev="/dev/$8"
dev="/dev/fd0c"
echo "Updating content on ${dev}: "
mount ${dev} /mnt
if [ "X$?" != "X0" ] ; then