diff options
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-x | scripts/runqemu | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 406092be3c..5ad83dd215 100755 --- a/scripts/runqemu +++ b/scripts/runqemu | |||
@@ -107,7 +107,8 @@ KVM_ENABLED="no" | |||
107 | while true; do | 107 | while true; do |
108 | arg=${1} | 108 | arg=${1} |
109 | case "$arg" in | 109 | case "$arg" in |
110 | "qemux86" | "qemux86-64" | "qemuarm" | "qemumips" | "qemumipsel" | "qemumips64" | "qemush4" | "qemuppc") | 110 | "qemux86" | "qemux86-64" | "qemuarm" | "qemumips" | "qemumipsel" | \ |
111 | "qemumips64" | "qemush4" | "qemuppc" | "qemuzynq") | ||
111 | [ -z "$MACHINE" ] && MACHINE=$arg || \ | 112 | [ -z "$MACHINE" ] && MACHINE=$arg || \ |
112 | error "conflicting MACHINE types [$MACHINE] and [$arg]" | 113 | error "conflicting MACHINE types [$MACHINE] and [$arg]" |
113 | ;; | 114 | ;; |
@@ -308,6 +309,9 @@ QEMUSH4_DEFAULT_FSTYPE=ext3 | |||
308 | QEMUPPC_DEFAULT_KERNEL=vmlinux-qemuppc.bin | 309 | QEMUPPC_DEFAULT_KERNEL=vmlinux-qemuppc.bin |
309 | QEMUPPC_DEFAULT_FSTYPE=ext3 | 310 | QEMUPPC_DEFAULT_FSTYPE=ext3 |
310 | 311 | ||
312 | QEMUZYNQ_DEFAULT_KERNEL=uImage | ||
313 | QEMUZYNQ_DEFAULT_FSTYPE=cpio | ||
314 | |||
311 | AKITA_DEFAULT_KERNEL=zImage-akita.bin | 315 | AKITA_DEFAULT_KERNEL=zImage-akita.bin |
312 | AKITA_DEFAULT_FSTYPE=jffs2 | 316 | AKITA_DEFAULT_FSTYPE=jffs2 |
313 | 317 | ||