#!/bin/sh
qemu-x86_64 -r 2.6.32 "$@"
rc=$?
if [ $rc = 255 ]; then
	qemu-i386 "$@"
	rc=$?
fi
exit $rc
