mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-26 10:53:39 +01:00
599273f942
This handles copying in install-boot.sh and bsdinstall's bootconfig. install-boot.sh: make_esp_file now optionally takes extra arguments so it can copy multiple files. This is used by the amd64 release scripts. make_esp_device also takes an extra optional argument for efibootname. This is currently unused, but it can be used in the future to do something like: make_esp_device loader.efi bootx64 make_esp_device loader_ia32.efi bootia32 Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/1098
79 lines
2.1 KiB
Bash
Executable File
79 lines
2.1 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# This script generates a "memstick image" (image that can be copied to a
|
|
# USB memory stick) from a directory tree. Note that the script does not
|
|
# clean up after itself very well for error conditions on purpose so the
|
|
# problem can be diagnosed (full filesystem most likely but ...).
|
|
#
|
|
# Usage: make-memstick.sh <directory tree or manifest> <image filename>
|
|
#
|
|
#
|
|
|
|
set -e
|
|
|
|
scriptdir=$(dirname $(realpath $0))
|
|
. ${scriptdir}/../../tools/boot/install-boot.sh
|
|
|
|
if [ "$(uname -s)" = "FreeBSD" ]; then
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
|
export PATH
|
|
fi
|
|
|
|
if [ $# -ne 2 ]; then
|
|
echo "make-memstick.sh /path/to/directory/or/manifest /path/to/image/file"
|
|
exit 1
|
|
fi
|
|
|
|
MAKEFSARG=${1}
|
|
|
|
if [ -f ${MAKEFSARG} ]; then
|
|
BASEBITSDIR=`dirname ${MAKEFSARG}`
|
|
METALOG=${MAKEFSARG}
|
|
elif [ -d ${MAKEFSARG} ]; then
|
|
BASEBITSDIR=${MAKEFSARG}
|
|
METALOG=
|
|
else
|
|
echo "${MAKEFSARG} must exist"
|
|
exit 1
|
|
fi
|
|
|
|
if [ -e ${2} ]; then
|
|
echo "won't overwrite ${2}"
|
|
exit 1
|
|
fi
|
|
|
|
echo '/dev/ufs/FreeBSD_Install / ufs ro,noatime 1 1' > ${BASEBITSDIR}/etc/fstab
|
|
echo 'root_rw_mount="NO"' > ${BASEBITSDIR}/etc/rc.conf.local
|
|
if [ -n "${METALOG}" ]; then
|
|
metalogfilename=$(mktemp /tmp/metalog.XXXXXX)
|
|
cat ${METALOG} > ${metalogfilename}
|
|
echo "./etc/fstab type=file uname=root gname=wheel mode=0644" >> ${metalogfilename}
|
|
echo "./etc/rc.conf.local type=file uname=root gname=wheel mode=0644" >> ${metalogfilename}
|
|
MAKEFSARG=${metalogfilename}
|
|
fi
|
|
makefs -D -N ${BASEBITSDIR}/etc -B little -o label=FreeBSD_Install -o version=2 ${2}.part ${MAKEFSARG}
|
|
rm ${BASEBITSDIR}/etc/fstab
|
|
rm ${BASEBITSDIR}/etc/rc.conf.local
|
|
if [ -n "${METALOG}" ]; then
|
|
rm ${metalogfilename}
|
|
fi
|
|
|
|
# Make an ESP in a file.
|
|
espfilename=$(mktemp /tmp/efiboot.XXXXXX)
|
|
if [ -f "${BASEBITSDIR}/boot/loader_ia32.efi" ]; then
|
|
make_esp_file ${espfilename} ${fat32min} ${BASEBITSDIR}/boot/loader.efi bootx64 \
|
|
${BASEBITSDIR}/boot/loader_ia32.efi bootia32
|
|
else
|
|
make_esp_file ${espfilename} ${fat32min} ${BASEBITSDIR}/boot/loader.efi
|
|
fi
|
|
|
|
mkimg -s mbr \
|
|
-b ${BASEBITSDIR}/boot/mbr \
|
|
-p efi:=${espfilename} \
|
|
-p freebsd:-"mkimg -s bsd -b ${BASEBITSDIR}/boot/boot -p freebsd-ufs:=${2}.part" \
|
|
-a 2 \
|
|
-o ${2}
|
|
rm ${espfilename}
|
|
rm ${2}.part
|
|
|