1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 12:29:55 +00:00

runqemu/mips: adjust runqemu script to support mipsel machine

(From OE-Core rev: a12e2409af246d4c1d0e0c9a2457fb9c850bd8ca)

Signed-off-by: Dennis Lan <dennis.yxun@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Dennis Lan
2012-07-11 07:05:02 +00:00
committed by Richard Purdie
parent 6c401a907c
commit 521cf20942
2 changed files with 11 additions and 7 deletions
+7 -6
View File
@@ -236,6 +236,7 @@ fi
case "$MACHINE" in
"qemuarm") ;;
"qemumips") ;;
"qemumipsel") ;;
"qemumips64") ;;
"qemush4") ;;
"qemuppc") ;;
@@ -375,12 +376,12 @@ if [ "$MACHINE" = "spitz" ]; then
fi
fi
if [ "$MACHINE" = "qemumips" -o "$MACHINE" = "qemumips64" ]; then
if [ "$MACHINE" = "qemumips64" ]; then
QEMU=qemu-system-mips64
else
QEMU=qemu-system-mips
fi
if [ "$MACHINE" = "qemumips" -o "$MACHINE" = "qemumipsel" -o "$MACHINE" = "qemumips64" ]; then
case "$MACHINE" in
qemumips) QEMU=qemu-system-mips ;;
qemumipsel) QEMU=qemu-system-mipsel ;;
qemumips64) QEMU=qemu-system-mips64 ;;
esac
MACHINE_SUBTYPE=malta
QEMU_UI_OPTIONS="-vga cirrus $QEMU_UI_OPTIONS"
if [ "$FSTYPE" = "ext3" -o "$FSTYPE" = "btrfs" ]; then