diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1993-09-13 12:23:38 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1993-09-13 12:23:38 +0000 |
commit | 89b6f54b100f04183a026c1a5891a7e61846ccc1 (patch) | |
tree | a783252c2c2dccca376c488bc55f80c12f3a5b66 | |
parent | 8c35e4fc632bf364e9cf7ce5aabd5311cefc3758 (diff) | |
download | FreeBSD-src-89b6f54b100f04183a026c1a5891a7e61846ccc1.zip FreeBSD-src-89b6f54b100f04183a026c1a5891a7e61846ccc1.tar.gz |
Fixed missing device name arguments to fdisk commands, this was the
cause of silient failure on scsi disk installs with the new floppies.
-rwxr-xr-x | etc/etc.i386/inst1.install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/etc.i386/inst1.install b/etc/etc.i386/inst1.install index ab61c2a..8df2799 100755 --- a/etc/etc.i386/inst1.install +++ b/etc/etc.i386/inst1.install @@ -286,9 +286,9 @@ if [ "$RUN_FDISK" = "overwrite" ]; then echo y echo y ) >>fdisk.script - fdisk -u <fdisk.script >/dev/null 2>&1 + fdisk -u /dev/r${drivename}d <fdisk.script >/dev/null 2>&1 elif [ "$RUN_FDISK" ]; then - $RUN_FDISK -${opsys_part:-${unused_last_part:-3}} <<-EOF >/dev/null 2>&1 + $RUN_FDISK -${opsys_part:-${unused_last_part:-3}} /dev/r${drivename}d <<-EOF >/dev/null 2>&1 y $cyls_per_disk $tracks_per_cyl |