mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 06:42:51 +01:00
Update to use /dev/fd0 instead of /dev/fd0a.
This commit is contained in:
parent
98446d4e96
commit
8c18e419c6
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=1125
@ -424,8 +424,8 @@ y*|Y*)
|
||||
;;
|
||||
esac
|
||||
|
||||
mount -u /dev/fd0a / || {
|
||||
if mount -u /dev/fd1a / ; then
|
||||
mount -u /dev/fd0 / || {
|
||||
if mount -u /dev/fd1 / ; then
|
||||
echo "[Please ignore the above error message, that's normal.]"
|
||||
else
|
||||
echo "Oh boy, we're in trouble here: Could not mount floppy read-write."
|
||||
|
@ -191,8 +191,8 @@ load_fd()
|
||||
fi
|
||||
while [ "$drive" != "q" ]
|
||||
do
|
||||
device=/dev/fd0a
|
||||
[ "$drive" = "B" ] && device=/dev/fd1a
|
||||
device=/dev/fd0
|
||||
[ "$drive" = "B" ] && device=/dev/fd1
|
||||
[ "$drive" = "C" ] && device=${msdos_device}
|
||||
echo;
|
||||
if [ "$drive" != "C" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user