freebsd-dev/release/picobsd/dial/lang/update.en

21 lines
459 B
Plaintext
Raw Normal View History

1998-08-27 17:38:45 +00:00
#!/bin/sh
1999-01-14 23:19:47 +00:00
# $Id: update.en,v 1.1.1.1 1998/08/27 17:38:42 abial Exp $
1998-08-27 17:38:45 +00:00
pwd=`pwd`
echo -n "Updating /etc contents on startup floppy... "
mount /dev/fd0a /start_floppy
if [ "X$?" != "X0" ]
then
echo ""
echo "Cannot mount the floppy read-write!"
echo "Check the write-protection..."
exit 1
fi
cd /etc
cp -Rp . /start_floppy/etc/
echo " Done."
echo -n "Updating kernel parameters... "
1999-01-14 23:19:47 +00:00
kget /start_floppy/kernel.config
1998-08-27 17:38:45 +00:00
umount /dev/fd0a
cd ${pwd}
echo " Done."