2019-04-10 13:41:34 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Install loader, kernel, and enough of userland to boot in QEMU and echo
|
|
|
|
# "Hello world." from init, as a very quick smoke test for CI. Uses QEMU's
|
2019-04-17 16:27:43 +00:00
|
|
|
# virtual FAT filesystem to avoid the need to create a disk image. While
|
|
|
|
# designed for CI automated testing, this script can also be run by hand as
|
|
|
|
# a quick smoke-test. The rootgen.sh and related scripts generate much more
|
|
|
|
# extensive tests for many combinations of boot env (ufs, zfs, geli, etc).
|
2019-04-10 13:41:34 +00:00
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2019-04-17 16:27:43 +00:00
|
|
|
die()
|
|
|
|
{
|
|
|
|
echo "$*" 1>&2
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
tempdir_cleanup()
|
|
|
|
{
|
|
|
|
trap - EXIT SIGINT SIGHUP SIGTERM SIGQUIT
|
|
|
|
rm -rf ${ROOTDIR}
|
|
|
|
}
|
|
|
|
|
|
|
|
tempdir_setup()
|
|
|
|
{
|
|
|
|
# Create minimal directory structure and populate it.
|
|
|
|
# Caller must cd ${SRCTOP} before calling this function.
|
|
|
|
|
|
|
|
for dir in dev bin efi/boot etc lib libexec sbin usr/lib usr/libexec; do
|
|
|
|
mkdir -p ${ROOTDIR}/${dir}
|
|
|
|
done
|
|
|
|
|
|
|
|
# Install kernel, loader and minimal userland.
|
|
|
|
|
|
|
|
make -DNO_ROOT DESTDIR=${ROOTDIR} \
|
|
|
|
MODULES_OVERRIDE= \
|
|
|
|
WITHOUT_DEBUG_FILES=yes \
|
|
|
|
WITHOUT_KERNEL_SYMBOLS=yes \
|
|
|
|
installkernel
|
|
|
|
for dir in stand \
|
|
|
|
lib/libc lib/libedit lib/ncurses \
|
|
|
|
libexec/rtld-elf \
|
|
|
|
bin/sh sbin/init sbin/shutdown; do
|
|
|
|
make -DNO_ROOT DESTDIR=${ROOTDIR} INSTALL="install -U" \
|
|
|
|
WITHOUT_DEBUG_FILES= \
|
|
|
|
WITHOUT_MAN= \
|
|
|
|
WITHOUT_PROFILE= \
|
|
|
|
WITHOUT_TESTS= \
|
|
|
|
WITHOUT_TOOLCHAIN= \
|
|
|
|
-C ${dir} install
|
|
|
|
done
|
|
|
|
|
|
|
|
# Put loader in standard EFI location.
|
|
|
|
mv ${ROOTDIR}/boot/loader.efi ${ROOTDIR}/efi/boot/BOOTx64.EFI
|
|
|
|
|
|
|
|
# Configuration files.
|
|
|
|
cat > ${ROOTDIR}/boot/loader.conf <<EOF
|
2019-04-10 13:41:34 +00:00
|
|
|
vfs.root.mountfrom="msdosfs:/dev/ada0s1"
|
|
|
|
autoboot_delay=-1
|
|
|
|
boot_verbose=YES
|
|
|
|
EOF
|
2019-04-17 16:27:43 +00:00
|
|
|
cat > ${ROOTDIR}/etc/rc <<EOF
|
2019-04-10 13:41:34 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
echo "Hello world."
|
|
|
|
/sbin/shutdown -p now
|
|
|
|
EOF
|
|
|
|
|
2019-04-17 19:16:26 +00:00
|
|
|
# Entropy needed to boot, see r346250 and followup commits/discussion.
|
|
|
|
dd if=/dev/random of=${ROOTDIR}/boot/entropy bs=4k count=1
|
|
|
|
|
2019-04-17 16:27:43 +00:00
|
|
|
# Remove unnecessary files to keep FAT filesystem size down.
|
|
|
|
rm -rf ${ROOTDIR}/METALOG ${ROOTDIR}/usr/lib
|
|
|
|
}
|
|
|
|
|
|
|
|
# Locate the top of the source tree, to run make install from.
|
|
|
|
: ${SRCTOP:=$(make -V SRCTOP)}
|
|
|
|
if [ -z "${SRCTOP}" ]; then
|
|
|
|
die "Cannot locate top of source tree"
|
|
|
|
fi
|
|
|
|
|
2019-04-26 14:44:46 +00:00
|
|
|
# Locate the uefi firmware file used by qemu.
|
|
|
|
: ${OVMF:=/usr/local/share/uefi-edk2-qemu/QEMU_UEFI_CODE-x86_64.fd}
|
2019-04-17 16:27:43 +00:00
|
|
|
if [ ! -r "${OVMF}" ]; then
|
2019-04-26 14:44:46 +00:00
|
|
|
die "Cannot read UEFI firmware file ${OVMF}"
|
2019-04-17 16:27:43 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Create a temp dir to hold the boot image.
|
|
|
|
ROOTDIR=$(mktemp -d -t ci-qemu-test-fat-root)
|
|
|
|
trap tempdir_cleanup EXIT SIGINT SIGHUP SIGTERM SIGQUIT
|
|
|
|
|
|
|
|
# Populate the boot image in a temp dir.
|
|
|
|
( cd ${SRCTOP} && tempdir_setup )
|
2019-04-10 13:41:34 +00:00
|
|
|
|
|
|
|
# And, boot in QEMU.
|
2019-04-17 19:24:41 +00:00
|
|
|
: ${BOOTLOG:=${TMPDIR:-/tmp}/ci-qemu-test-boot.log}
|
2019-04-10 13:41:34 +00:00
|
|
|
timeout 300 \
|
2019-04-30 15:28:52 +00:00
|
|
|
qemu-system-x86_64 -m 256M -nodefaults \
|
2019-04-26 14:44:46 +00:00
|
|
|
-drive if=pflash,format=raw,readonly,file=${OVMF} \
|
2019-04-17 16:27:43 +00:00
|
|
|
-serial stdio -vga none -nographic -monitor none \
|
|
|
|
-snapshot -hda fat:${ROOTDIR} 2>&1 | tee ${BOOTLOG}
|
|
|
|
|
|
|
|
# Check whether we succesfully booted...
|
|
|
|
if grep -q 'Hello world.' ${BOOTLOG}; then
|
|
|
|
echo "OK"
|
|
|
|
else
|
|
|
|
die "Did not boot successfully, see ${BOOTLOG}"
|
|
|
|
fi
|