]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tools/boot/ci-qemu-test.sh
Merge llvm-project release/15.x llvmorg-15.0.6-0-g088f33605d8a
[FreeBSD/FreeBSD.git] / tools / boot / ci-qemu-test.sh
1 #!/bin/sh
2
3 # Install pkgbase packages for loader, kernel, and enough of userland to boot
4 # in QEMU and echo "Hello world." from init, as a very quick smoke test for CI.
5 # Uses QEMU's virtual FAT filesystem to avoid the need to create a disk image.
6 # While designed for CI automated testing, this script can also be run by hand
7 # as a quick smoke-test as long as pkgbase packages have been built.  The
8 # rootgen.sh and related scripts generate much more extensive tests for many
9 # combinations of boot env (ufs, zfs, geli, etc).
10 #
11 # $FreeBSD$
12
13 set -e
14
15 die()
16 {
17         echo "$*" 1>&2
18         exit 1
19 }
20
21 tempdir_cleanup()
22 {
23         trap - EXIT SIGINT SIGHUP SIGTERM SIGQUIT
24         rm -rf ${ROOTDIR}
25 }
26
27 tempdir_setup()
28 {
29         # Create minimal directory structure and populate it.
30
31         for dir in dev bin efi/boot etc lib libexec sbin usr/lib usr/libexec; do
32                 mkdir -p ${ROOTDIR}/${dir}
33         done
34
35         # Install kernel, loader and minimal userland.
36         cat<<EOF >${ROOTDIR}/pkg.conf
37 REPOS_DIR=[]
38 repositories={local {url = file://$(dirname $OBJTOP)/repo/\${ABI}/latest}}
39 EOF
40         ASSUME_ALWAYS_YES=true INSTALL_AS_USER=true pkg \
41             -o ABI_FILE=$OBJTOP/bin/sh/sh \
42             -C ${ROOTDIR}/pkg.conf -r ${ROOTDIR} install \
43             FreeBSD-kernel-generic FreeBSD-bootloader \
44             FreeBSD-clibs FreeBSD-runtime
45
46         # Put loader in standard EFI location.
47         mv ${ROOTDIR}/boot/loader.efi ${ROOTDIR}/efi/boot/$EFIBOOT
48
49         # Configuration files.
50         cat > ${ROOTDIR}/boot/loader.conf <<EOF
51 vfs.root.mountfrom="msdosfs:/dev/$ROOTDEV"
52 autoboot_delay=-1
53 boot_verbose=YES
54 EOF
55         cat > ${ROOTDIR}/etc/rc <<EOF
56 #!/bin/sh
57
58 echo "Hello world."
59 /sbin/sysctl vm.stats.vm.v_wire_count
60 /sbin/shutdown -p now
61 EOF
62
63         # Entropy needed to boot, see r346250 and followup commits/discussion.
64         dd if=/dev/random of=${ROOTDIR}/boot/entropy bs=4k count=1
65
66         # Remove unnecessary files to keep FAT filesystem size down.
67         rm -rf ${ROOTDIR}/METALOG ${ROOTDIR}/usr/lib
68 }
69
70 # Locate the top of the source tree, to run make install from.
71 : ${SRCTOP:=$(make -V SRCTOP)}
72 if [ -z "${SRCTOP}" ]; then
73         die "Cannot locate top of source tree"
74 fi
75 : ${OBJTOP:=$(make -V OBJTOP)}
76 if [ -z "${OBJTOP}" ]; then
77         die "Cannot locate top of object tree"
78 fi
79
80 : ${TARGET:=$(uname -m)}
81 case $TARGET in
82 amd64)
83         # Locate the uefi firmware file used by qemu.
84         : ${OVMF:=/usr/local/share/qemu/edk2-x86_64-code.fd}
85         if [ ! -r "${OVMF}" ]; then
86                 die "Cannot read UEFI firmware file ${OVMF}"
87         fi
88         QEMU="qemu-system-x86_64 -drive if=pflash,format=raw,readonly,file=${OVMF}"
89         EFIBOOT=BOOTx64.EFI
90         ROOTDEV=ada0s1
91         ;;
92 arm64)
93         QEMU="qemu-system-aarch64 -cpu cortex-a57 -M virt -bios edk2-aarch64-code.fd"
94         EFIBOOT=BOOTAA64.EFI
95         ROOTDEV=vtbd0s1
96         ;;
97 *)
98         die "Unknown TARGET:TARGET_ARCH $TARGET:$TARGET_ARCH"
99 esac
100
101 # Create a temp dir to hold the boot image.
102 ROOTDIR=$(mktemp -d -t ci-qemu-test-fat-root)
103 trap tempdir_cleanup EXIT SIGINT SIGHUP SIGTERM SIGQUIT
104
105 # Populate the boot image in a temp dir.
106 ( cd ${SRCTOP} && tempdir_setup )
107
108 # And, boot in QEMU.
109 : ${BOOTLOG:=${TMPDIR:-/tmp}/ci-qemu-test-boot.log}
110 timeout 300 \
111     $QEMU -m 256M -nodefaults \
112         -serial stdio -vga none -nographic -monitor none \
113         -snapshot -hda fat:${ROOTDIR} 2>&1 | tee ${BOOTLOG}
114
115 # Check whether we succesfully booted...
116 if grep -q 'Hello world.' ${BOOTLOG}; then
117         echo "OK"
118 else
119         die "Did not boot successfully, see ${BOOTLOG}"
120 fi