From cf9ecbaa6de3b619c586f3487f58b067c02d8177 Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Tue, 22 Jul 2008 11:26:14 +0000 Subject: poky-qemu-internal: added support for qemuarmv6/7 git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4927 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- scripts/poky-qemu-internal | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'scripts/poky-qemu-internal') diff --git a/scripts/poky-qemu-internal b/scripts/poky-qemu-internal index c5f38e74d3..aede0d6983 100755 --- a/scripts/poky-qemu-internal +++ b/scripts/poky-qemu-internal @@ -56,6 +56,8 @@ fi case "$MACHINE" in "qemuarm") ;; + "qemuarmv6") ;; + "qemuarmv7") ;; "qemux86") ;; "akita") ;; "spitz") ;; @@ -84,7 +86,7 @@ if [ -e /proc/sys/vm/mmap_min_addr ]; then fi fi -if [ "$MACHINE" = "qemuarm" ]; then +if [ "$MACHINE" = "qemuarm" -o "$MACHINE" = "qemuarmv6" -o "$MACHINE" = "qemuarmv7" ]; then QEMU=qemu-system-arm if [ "$TYPE" = "ext2" ]; then KERNCMDLINE="root=/dev/sda console=ttyAMA0 console=tty0 mem=$QEMU_MEMORY" @@ -101,6 +103,12 @@ if [ "$MACHINE" = "qemuarm" ]; then KERNCMDLINE="root=/dev/nfs nfsroot=192.168.7.1:$HDIMAGE rw $KERNEL_NETWORK_CMD mem=$QEMU_MEMORY" QEMUOPTIONS="$QEMU_NETWORK_CMD -M versatilepb -no-reboot" fi + if [ "$MACHINE" = "qemuarmv6" ]; then + QEMUOPTIONS="$QEMUOPTIONS -cpu arm1136" + fi + if [ "$MACHINE" = "qemuarmv7" ]; then + QEMUOPTIONS="$QEMUOPTIONS -cpu cortex-a8" + fi fi if [ "$MACHINE" = "qemux86" ]; then -- cgit 1.2.3-korg