diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/runqemu | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 305e46aebf..fc7363fdd8 100755 --- a/scripts/runqemu +++ b/scripts/runqemu | |||
| @@ -300,14 +300,15 @@ findimage() { | |||
| 300 | # recently created one is the one we most likely want to boot. | 300 | # recently created one is the one we most likely want to boot. |
| 301 | filenames=`ls -t $where/*-image*$machine.$extension 2>/dev/null | xargs` | 301 | filenames=`ls -t $where/*-image*$machine.$extension 2>/dev/null | xargs` |
| 302 | for name in $filenames; do | 302 | for name in $filenames; do |
| 303 | if [ "$name" =~ core-image-sato-sdk -o \ | 303 | case $name in |
| 304 | "$name" =~ core-image-sato -o \ | 304 | *core-image-sato* | \ |
| 305 | "$name" =~ core-image-lsb -o \ | 305 | *core-image-lsb* | \ |
| 306 | "$name" =~ core-image-basic -o \ | 306 | *core-image-basic* | \ |
| 307 | "$name" =~ core-image-minimal ]; then | 307 | *core-image-minimal* ) |
| 308 | ROOTFS=$name | 308 | ROOTFS=$name |
| 309 | return | 309 | return |
| 310 | fi | 310 | ;; |
| 311 | esac | ||
| 311 | done | 312 | done |
| 312 | 313 | ||
| 313 | echo "Couldn't find a $machine rootfs image in $where." | 314 | echo "Couldn't find a $machine rootfs image in $where." |
