diff options
author | jhay <jhay@FreeBSD.org> | 1998-03-22 18:39:42 +0000 |
---|---|---|
committer | jhay <jhay@FreeBSD.org> | 1998-03-22 18:39:42 +0000 |
commit | 4b4f1b5abdee7b870b666c9dff4474f767cd8022 (patch) | |
tree | b0c12d7a02970cc8416ca78f3d75fee12000cac4 /release/scripts/doFS.sh | |
parent | a4f109814ddb7a1e53f54f0d8868d0de04ec2416 (diff) | |
download | FreeBSD-src-4b4f1b5abdee7b870b666c9dff4474f767cd8022.zip FreeBSD-src-4b4f1b5abdee7b870b666c9dff4474f767cd8022.tar.gz |
Make the vn device that is being used to build the floppies configurable.
You can now do something like "make release VNDEVICE=vn1". This makes it
possible to do something else with vn0, for instance building another
release.
Diffstat (limited to 'release/scripts/doFS.sh')
-rw-r--r-- | release/scripts/doFS.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/release/scripts/doFS.sh b/release/scripts/doFS.sh index 61195fd..43b93eb 100644 --- a/release/scripts/doFS.sh +++ b/release/scripts/doFS.sh @@ -1,7 +1,9 @@ : #set -ex -VNDEVICE=vn0 +if [ "x$VNDEVICE" = "x" ] ; then + VNDEVICE=vn0 +fi export BLOCKSIZE=512 RD=$1 ; shift |