diff options
author | jkh <jkh@FreeBSD.org> | 1994-06-28 05:56:13 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-06-28 05:56:13 +0000 |
commit | 0e44d1d495f88a0403d246e39ad2cf19a19c4114 (patch) | |
tree | 711f4e4f1e64604ff5c9e476cd5e914f3bd4b81b /etc | |
parent | 4193aa953c78a1794011e1fd02b0e6b74250438b (diff) | |
download | FreeBSD-src-0e44d1d495f88a0403d246e39ad2cf19a19c4114.zip FreeBSD-src-0e44d1d495f88a0403d246e39ad2cf19a19c4114.tar.gz |
Commit Scott's changes to the bad144 stuff - bad144 takes a list of bad
blocks as *multiple* arguments, not one argument (as was incorrectly being
passed).
Diffstat (limited to 'etc')
-rw-r--r-- | etc/etc.i386/cdinst1.install | 4 | ||||
-rwxr-xr-x | etc/etc.i386/inst1.install | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/etc/etc.i386/cdinst1.install b/etc/etc.i386/cdinst1.install index f96dc6e..87ca92c 100644 --- a/etc/etc.i386/cdinst1.install +++ b/etc/etc.i386/cdinst1.install @@ -1,7 +1,7 @@ #!/bin/sh # cd install floppy disk /install script # -# $Id: cdinst1.install,v 1.3 1994/05/03 10:11:47 rgrimes Exp $ +# $Id: cdinst1.install,v 1.4 1994/06/20 06:05:15 jkh Exp $ # ${OPSYSTEM}, the mounting of the cdrom drive, and the path are all # setup by .profile @@ -864,7 +864,7 @@ if [ "$sect_fwd" = "sf:" ]; then bad_read=$(expr "$data" : '[^(]*(read)[^0-9]*\([0-9]*\)') [ "$bad_seek" -o "$bad_read" ] && echo -n "$bad_seek $bad_read " done) - [ "$badlist" ] && bad144 -a -c $drivename "$badlist" + [ "$badlist" ] && bad144 -a -c $drivename $badlist echo " done." fi diff --git a/etc/etc.i386/inst1.install b/etc/etc.i386/inst1.install index 1923c44..da8b928 100755 --- a/etc/etc.i386/inst1.install +++ b/etc/etc.i386/inst1.install @@ -882,7 +882,7 @@ if [ "$sect_fwd" = "sf:" ]; then bad_read=$(expr "$data" : '[^(]*(read)[^0-9]*\([0-9]*\)') [ "$bad_seek" -o "$bad_read" ] && echo -n "$bad_seek $bad_read " done) - [ "$badlist" ] && bad144 -a -c $drivename "$badlist" + [ "$badlist" ] && bad144 -a -c $drivename $badlist echo " done." fi |