2011-05-18 11:53:07 +00:00
|
|
|
#! /bin/sh
|
|
|
|
set -e
|
2010-01-08 09:49:10 +00:00
|
|
|
|
|
|
|
# Run GRUB script in a Qemu instance
|
2010-01-22 13:37:27 +00:00
|
|
|
# Copyright (C) 2009,2010 Free Software Foundation, Inc.
|
2010-01-08 09:49:10 +00:00
|
|
|
#
|
|
|
|
# GRUB is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# GRUB is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# Initialize some variables.
|
2012-01-24 12:17:36 +00:00
|
|
|
prefix="@prefix@"
|
|
|
|
exec_prefix="@exec_prefix@"
|
|
|
|
datarootdir="@datarootdir@"
|
|
|
|
builddir="@builddir@"
|
2013-05-03 12:09:55 +00:00
|
|
|
srcdir="@srcdir@"
|
2010-01-08 09:49:10 +00:00
|
|
|
PACKAGE_NAME=@PACKAGE_NAME@
|
|
|
|
PACKAGE_TARNAME=@PACKAGE_TARNAME@
|
|
|
|
PACKAGE_VERSION=@PACKAGE_VERSION@
|
|
|
|
|
|
|
|
# Force build directory components
|
2012-01-24 12:17:36 +00:00
|
|
|
PATH="${builddir}:$PATH"
|
2010-01-08 09:49:10 +00:00
|
|
|
export PATH
|
|
|
|
|
2012-06-07 14:33:17 +00:00
|
|
|
trim=0
|
|
|
|
|
2010-01-08 09:49:10 +00:00
|
|
|
# Usage: usage
|
|
|
|
# Print the usage.
|
|
|
|
usage () {
|
|
|
|
cat <<EOF
|
|
|
|
Usage: $0 [OPTION] [SOURCE]
|
|
|
|
Run GRUB script in a Qemu instance.
|
|
|
|
|
|
|
|
-h, --help print this message and exit
|
|
|
|
-v, --version print the version information and exit
|
2013-04-26 12:33:31 +00:00
|
|
|
--boot=[fd|hd|cd|net] boot method for Qemu instance
|
2010-01-08 09:49:10 +00:00
|
|
|
--modules=MODULES pre-load specified modules MODULES
|
2010-01-17 22:36:45 +00:00
|
|
|
--qemu=FILE Name of qemu binary
|
2013-04-27 00:00:16 +00:00
|
|
|
--disk=FILE Attach FILE as a disk
|
2010-01-08 09:49:10 +00:00
|
|
|
--qemu-opts=OPTIONS extra options to pass to Qemu instance
|
2010-01-17 22:36:45 +00:00
|
|
|
--files=FILES add files to the image
|
2013-04-26 12:33:31 +00:00
|
|
|
--mkrescue-arg=ARGS additional arguments to grub-mkrescue
|
|
|
|
--timeout=SECONDS set timeout
|
2012-06-07 14:33:17 +00:00
|
|
|
--trim trim firmware output
|
2010-01-08 09:49:10 +00:00
|
|
|
|
|
|
|
$0 runs input GRUB script or SOURCE file in a Qemu instance and prints
|
|
|
|
its output.
|
|
|
|
|
|
|
|
Report bugs to <bug-grub@gnu.org>.
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2012-06-06 10:36:33 +00:00
|
|
|
. "${builddir}/grub-core/modinfo.sh"
|
2012-06-07 12:14:02 +00:00
|
|
|
qemuopts="${GRUB_QEMU_OPTS}"
|
2012-06-08 18:29:15 +00:00
|
|
|
serial_port=com0
|
|
|
|
serial_null=
|
2012-06-22 19:59:10 +00:00
|
|
|
halt_cmd=halt
|
2013-04-26 12:33:31 +00:00
|
|
|
pseries=n
|
2013-04-27 00:00:16 +00:00
|
|
|
disk=hda
|
2012-06-06 10:36:33 +00:00
|
|
|
case "${grub_modinfo_target_cpu}-${grub_modinfo_platform}" in
|
2013-04-27 00:00:16 +00:00
|
|
|
*-emu)
|
|
|
|
device_map=`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` || exit 1
|
|
|
|
boot=emu
|
|
|
|
console=console
|
|
|
|
disk=0
|
|
|
|
# To skip "Welcome to GRUB" and color setttings
|
|
|
|
trim=1
|
|
|
|
;;
|
2012-06-08 18:29:15 +00:00
|
|
|
powerpc-ieee1275)
|
|
|
|
boot=cd
|
|
|
|
qemu=qemu-system-ppc
|
|
|
|
console=console
|
|
|
|
serial_port=escc-ch-a
|
|
|
|
serial_null="-serial null"
|
2013-04-26 12:33:31 +00:00
|
|
|
netbootext=elf
|
2012-06-08 18:29:15 +00:00
|
|
|
;;
|
|
|
|
|
2013-04-14 15:13:58 +00:00
|
|
|
sparc64-ieee1275)
|
|
|
|
boot=cd
|
|
|
|
qemu=qemu-system-sparc64
|
|
|
|
console=
|
|
|
|
serial_port=ieee1275/ttya
|
|
|
|
trim=1
|
|
|
|
qemuopts="$qemuopts -no-reboot"
|
|
|
|
halt_cmd=reboot
|
|
|
|
;;
|
|
|
|
|
2012-06-06 10:36:33 +00:00
|
|
|
mips-qemu_mips)
|
|
|
|
boot=mips_qemu
|
|
|
|
qemu=qemu-system-mips
|
2012-06-07 12:14:02 +00:00
|
|
|
qemuopts="$qemuopts -M mips"
|
2012-06-06 10:36:33 +00:00
|
|
|
console=vga_text
|
|
|
|
;;
|
2013-04-24 20:24:28 +00:00
|
|
|
mips-arc)
|
|
|
|
boot=cd
|
|
|
|
qemu=qemu-system-mips64
|
|
|
|
qemuopts="$qemuopts -M indy"
|
2013-04-30 15:41:32 +00:00
|
|
|
serial_port=arc/serial0/line0
|
|
|
|
console=
|
2013-04-24 20:24:28 +00:00
|
|
|
trim=1
|
|
|
|
;;
|
2013-04-25 20:42:35 +00:00
|
|
|
mipsel-arc)
|
|
|
|
boot=cd
|
|
|
|
qemu=qemu-system-mips64el
|
|
|
|
qemuopts="$qemuopts -M magnum -no-reboot"
|
|
|
|
serial_port=arc/multi0/serial0
|
|
|
|
console=console
|
|
|
|
halt_cmd=reboot
|
|
|
|
trim=1
|
|
|
|
;;
|
2012-06-06 10:36:33 +00:00
|
|
|
mipsel-qemu_mips)
|
|
|
|
boot=mipsel_qemu
|
|
|
|
qemu=qemu-system-mipsel
|
2012-06-07 12:14:02 +00:00
|
|
|
qemuopts="$qemuopts -M mips"
|
2012-06-06 10:36:33 +00:00
|
|
|
console=vga_text
|
|
|
|
;;
|
2012-06-15 17:42:25 +00:00
|
|
|
mipsel-loongson)
|
|
|
|
boot=mipsel_fulong2e
|
|
|
|
qemu=qemu-system-mips64el
|
2013-04-30 15:41:32 +00:00
|
|
|
qemuopts="$qemuopts -M fulong2e"
|
2012-06-15 17:42:25 +00:00
|
|
|
console=
|
|
|
|
trim=1
|
|
|
|
;;
|
2012-06-06 10:36:33 +00:00
|
|
|
i386-coreboot)
|
|
|
|
boot=coreboot
|
|
|
|
qemu=qemu-system-i386
|
|
|
|
console=vga_text
|
|
|
|
;;
|
|
|
|
i386-multiboot)
|
|
|
|
boot=cd
|
|
|
|
qemu=qemu-system-i386
|
|
|
|
console=vga_text;;
|
|
|
|
|
|
|
|
i386-ieee1275)
|
2013-04-11 23:29:45 +00:00
|
|
|
boot=hd
|
2012-06-06 10:36:33 +00:00
|
|
|
qemu=qemu-system-i386
|
2013-04-11 23:29:45 +00:00
|
|
|
console=console
|
|
|
|
trim=1
|
2013-04-27 00:00:16 +00:00
|
|
|
disk=hdb
|
2013-04-11 23:29:45 +00:00
|
|
|
;;
|
2012-06-06 10:36:33 +00:00
|
|
|
i386-qemu)
|
|
|
|
boot=qemu
|
|
|
|
qemu=qemu-system-i386
|
|
|
|
console=vga_text;;
|
|
|
|
|
|
|
|
i386-pc)
|
|
|
|
boot=cd
|
|
|
|
qemu=qemu-system-i386
|
2013-04-26 12:33:31 +00:00
|
|
|
console=console
|
|
|
|
netbootext=0
|
|
|
|
;;
|
2012-06-06 10:36:33 +00:00
|
|
|
|
|
|
|
i386-efi)
|
|
|
|
qemu=qemu-system-i386
|
|
|
|
boot=cd
|
2012-06-07 14:33:17 +00:00
|
|
|
console=console
|
|
|
|
trim=1
|
|
|
|
;;
|
2012-06-06 10:36:33 +00:00
|
|
|
x86_64-efi)
|
|
|
|
qemu=qemu-system-x86_64
|
|
|
|
boot=cd
|
2012-06-07 14:33:17 +00:00
|
|
|
console=console
|
|
|
|
trim=1
|
|
|
|
;;
|
2012-06-06 10:36:33 +00:00
|
|
|
*)
|
|
|
|
boot=hd
|
|
|
|
qemu=qemu-system-i386
|
|
|
|
console=console;;
|
|
|
|
esac
|
2010-01-17 22:36:45 +00:00
|
|
|
|
2013-04-26 12:33:31 +00:00
|
|
|
timeout=60
|
2013-04-27 17:44:00 +00:00
|
|
|
mkimage_extra_arg=
|
2013-04-26 12:33:31 +00:00
|
|
|
|
2010-01-08 09:49:10 +00:00
|
|
|
# Check the arguments.
|
|
|
|
for option in "$@"; do
|
|
|
|
case "$option" in
|
|
|
|
-h | --help)
|
|
|
|
usage
|
|
|
|
exit 0 ;;
|
|
|
|
-v | --version)
|
|
|
|
echo "$0 (GNU GRUB ${PACKAGE_VERSION})"
|
|
|
|
exit 0 ;;
|
2012-06-07 14:33:17 +00:00
|
|
|
--trim)
|
|
|
|
trim=1
|
|
|
|
;;
|
2010-01-08 09:49:10 +00:00
|
|
|
--modules=*)
|
|
|
|
ms=`echo "$option" | sed -e 's/--modules=//' -e 's/,/ /g'`
|
|
|
|
modules="$modules $ms" ;;
|
2010-01-17 22:36:45 +00:00
|
|
|
--files=*)
|
|
|
|
fls=`echo "$option" | sed -e 's/--files=//' -e 's/,/ /g'`
|
|
|
|
files="$files $fls" ;;
|
2013-04-26 12:33:31 +00:00
|
|
|
--mkrescue-arg=*)
|
|
|
|
mkr=`echo "$option" | sed -e 's/--mkrescue-arg=//' -e 's/,/ /g'`
|
|
|
|
mkrescue_args="$mkrescue_args $mkr" ;;
|
2010-01-17 22:36:45 +00:00
|
|
|
--qemu=*)
|
|
|
|
qemu=`echo "$option" | sed -e 's/--qemu=//' -e 's/,/ /g'`;;
|
2013-04-26 12:33:31 +00:00
|
|
|
--pseries)
|
|
|
|
qemu=qemu-system-ppc64
|
|
|
|
serial_port=ieee1275/hvterm
|
|
|
|
serial_null=
|
2013-04-27 12:11:12 +00:00
|
|
|
qemuopts="$qemuopts -M pseries -no-reboot"
|
2013-04-26 12:33:31 +00:00
|
|
|
trim=1
|
|
|
|
;;
|
2010-01-08 09:49:10 +00:00
|
|
|
--qemu-opts=*)
|
|
|
|
qs=`echo "$option" | sed -e 's/--qemu-opts=//'`
|
|
|
|
qemuopts="$qemuopts $qs" ;;
|
2013-04-27 00:00:16 +00:00
|
|
|
--disk=*)
|
|
|
|
dsk=`echo "$option" | sed -e 's/--disk=//'`
|
|
|
|
if [ ${grub_modinfo_platform} = emu ]; then
|
|
|
|
echo "(hd$disk) $dsk" >> "$device_map"
|
|
|
|
disk="$((disk+1))"
|
|
|
|
else
|
|
|
|
if [ $disk = error ]; then
|
|
|
|
echo "Too many disks" 1>&2
|
|
|
|
exit 1;
|
|
|
|
fi
|
|
|
|
qemuopts="$qemuopts -$disk $dsk"
|
|
|
|
if [ "$disk" = hda ]; then
|
|
|
|
disk=hdb;
|
|
|
|
elif [ "$disk" = hdb ]; then
|
|
|
|
# CDROM is hdc
|
|
|
|
disk=hdd
|
|
|
|
elif [ "$disk" = hdd ]; then
|
|
|
|
# CDROM is hdc
|
|
|
|
disk=error
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
;;
|
2013-04-26 12:33:31 +00:00
|
|
|
--timeout=*)
|
|
|
|
timeout=`echo "$option" | sed -e 's/--timeout=//'`
|
|
|
|
;;
|
2013-04-27 17:44:00 +00:00
|
|
|
|
|
|
|
# Intentionally undocumented
|
|
|
|
--grub-mkimage-extra)
|
|
|
|
mkimage_extra_arg="$mkimage_extra_arg `argument $option "$@"`"; shift ;;
|
|
|
|
--grub-mkimage-extra=*)
|
|
|
|
mkimage_extra_arg="$mkimage_extra_arg `echo "$option" | sed 's/--grub-mkimage-extra=//'`" ;;
|
|
|
|
|
2010-01-12 05:24:37 +00:00
|
|
|
--boot=*)
|
|
|
|
dev=`echo "$option" | sed -e 's/--boot=//'`
|
2010-04-27 08:37:27 +00:00
|
|
|
if [ "$dev" = "fd" ] ; then boot=fd;
|
|
|
|
elif [ "$dev" = "hd" ] ; then boot=hd;
|
|
|
|
elif [ "$dev" = "cd" ] ; then boot=cd;
|
2010-09-02 15:15:53 +00:00
|
|
|
elif [ "$dev" = "net" ] ; then boot=net;
|
2010-05-01 14:33:22 +00:00
|
|
|
elif [ "$dev" = "qemu" ] ; then boot=qemu;
|
|
|
|
elif [ "$dev" = "coreboot" ] ; then boot=coreboot;
|
2012-06-06 10:36:33 +00:00
|
|
|
elif [ "$dev" = "mips_qemu" ] ; then boot=mips_qemu;
|
2012-06-15 17:42:25 +00:00
|
|
|
elif [ "$dev" = "mipsel_qemu" ] ; then boot=mipsel_qemu;
|
|
|
|
elif [ "$dev" = "mipsel_fulong2e" ] ; then boot=mipsel_fulong2e;
|
2010-01-12 05:24:37 +00:00
|
|
|
else
|
|
|
|
echo "Unrecognized boot method \`$dev'" 1>&2
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
fi ;;
|
2010-01-08 09:49:10 +00:00
|
|
|
-*)
|
|
|
|
echo "Unrecognized option \`$option'" 1>&2
|
|
|
|
usage
|
2010-01-12 05:24:37 +00:00
|
|
|
exit 1 ;;
|
2010-01-08 09:49:10 +00:00
|
|
|
*)
|
|
|
|
if [ "x${source}" != x ] ; then
|
|
|
|
echo "too many parameters at the end" 1>&2
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
source="${option}" ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
if [ "x${source}" = x ] ; then
|
2010-10-18 20:50:01 +00:00
|
|
|
tmpfile=`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` || exit 1
|
2010-07-07 15:51:26 +00:00
|
|
|
while read REPLY; do
|
2010-07-22 21:27:02 +00:00
|
|
|
echo "$REPLY" >> ${tmpfile}
|
2010-01-12 05:24:37 +00:00
|
|
|
done
|
|
|
|
source=${tmpfile}
|
|
|
|
fi
|
|
|
|
|
2010-10-18 20:50:01 +00:00
|
|
|
cfgfile=`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` || exit 1
|
2010-01-08 09:49:10 +00:00
|
|
|
cat <<EOF >${cfgfile}
|
|
|
|
grubshell=yes
|
2013-04-12 12:52:05 +00:00
|
|
|
EOF
|
2013-04-27 00:00:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
if [ "${grub_modinfo_platform}" != emu ]; then
|
|
|
|
echo insmod serial >>${cfgfile}
|
|
|
|
fi
|
|
|
|
|
2013-04-12 12:52:05 +00:00
|
|
|
if [ "${grub_modinfo_target_cpu}-${grub_modinfo_platform}" = powerpc-ieee1275 ]; then
|
|
|
|
echo insmod escc >>${cfgfile}
|
|
|
|
fi
|
2013-04-27 00:00:16 +00:00
|
|
|
if [ "${grub_modinfo_platform}" != emu ]; then
|
|
|
|
echo "serial ${serial_port}" >>${cfgfile}
|
|
|
|
term="serial_${serial_port}"
|
|
|
|
else
|
|
|
|
term=console
|
|
|
|
fi
|
|
|
|
|
2013-04-12 12:52:05 +00:00
|
|
|
cat <<EOF >>${cfgfile}
|
2013-04-27 00:00:16 +00:00
|
|
|
terminfo -g 255x255 ${term} dumb
|
|
|
|
terminal_input ${term}
|
|
|
|
terminal_output ${term}
|
2010-01-08 09:49:10 +00:00
|
|
|
EOF
|
|
|
|
|
2012-06-07 14:33:17 +00:00
|
|
|
trim_head=664cbea8-132f-4770-8aa4-1696d59ac35c
|
|
|
|
|
|
|
|
if [ $trim = 1 ]; then
|
|
|
|
echo "echo $trim_head" >>${cfgfile}
|
|
|
|
fi
|
|
|
|
|
2010-10-18 20:50:01 +00:00
|
|
|
rom_directory=`mktemp -d "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` || exit 1
|
2010-05-01 14:33:22 +00:00
|
|
|
|
2010-01-08 09:49:10 +00:00
|
|
|
for mod in ${modules}
|
|
|
|
do
|
2010-01-12 05:24:37 +00:00
|
|
|
echo "insmod ${mod}" >> ${cfgfile}
|
2010-01-08 09:49:10 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
cat <<EOF >>${cfgfile}
|
2013-04-29 10:25:57 +00:00
|
|
|
source "\$prefix/testcase.cfg"
|
2010-12-23 11:51:18 +00:00
|
|
|
# Stop serial output to suppress "ACPI shutdown failed" error.
|
2010-01-08 09:49:10 +00:00
|
|
|
EOF
|
2012-06-15 17:42:25 +00:00
|
|
|
if [ x$console != x ]; then
|
|
|
|
echo "terminal_output $console" >>${cfgfile}
|
|
|
|
fi
|
2012-06-22 19:59:10 +00:00
|
|
|
echo "${halt_cmd}" >>${cfgfile}
|
2010-01-08 09:49:10 +00:00
|
|
|
|
2010-10-18 20:50:01 +00:00
|
|
|
isofile=`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` || exit 1
|
2013-04-27 00:00:16 +00:00
|
|
|
if [ x$boot != xnet ] && [ x$boot != xemu ]; then
|
2013-04-12 12:52:05 +00:00
|
|
|
pkgdatadir="@builddir@" sh "@builddir@/grub-mkrescue" "--grub-mkimage=${builddir}/grub-mkimage" "--grub-render-label=${builddir}/grub-render-label" "--output=${isofile}" "--override-directory=${builddir}/grub-core" \
|
2013-04-27 17:44:00 +00:00
|
|
|
--rom-directory="${rom_directory}" "--grub-mkimage-extra=$mkimage_extra_arg" ${mkrescue_args} \
|
2012-01-24 12:17:36 +00:00
|
|
|
"/boot/grub/grub.cfg=${cfgfile}" "/boot/grub/testcase.cfg=${source}" \
|
2010-09-02 15:15:53 +00:00
|
|
|
${files} >/dev/null 2>&1
|
|
|
|
fi
|
2010-04-27 08:37:27 +00:00
|
|
|
if [ x$boot = xhd ]; then
|
2013-04-26 12:33:31 +00:00
|
|
|
if [ "${grub_modinfo_target_cpu}-${grub_modinfo_platform}" = mips-arc ]; then
|
|
|
|
device=hdb
|
|
|
|
else
|
|
|
|
device=hda
|
|
|
|
fi
|
2010-05-01 14:33:22 +00:00
|
|
|
bootdev="-boot c"
|
2010-01-17 22:36:45 +00:00
|
|
|
fi
|
2010-04-27 08:37:27 +00:00
|
|
|
if [ x$boot = xcd ]; then
|
|
|
|
device=cdrom
|
2010-05-01 14:33:22 +00:00
|
|
|
bootdev="-boot d"
|
2010-04-27 08:37:27 +00:00
|
|
|
fi
|
|
|
|
if [ x$boot = xfd ]; then
|
|
|
|
device=fda
|
2010-05-01 14:33:22 +00:00
|
|
|
bootdev="-boot a"
|
|
|
|
fi
|
2010-01-12 05:24:37 +00:00
|
|
|
|
2010-05-01 14:33:22 +00:00
|
|
|
if [ x$boot = xqemu ]; then
|
|
|
|
bootdev="-bios ${rom_directory}/qemu.img"
|
|
|
|
device=cdrom
|
2010-04-27 08:37:27 +00:00
|
|
|
fi
|
2010-01-12 05:24:37 +00:00
|
|
|
|
2012-06-06 10:36:33 +00:00
|
|
|
if [ x$boot = xmipsel_qemu ]; then
|
|
|
|
bootdev="-kernel ${rom_directory}/mipsel-qemu_mips.elf"
|
|
|
|
device=cdrom
|
|
|
|
fi
|
|
|
|
|
2012-06-15 17:42:25 +00:00
|
|
|
if [ x$boot = xmipsel_fulong2e ]; then
|
|
|
|
bootdev="-kernel ${rom_directory}/mipsel-loongson.elf -append machtype=lemote-fuloong-2e"
|
|
|
|
device=cdrom
|
|
|
|
fi
|
|
|
|
|
2012-06-06 10:36:33 +00:00
|
|
|
if [ x$boot = xmips_qemu ]; then
|
|
|
|
bootdev="-kernel ${rom_directory}/mips-qemu_mips.elf"
|
|
|
|
device=cdrom
|
|
|
|
fi
|
|
|
|
|
2010-05-01 14:33:22 +00:00
|
|
|
if [ x$boot = xcoreboot ]; then
|
2010-10-18 20:50:01 +00:00
|
|
|
imgfile=`mktemp "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` || exit 1
|
2010-05-01 14:33:22 +00:00
|
|
|
cp "${GRUB_COREBOOT_ROM}" "${imgfile}"
|
|
|
|
"${GRUB_CBFSTOOL}" "${imgfile}" add-payload "${rom_directory}/coreboot.elf" fallback/payload
|
|
|
|
bootdev="-bios ${imgfile}"
|
|
|
|
device=cdrom
|
|
|
|
fi
|
2010-01-08 09:49:10 +00:00
|
|
|
|
2013-04-26 12:33:31 +00:00
|
|
|
if [ "${grub_modinfo_target_cpu}-${grub_modinfo_platform}" = mipsel-arc ]; then
|
|
|
|
case "$boot" in
|
|
|
|
hd)
|
|
|
|
bootdev="-global ds1225y.filename=$GRUB_QEMU_MAGNUM_NVRAM_DIR/disk" ;;
|
|
|
|
*)
|
|
|
|
bootdev="-global ds1225y.filename=$GRUB_QEMU_MAGNUM_NVRAM_DIR/cdrom";;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2012-06-07 14:33:17 +00:00
|
|
|
do_trim ()
|
|
|
|
{
|
|
|
|
if [ $trim = 1 ]; then
|
|
|
|
awk '{ if (have_head == 1) print $0; } /664cbea8-132f-4770-8aa4-1696d59ac35c/ { have_head=1; }'
|
|
|
|
else
|
|
|
|
cat
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2010-09-02 15:15:53 +00:00
|
|
|
if [ x$boot = xnet ]; then
|
2010-10-18 20:50:01 +00:00
|
|
|
netdir=`mktemp -d "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX"` || exit 1
|
2013-04-26 12:33:31 +00:00
|
|
|
pkgdatadir="@builddir@" sh "@builddir@/grub-mknetdir" "--grub-mkimage=${builddir}/grub-mkimage" "--directory=${builddir}/grub-core" "--net-directory=$netdir" ${mkrescue_args} > /dev/null
|
2012-01-24 12:17:36 +00:00
|
|
|
cp "${cfgfile}" "$netdir/boot/grub/grub.cfg"
|
|
|
|
cp "${source}" "$netdir/boot/grub/testcase.cfg"
|
2013-04-26 12:33:31 +00:00
|
|
|
timeout -s KILL $timeout "${qemu}" ${qemuopts} -nographic ${serial_null} -serial file:/dev/stdout -monitor file:/dev/null -boot n -net "user,tftp=$netdir,bootfile=/boot/grub/${grub_modinfo_target_cpu}-${grub_modinfo_platform}/core.$netbootext" -net nic | cat | tr -d "\r" | do_trim
|
2013-04-27 00:00:16 +00:00
|
|
|
elif [ x$boot = xemu ]; then
|
|
|
|
grubdir="$(mktemp -d "${TMPDIR:-/tmp}/tmp.XXXXXXXXXX")"
|
2013-05-02 12:39:03 +00:00
|
|
|
mkdir -p "$grubdir/fonts"
|
2013-05-03 12:09:55 +00:00
|
|
|
mkdir -p "$grubdir/themes"
|
2013-05-04 12:00:14 +00:00
|
|
|
mkdir -p "$grubdir/locale"
|
2013-05-02 12:39:03 +00:00
|
|
|
cp "@builddir@/"unicode.pf2 "$grubdir/fonts/unicode.pf2"
|
2013-05-03 12:09:55 +00:00
|
|
|
cp -R "@srcdir@/themes/starfield" "$grubdir/themes/starfield"
|
2013-05-04 12:00:14 +00:00
|
|
|
cp -R "@srcdir@/po/"*.gmo "$grubdir/locale/"
|
2013-04-27 00:00:16 +00:00
|
|
|
cp "${cfgfile}" "$grubdir/grub.cfg"
|
|
|
|
cp "${source}" "$grubdir/testcase.cfg"
|
|
|
|
@builddir@/grub-core/grub-emu -m "$device_map" -d "$grubdir" | tr -d "\r" | do_trim
|
2010-09-02 15:15:53 +00:00
|
|
|
else
|
2013-04-26 12:33:31 +00:00
|
|
|
timeout -s KILL $timeout "${qemu}" ${qemuopts} -nographic ${serial_null} -serial file:/dev/stdout -monitor file:/dev/null -${device} ${isofile} ${bootdev} | cat | tr -d "\r" | do_trim
|
2010-09-02 15:15:53 +00:00
|
|
|
fi
|
2010-05-01 14:33:22 +00:00
|
|
|
rm -f "${isofile}" "${imgfile}"
|
|
|
|
rm -rf "${rom_directory}"
|
|
|
|
if [ x$boot = xcoreboot ]; then
|
|
|
|
rm -f "${imgfile}"
|
|
|
|
fi
|
2010-01-08 09:49:10 +00:00
|
|
|
|
2010-05-01 14:33:22 +00:00
|
|
|
rm -f "${tmpfile}" "${cfgfile}"
|
2010-01-08 09:49:10 +00:00
|
|
|
exit 0
|
|
|
|
|
|
|
|
|