@ -107,14 +107,14 @@ identify_qemu () {
# identify_qemu_append qemu-cmd
#
# Output arguments for the qemu "-append" string based on CPU type
# and the RCU _QEMU_INTERACTIVE environment variable.
# and the TORTURE _QEMU_INTERACTIVE environment variable.
identify_qemu_append ( ) {
case " $1 " in
qemu-system-x86_64| qemu-system-i386)
echo noapic selinux = 0 initcall_debug debug
; ;
esac
if test -n " $RCU _QEMU_INTERACTIVE "
if test -n " $TORTURE _QEMU_INTERACTIVE "
then
echo root = /dev/sda
else
@ -125,7 +125,7 @@ identify_qemu_append () {
# identify_qemu_args qemu-cmd serial-file
#
# Output arguments for qemu arguments based on the RCU_QEMU_MAC
# and RCU _QEMU_INTERACTIVE environment variables.
# and TORTURE _QEMU_INTERACTIVE environment variables.
identify_qemu_args ( ) {
case " $1 " in
qemu-system-x86_64| qemu-system-i386)
@ -133,17 +133,17 @@ identify_qemu_args () {
qemu-system-ppc64)
echo -enable-kvm -M pseries -cpu POWER7 -nodefaults
echo -device spapr-vscsi
if test -n " $RCU _QEMU_INTERACTIVE " -a -n " $RCU_QEMU_MAC "
if test -n " $TORTURE _QEMU_INTERACTIVE " -a -n " $RCU_QEMU_MAC "
then
echo -device spapr-vlan,netdev= net0,mac= $RCU_QEMU_MAC
echo -netdev bridge,br= br0,id= net0
elif test -n " $RCU _QEMU_INTERACTIVE "
elif test -n " $TORTURE _QEMU_INTERACTIVE "
then
echo -net nic -net user
fi
; ;
esac
if test -n " $RCU _QEMU_INTERACTIVE "
if test -n " $TORTURE _QEMU_INTERACTIVE "
then
echo -monitor stdio -serial pty -S
else