]> code.ossystems Code Review - openembedded-core.git/commitdiff
poky-qemu-internal: added support for qemuarmv6/7
authorMarcin Juszkiewicz <hrw@openedhand.com>
Tue, 22 Jul 2008 11:26:14 +0000 (11:26 +0000)
committerMarcin Juszkiewicz <hrw@openedhand.com>
Tue, 22 Jul 2008 11:26:14 +0000 (11:26 +0000)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4927 311d38ba-8fff-0310-9ca6-ca027cbcb966

scripts/poky-qemu-internal

index c5f38e74d31b63d288f770dd63603e21f7aa2d2a..aede0d69832e7473f674bc1f053944602965b683 100755 (executable)
@@ -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