summaryrefslogtreecommitdiffstats
path: root/release/pc98
diff options
context:
space:
mode:
authorhrs <hrs@FreeBSD.org>2013-01-08 21:13:58 +0000
committerhrs <hrs@FreeBSD.org>2013-01-08 21:13:58 +0000
commitadbb26d90e65096c624bfb3266509b976ccca2da (patch)
tree3c6599eed2f48176f0c36c7be11d24e57faf3872 /release/pc98
parent47e814b547d08370030f56413b12f0283fd5aca6 (diff)
downloadFreeBSD-src-adbb26d90e65096c624bfb3266509b976ccca2da.zip
FreeBSD-src-adbb26d90e65096c624bfb3266509b976ccca2da.tar.gz
ISO 9660 specification allows only "d-characters" and "a-characters" in the
Volume Descriptor (section 7.4). In short, upper-case alphanumeric + some symbols only. While the makefs utility automatically converts the characters, $LABEL should be consistent in the scripts.
Diffstat (limited to 'release/pc98')
-rw-r--r--release/pc98/mkisoimages.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/pc98/mkisoimages.sh b/release/pc98/mkisoimages.sh
index 313641b..68f2196 100644
--- a/release/pc98/mkisoimages.sh
+++ b/release/pc98/mkisoimages.sh
@@ -36,9 +36,9 @@ if [ $# -lt 3 ]; then
exit 1
fi
-LABEL=$1; shift
+LABEL=`echo $1 | tr '[:lower:]' '[:upper:]'`; shift
NAME=$1; shift
-echo "/dev/iso9660/`echo $LABEL | tr '[:lower:]' '[:upper:]'` / cd9660 ro 0 0" > $1/etc/fstab
+echo "/dev/iso9660/$LABEL / cd9660 ro 0 0" > $1/etc/fstab
makefs -t cd9660 $bootable -o rockridge -o label=$LABEL $NAME $*
rm $1/etc/fstab
OpenPOWER on IntegriCloud