diff options
author | hrs <hrs@FreeBSD.org> | 2013-01-08 21:13:58 +0000 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2013-01-08 21:13:58 +0000 |
commit | adbb26d90e65096c624bfb3266509b976ccca2da (patch) | |
tree | 3c6599eed2f48176f0c36c7be11d24e57faf3872 /release/ia64 | |
parent | 47e814b547d08370030f56413b12f0283fd5aca6 (diff) | |
download | FreeBSD-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/ia64')
-rw-r--r-- | release/ia64/mkisoimages.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/ia64/mkisoimages.sh b/release/ia64/mkisoimages.sh index 59fe025..d4a0802 100644 --- a/release/ia64/mkisoimages.sh +++ b/release/ia64/mkisoimages.sh @@ -37,7 +37,7 @@ if [ $# -lt 3 ]; then exit 1 fi -LABEL=$1; shift +LABEL=`echo $1 | tr '[:lower:]' '[:upper:]'`; shift NAME=$1; shift BASE=$1; shift |