diff options
author | Glen Barber <gjb@FreeBSD.org> | 2016-01-05 03:20:45 +0000 |
---|---|---|
committer | Glen Barber <gjb@FreeBSD.org> | 2016-01-05 03:20:45 +0000 |
commit | 10c40dfa68b9d163878c454bd66058e6c159e23e (patch) | |
tree | 15c1d3e12aae2e0ff0e43cdd007ce964dc7dccd7 /release/amd64/make-memstick.sh | |
parent | d88def534ea2271e6cf53e895414c1f13beebfea (diff) | |
download | src-10c40dfa68b9d163878c454bd66058e6c159e23e.tar.gz src-10c40dfa68b9d163878c454bd66058e6c159e23e.zip |
Prevent memstick installation medium from attempting to mount
the root filesystem read-write. This causes problems booting
the memstick installation medium from write-protected USB flash
drives.
Submitted by: A.J. Kehoe IV [1], Oliver Jones [2]
PR: 187161 [1], 205886 [2]
MFC after: 1 week
Sponsored by: The FreeBSD Foundation
Notes
Notes:
svn path=/head/; revision=293188
Diffstat (limited to 'release/amd64/make-memstick.sh')
-rwxr-xr-x | release/amd64/make-memstick.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/release/amd64/make-memstick.sh b/release/amd64/make-memstick.sh index 6c289e093b8b..52e17cc97b5f 100755 --- a/release/amd64/make-memstick.sh +++ b/release/amd64/make-memstick.sh @@ -29,12 +29,14 @@ if [ -e ${2} ]; then fi echo '/dev/ufs/FreeBSD_Install / ufs ro,noatime 1 1' > ${1}/etc/fstab +echo 'root_rw_mount="NO"' > ${1}/etc/rc.conf.local makefs -B little -o label=FreeBSD_Install ${2}.part ${1} if [ $? -ne 0 ]; then echo "makefs failed" exit 1 fi rm ${1}/etc/fstab +rm ${1}/etc/rc.conf.local mkimg -s gpt -b ${1}/boot/pmbr -p efi:=${1}/boot/boot1.efifat -p freebsd-boot:=${1}/boot/gptboot -p freebsd-ufs:=${2}.part -p freebsd-swap::1M -o ${2} rm ${2}.part |