diff options
author | Scott Garman <scott.a.garman@intel.com> | 2012-08-17 10:54:40 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-19 10:44:00 +0100 |
commit | 17d616adffc3514b6778acc6ab5d6da34a7366b5 (patch) | |
tree | 8a5260b0841e905a4e6f05a2605d572bf4717a28 /scripts/runqemu | |
parent | 48a698bf97a47a346d5b7d79c2709301e98b4c2c (diff) | |
download | openembedded-core-17d616adffc3514b6778acc6ab5d6da34a7366b5.tar.gz openembedded-core-17d616adffc3514b6778acc6ab5d6da34a7366b5.tar.bz2 openembedded-core-17d616adffc3514b6778acc6ab5d6da34a7366b5.zip |
runqemu: work with yocto-bsp created kernel filenames
The yocto-bsp tool generates kernels with additional strings within
the filename, e.g. zImage-myqemuarm.bin. Loosen the MACHINE detection
regex to work with these filenames.
Fixes [YOCTO #2890].
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-x | scripts/runqemu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 7e4bcc4e5f..90998aeab4 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -229,7 +229,7 @@ if [ "$FSTYPE" = "nfs" -a -z "$ROOTFS" ]; then fi if [ -z "$MACHINE" ]; then - MACHINE=`basename $KERNEL | sed 's/.*-\(qemux86-64\|qemux86\|qemuarm\|qemumips64\|qemumips\|qemuppc\|qemush4\).*/\1/'` + MACHINE=`basename $KERNEL | sed 's/.*\(qemux86-64\|qemux86\|qemuarm\|qemumips64\|qemumips\|qemuppc\|qemush4\).*/\1/'` if [ -z "$MACHINE" ]; then error "Unable to set MACHINE from kernel filename [$KERNEL]" fi |