bootcheck support
This commit is contained in:
parent
a0c2a0f6ff
commit
ad8e99ec20
8 changed files with 185 additions and 23 deletions
3
tests/boot/linux.cfg
Normal file
3
tests/boot/linux.cfg
Normal file
|
@ -0,0 +1,3 @@
|
|||
linux /linux console=ttyS0 root=/dev/ram0
|
||||
initrd /initrd
|
||||
boot
|
3
tests/boot/linux16.cfg
Normal file
3
tests/boot/linux16.cfg
Normal file
|
@ -0,0 +1,3 @@
|
|||
linux16 /linux console=ttyS0 root=/dev/ram0
|
||||
initrd16 /initrd
|
||||
boot
|
55
tests/boot/linuxinit-i386.S
Normal file
55
tests/boot/linuxinit-i386.S
Normal file
|
@ -0,0 +1,55 @@
|
|||
/*
|
||||
* GRUB -- GRand Unified Bootloader
|
||||
* Copyright (C) 2010 Free Software Foundation, Inc.
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
#define SYSCALL_WRITE 4
|
||||
#define SYSCALL_RESET 88
|
||||
#define SYSCALL_EXIT 1
|
||||
#define SYSCALL_INT 0x80
|
||||
|
||||
#define STDOUT 1
|
||||
#define SHUTDOWN_MAGIC1 0xfee1dead
|
||||
#define SHUTDOWN_MAGIC2 0x28121969
|
||||
#define SHUTDOWN_MAGIC3 0x4321fedc
|
||||
|
||||
.text
|
||||
.global start, _start
|
||||
_start:
|
||||
start:
|
||||
/* write. */
|
||||
movl $SYSCALL_WRITE, %eax
|
||||
movl $STDOUT, %ebx
|
||||
leal message, %ecx
|
||||
movl $(messageend-message), %edx
|
||||
int $SYSCALL_INT
|
||||
|
||||
/* shutdown. */
|
||||
movl $SYSCALL_RESET, %eax
|
||||
movl $SHUTDOWN_MAGIC1, %ebx
|
||||
movl $SHUTDOWN_MAGIC2, %ecx
|
||||
movl $SHUTDOWN_MAGIC3, %edx
|
||||
int $SYSCALL_INT
|
||||
|
||||
/* exit (1). Shouldn't be reached. */
|
||||
movl $SYSCALL_EXIT, %eax
|
||||
movl $1, %ebx
|
||||
int $SYSCALL_INT
|
||||
.data
|
||||
message:
|
||||
.ascii "Boot Test Passed Successfully\n" SUCCESSFUL_BOOT_STRING "\n"
|
||||
messageend:
|
||||
|
54
tests/boot/linuxinit-x86_64.S
Normal file
54
tests/boot/linuxinit-x86_64.S
Normal file
|
@ -0,0 +1,54 @@
|
|||
/*
|
||||
* GRUB -- GRand Unified Bootloader
|
||||
* Copyright (C) 2010 Free Software Foundation, Inc.
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
#define SYSCALL_WRITE 1
|
||||
#define SYSCALL_RESET 169
|
||||
#define SYSCALL_EXIT 60
|
||||
|
||||
#define STDOUT 1
|
||||
#define SHUTDOWN_MAGIC1 0xfee1dead
|
||||
#define SHUTDOWN_MAGIC2 0x28121969
|
||||
#define SHUTDOWN_MAGIC3 0x4321fedc
|
||||
|
||||
.text
|
||||
.global start, _start
|
||||
_start:
|
||||
start:
|
||||
/* write. */
|
||||
movq $SYSCALL_WRITE, %rax
|
||||
movq $STDOUT, %rdi
|
||||
leaq message, %rsi
|
||||
movq $(messageend-message), %rdx
|
||||
syscall
|
||||
|
||||
/* shutdown. */
|
||||
movq $SYSCALL_RESET, %rax
|
||||
movq $SHUTDOWN_MAGIC1, %rdi
|
||||
movq $SHUTDOWN_MAGIC2, %rsi
|
||||
movq $SHUTDOWN_MAGIC3, %rdx
|
||||
syscall
|
||||
|
||||
/* exit(1). Shouldn't be reached. */
|
||||
movq $SYSCALL_EXIT, %rax
|
||||
movq $1, %rdi
|
||||
syscall
|
||||
.data
|
||||
message:
|
||||
.ascii "Boot Test Passed Successfully\n" SUCCESSFUL_BOOT_STRING "\n"
|
||||
messageend:
|
||||
|
|
@ -44,7 +44,9 @@ Run GRUB script in a Qemu instance.
|
|||
-v, --version print the version information and exit
|
||||
--boot=[fd|hd|cd] boot method for Qemu instance
|
||||
--modules=MODULES pre-load specified modules MODULES
|
||||
--qemu=FILE Name of qemu binary
|
||||
--qemu-opts=OPTIONS extra options to pass to Qemu instance
|
||||
--files=FILES add files to the image
|
||||
|
||||
$0 runs input GRUB script or SOURCE file in a Qemu instance and prints
|
||||
its output.
|
||||
|
@ -53,6 +55,9 @@ Report bugs to <bug-grub@gnu.org>.
|
|||
EOF
|
||||
}
|
||||
|
||||
boot=bios-hd
|
||||
qemu=qemu-system-i386
|
||||
|
||||
# Check the arguments.
|
||||
for option in "$@"; do
|
||||
case "$option" in
|
||||
|
@ -65,14 +70,19 @@ for option in "$@"; do
|
|||
--modules=*)
|
||||
ms=`echo "$option" | sed -e 's/--modules=//' -e 's/,/ /g'`
|
||||
modules="$modules $ms" ;;
|
||||
--files=*)
|
||||
fls=`echo "$option" | sed -e 's/--files=//' -e 's/,/ /g'`
|
||||
files="$files $fls" ;;
|
||||
--qemu=*)
|
||||
qemu=`echo "$option" | sed -e 's/--qemu=//' -e 's/,/ /g'`;;
|
||||
--qemu-opts=*)
|
||||
qs=`echo "$option" | sed -e 's/--qemu-opts=//'`
|
||||
qemuopts="$qemuopts $qs" ;;
|
||||
--boot=*)
|
||||
dev=`echo "$option" | sed -e 's/--boot=//'`
|
||||
if [ "$dev" = "fd" ] ; then bootdev=a;
|
||||
elif [ "$dev" = "hd" ] ; then bootdev=c;
|
||||
elif [ "$dev" = "cd" ] ; then bootdev=d;
|
||||
if [ "$dev" = "bios-fd" ] ; then boot=bios-fd;
|
||||
elif [ "$dev" = "bios-hd" ] ; then boot=bios-hd;
|
||||
elif [ "$dev" = "bios-cd" ] ; then boot=bios-cd;
|
||||
else
|
||||
echo "Unrecognized boot method \`$dev'" 1>&2
|
||||
usage
|
||||
|
@ -100,10 +110,6 @@ if [ "x${source}" = x ] ; then
|
|||
source=${tmpfile}
|
||||
fi
|
||||
|
||||
if [ "x${bootdev}" = x ] ; then
|
||||
bootdev=c # default is boot as disk image
|
||||
fi
|
||||
|
||||
cfgfile=`mktemp`
|
||||
cat <<EOF >${cfgfile}
|
||||
grubshell=yes
|
||||
|
@ -123,23 +129,28 @@ source /boot/grub/testcase.cfg
|
|||
halt
|
||||
EOF
|
||||
|
||||
isofile=`mktemp`
|
||||
grub-mkrescue --output=${isofile} --override-directory=${builddir} \
|
||||
/boot/grub/grub.cfg=${cfgfile} /boot/grub/testcase.cfg=${source} \
|
||||
>/dev/null 2>&1
|
||||
if [ x$boot = xbios-hd ] || [ x$boot = xbios-fd ] || [ x$boot = xbios-cd ]; then
|
||||
isofile=`mktemp`
|
||||
grub-mkrescue --output=${isofile} --override-directory=${builddir} \
|
||||
/boot/grub/grub.cfg=${cfgfile} /boot/grub/testcase.cfg=${source} \
|
||||
${files} >/dev/null 2>&1
|
||||
if [ x$boot = xbios-hd ]; then
|
||||
device=hda
|
||||
bootdev=c
|
||||
fi
|
||||
if [ x$boot = xbios-cd ]; then
|
||||
device=cdrom
|
||||
bootdev=d
|
||||
fi
|
||||
if [ x$boot = xbios-fd ]; then
|
||||
device=fda
|
||||
bootdev=a
|
||||
fi
|
||||
${qemu} ${qemuopts} -nographic -serial file:/dev/stdout -monitor file:/dev/null -${device} ${isofile} -boot ${bootdev} | tr -d "\r"
|
||||
rm -f ${isofile}
|
||||
fi
|
||||
|
||||
hdafile=`mktemp`
|
||||
cp ${isofile} ${hdafile}
|
||||
|
||||
fdafile=`mktemp`
|
||||
cp ${isofile} ${fdafile}
|
||||
|
||||
outfile=`mktemp`
|
||||
qemu-system-i386 ${qemuopts} -nographic -serial stdio -hda ${hdafile} -fda ${fdafile} -cdrom ${isofile} -boot ${bootdev} | tr -d "\r" >${outfile}
|
||||
|
||||
cat $outfile
|
||||
|
||||
rm -f ${tmpfile} ${outfile} ${cfgfile} ${isofile} ${hdafile} ${fdafile}
|
||||
rm -f ${tmpfile} ${cfgfile}
|
||||
exit 0
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue