Lines Matching +full:vga +full:- +full:format
7 # as a quick smoke-test as long as pkgbase packages have been built. The
12 set -e
22 trap - EXIT SIGINT SIGHUP SIGTERM SIGQUIT
23 rm -rf ${WORKDIR}
31 mkdir -p ${ROOTDIR}/${dir}
40 -o ABI_FILE=$OBJTOP/bin/sh/sh \
41 -C ${ROOTDIR}/pkg.conf -r ${ROOTDIR} install \
42 FreeBSD-kernel-generic FreeBSD-bootloader \
43 FreeBSD-clibs FreeBSD-runtime
51 autoboot_delay=-1
59 /sbin/shutdown -p now
66 rm -rf ${ROOTDIR}/METALOG ${ROOTDIR}/usr/lib
70 : ${SRCTOP:=$(make -V SRCTOP)}
71 if [ -z "${SRCTOP}" ]; then
74 : ${OBJTOP:=$(make -V OBJTOP)}
75 if [ -z "${OBJTOP}" ]; then
79 : ${TARGET:=$(uname -m)}
83 : ${OVMF:=/usr/local/share/qemu/edk2-x86_64-code.fd}
84 if [ ! -r "${OVMF}" ]; then
87 QEMU="qemu-system-x86_64 -drive if=pflash,format=raw,readonly=on,file=${OVMF}"
92 QEMU="qemu-system-aarch64 -cpu cortex-a57 -M virt -bios edk2-aarch64-code.fd"
101 WORKDIR=$(mktemp -d -t ci-qemu-test-fat-root)
102 ROOTDIR=${WORKDIR}/stage-root
112 rootsize=$(du -skA ${ROOTDIR} | sed 's/[[:space:]].*$//')
113 if [ $rootsize -gt 512000 ]; then
115 makefs -t msdos -s 1g $WORKDIR/image.fat $ROOTDIR
116 mkimg -s mbr -p efi:=$WORKDIR/image.fat -o $WORKDIR/image.mbr
121 : ${BOOTLOG:=${TMPDIR:-/tmp}/ci-qemu-test-boot.log}
123 $QEMU -m 256M -nodefaults \
124 -serial stdio -vga none -nographic -monitor none \
125 -snapshot -hda $hda 2>&1 | tee ${BOOTLOG}
128 if grep -q 'Hello world.' ${BOOTLOG} && egrep -q '^Uptime: ' ${BOOTLOG}; then