diff options
author | luigi <luigi@FreeBSD.org> | 2001-01-27 03:23:44 +0000 |
---|---|---|
committer | luigi <luigi@FreeBSD.org> | 2001-01-27 03:23:44 +0000 |
commit | 3bda6765ed4d093c07015f19cc33986e12e0a3d7 (patch) | |
tree | 8638ad956dd3e21659bc64bce36154dd96c5b29e /release/picobsd/mfs_tree/stand | |
parent | d96206dc6f138208b8f69bee8dedf4a3078ab32d (diff) | |
download | FreeBSD-src-3bda6765ed4d093c07015f19cc33986e12e0a3d7.zip FreeBSD-src-3bda6765ed4d093c07015f19cc33986e12e0a3d7.tar.gz |
The magic for autodetecting the boot media does not work anymore
on STABLE or CURRENT. Put the explicit name for the floppy.
Diffstat (limited to 'release/picobsd/mfs_tree/stand')
-rwxr-xr-x | release/picobsd/mfs_tree/stand/update | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/picobsd/mfs_tree/stand/update b/release/picobsd/mfs_tree/stand/update index 16cdfda..1b2193e 100755 --- a/release/picobsd/mfs_tree/stand/update +++ b/release/picobsd/mfs_tree/stand/update @@ -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 |