summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorLiming Wang <liming.wang@windriver.com>2012-01-04 18:29:17 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-17 14:53:17 +0000
commit523f6b69c61af52b699bd27da460c1e917e7734c (patch)
treeb447461b593448d64a70a66f79678e03eff7d302 /scripts
parent573daf67349d12576fabbdeee403786fc7ef479b (diff)
downloadpoky-523f6b69c61af52b699bd27da460c1e917e7734c.tar.gz
qemuppc: replace emulation of qemuppc from prep to mac99
With this new emulation, existing qemuppc functionality is maintained and other functionality such as framebuffer + sato and NFS boot are added. (From OE-Core rev: 52ea026df141ea23bbab38ad3a9733c15097eaa4) Signed-off-by: Liming Wang <liming.wang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu7
-rwxr-xr-xscripts/runqemu-internal16
2 files changed, 9 insertions, 14 deletions
diff --git a/scripts/runqemu b/scripts/runqemu
index bed6a2948e..ac5facfa21 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -262,7 +262,7 @@ QEMUARM_DEFAULT_FSTYPE=ext3
262QEMUMIPS_DEFAULT_KERNEL=vmlinux-qemumips.bin 262QEMUMIPS_DEFAULT_KERNEL=vmlinux-qemumips.bin
263QEMUMIPS_DEFAULT_FSTYPE=ext3 263QEMUMIPS_DEFAULT_FSTYPE=ext3
264 264
265QEMUPPC_DEFAULT_KERNEL=zImage-qemuppc.bin 265QEMUPPC_DEFAULT_KERNEL=vmlinux-qemuppc.bin
266QEMUPPC_DEFAULT_FSTYPE=ext3 266QEMUPPC_DEFAULT_FSTYPE=ext3
267 267
268AKITA_DEFAULT_KERNEL=zImage-akita.bin 268AKITA_DEFAULT_KERNEL=zImage-akita.bin
@@ -365,11 +365,6 @@ if [ -z "$FSTYPE" ]; then
365 fi 365 fi
366fi 366fi
367 367
368if [ "$FSTYPE" = "nfs" -a "$MACHINE" = "qemuppc" ]; then
369 echo "Error: usermode NFS boot is not available for qemuppc."
370 exit 1
371fi
372
373# FSTYPE is now set for all cases 368# FSTYPE is now set for all cases
374 369
375# Handle cases where a ROOTFS type is given instead of a filename, e.g. 370# Handle cases where a ROOTFS type is given instead of a filename, e.g.
diff --git a/scripts/runqemu-internal b/scripts/runqemu-internal
index 2968ed939c..c55619baa5 100755
--- a/scripts/runqemu-internal
+++ b/scripts/runqemu-internal
@@ -389,13 +389,13 @@ fi
389 389
390if [ "$MACHINE" = "qemuppc" ]; then 390if [ "$MACHINE" = "qemuppc" ]; then
391 QEMU=qemu-system-ppc 391 QEMU=qemu-system-ppc
392 MACHINE_SUBTYPE=prep 392 MACHINE_SUBTYPE=mac99
393 CPU_SUBTYPE=603e 393 CPU_SUBTYPE=G4
394 BIOS=powerpc_rom.bin 394 QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS"
395 QEMU_UI_OPTIONS="$QEMU_UI_OPTIONS -nographic" 395 QEMU_NETWORK_CMD="-net nic,model=pcnet $QEMU_TAP_CMD"
396 if [ "$FSTYPE" = "ext3" -o "$FSTYPE" = "btrfs" ]; then 396 if [ "$FSTYPE" = "ext3" -o "$FSTYPE" = "btrfs" ]; then
397 KERNCMDLINE="root=/dev/hda rw console=ttyS0 3 $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY" 397 KERNCMDLINE="root=/dev/hda rw console=ttyS0 $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY"
398 QEMUOPTIONS="$QEMU_NETWORK_CMD -cpu $CPU_SUBTYPE -M $MACHINE_SUBTYPE -bios $BIOS -hda $ROOTFS -no-reboot $QEMU_UI_OPTIONS" 398 QEMUOPTIONS="$QEMU_NETWORK_CMD -cpu $CPU_SUBTYPE -M $MACHINE_SUBTYPE -hda $ROOTFS -no-reboot $QEMU_UI_OPTIONS"
399 fi 399 fi
400 if [ "$FSTYPE" = "nfs" ]; then 400 if [ "$FSTYPE" = "nfs" ]; then
401 if [ "$NFS_SERVER" = "192.168.7.1" -a ! -d "$NFS_DIR" ]; then 401 if [ "$NFS_SERVER" = "192.168.7.1" -a ! -d "$NFS_DIR" ]; then
@@ -403,8 +403,8 @@ if [ "$MACHINE" = "qemuppc" ]; then
403 cleanup 403 cleanup
404 return 404 return
405 fi 405 fi
406 KERNCMDLINE="root=/dev/nfs console=ttyS0 3 nfsroot=$NFS_SERVER:$NFS_DIR,$UNFS_OPTS rw $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY" 406 KERNCMDLINE="root=/dev/nfs console=ttyS0 nfsroot=$NFS_SERVER:$NFS_DIR,$UNFS_OPTS rw $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY"
407 QEMUOPTIONS="$QEMU_NETWORK_CMD -cpu $CPU_SUBTYPE -M $MACHINE_SUBTYPE -bios $BIOS -no-reboot $QEMU_UI_OPTIONS" 407 QEMUOPTIONS="$QEMU_NETWORK_CMD -cpu $CPU_SUBTYPE -M $MACHINE_SUBTYPE -no-reboot $QEMU_UI_OPTIONS"
408 fi 408 fi
409fi 409fi
410 410