svn commit: r264933 - in head/release: amd64 i386
Glen Barber
gjb at FreeBSD.org
Fri Apr 25 19:43:19 UTC 2014
Author: gjb
Date: Fri Apr 25 19:43:18 2014
New Revision: 264933
URL: http://svnweb.freebsd.org/changeset/base/264933
Log:
Fix indentation for diff reduction with commits to follow.
Sponsored by: The FreeBSD Foundation
Modified:
head/release/amd64/make-memstick.sh
head/release/i386/make-memstick.sh
Modified: head/release/amd64/make-memstick.sh
==============================================================================
--- head/release/amd64/make-memstick.sh Fri Apr 25 19:25:57 2014 (r264932)
+++ head/release/amd64/make-memstick.sh Fri Apr 25 19:43:18 2014 (r264933)
@@ -14,32 +14,32 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin
export PATH
if [ $# -ne 2 ]; then
- echo "make-memstick.sh /path/to/directory /path/to/image/file"
- exit 1
+ echo "make-memstick.sh /path/to/directory /path/to/image/file"
+ exit 1
fi
if [ ! -d ${1} ]; then
- echo "${1} must be a directory"
- exit 1
+ echo "${1} must be a directory"
+ exit 1
fi
if [ -e ${2} ]; then
- echo "won't overwrite ${2}"
- exit 1
+ echo "won't overwrite ${2}"
+ exit 1
fi
echo '/dev/ufs/FreeBSD_Install / ufs ro,noatime 1 1' > ${1}/etc/fstab
makefs -B little -o label=FreeBSD_Install ${2} ${1}
if [ $? -ne 0 ]; then
- echo "makefs failed"
- exit 1
+ echo "makefs failed"
+ exit 1
fi
rm ${1}/etc/fstab
-unit=`mdconfig -a -t vnode -f ${2}`
+unit=$(mdconfig -a -t vnode -f ${2})
if [ $? -ne 0 ]; then
- echo "mdconfig failed"
- exit 1
+ echo "mdconfig failed"
+ exit 1
fi
gpart create -s BSD ${unit}
gpart bootcode -b ${1}/boot/boot ${unit}
Modified: head/release/i386/make-memstick.sh
==============================================================================
--- head/release/i386/make-memstick.sh Fri Apr 25 19:25:57 2014 (r264932)
+++ head/release/i386/make-memstick.sh Fri Apr 25 19:43:18 2014 (r264933)
@@ -14,32 +14,32 @@ PATH=/bin:/usr/bin:/sbin:/usr/sbin
export PATH
if [ $# -ne 2 ]; then
- echo "make-memstick.sh /path/to/directory /path/to/image/file"
- exit 1
+ echo "make-memstick.sh /path/to/directory /path/to/image/file"
+ exit 1
fi
if [ ! -d ${1} ]; then
- echo "${1} must be a directory"
- exit 1
+ echo "${1} must be a directory"
+ exit 1
fi
if [ -e ${2} ]; then
- echo "won't overwrite ${2}"
- exit 1
+ echo "won't overwrite ${2}"
+ exit 1
fi
echo '/dev/ufs/FreeBSD_Install / ufs ro,noatime 1 1' > ${1}/etc/fstab
makefs -B little -o label=FreeBSD_Install ${2} ${1}
if [ $? -ne 0 ]; then
- echo "makefs failed"
- exit 1
+ echo "makefs failed"
+ exit 1
fi
rm ${1}/etc/fstab
-unit=`mdconfig -a -t vnode -f ${2}`
+unit=$(mdconfig -a -t vnode -f ${2})
if [ $? -ne 0 ]; then
- echo "mdconfig failed"
- exit 1
+ echo "mdconfig failed"
+ exit 1
fi
gpart create -s BSD ${unit}
gpart bootcode -b ${1}/boot/boot ${unit}
More information about the svn-src-head
mailing list