diff options
author | Ross Burton <ross@openedhand.com> | 2007-01-18 11:38:52 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2007-01-18 11:38:52 +0000 |
commit | 85788ed18f20fc0321b678b288fac9d8d3abebcf (patch) | |
tree | 9eae6ebca9ea2321778d879a18bc8965873cb57e | |
parent | 9c4684a670a25975d9aee1ffb40e5e720ce7611d (diff) | |
download | openembedded-core-85788ed18f20fc0321b678b288fac9d8d3abebcf.tar.gz openembedded-core-85788ed18f20fc0321b678b288fac9d8d3abebcf.tar.bz2 openembedded-core-85788ed18f20fc0321b678b288fac9d8d3abebcf.zip |
Fix regexp to work with qemux86
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1163 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rwxr-xr-x | scripts/poky-qemu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/poky-qemu b/scripts/poky-qemu index c74a16f4a6..6c53b07723 100755 --- a/scripts/poky-qemu +++ b/scripts/poky-qemu @@ -37,7 +37,7 @@ else fi if [ "x$MACHINE" = "x" ]; then - MACHINE=`basename $ZIMAGE | sed -r -e 's#.*-([a-z]+)-?[0-9]*..*#\1#'` + MACHINE=`basename $ZIMAGE | sed -r -e 's#.*-([a-z]+[0-9]*)-?[0-9]*..*#\1#'` fi INTERNAL_SCRIPT=`which poky-qemu-internal` |