diff options
-rwxr-xr-x | scripts/runqemu | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 04dc3b0571..b49678502a 100755 --- a/scripts/runqemu +++ b/scripts/runqemu | |||
@@ -224,13 +224,13 @@ fi | |||
224 | 224 | ||
225 | if [ -z "$MACHINE" ]; then | 225 | if [ -z "$MACHINE" ]; then |
226 | if [ "x$FSTYPE" = "xvmdk" ]; then | 226 | if [ "x$FSTYPE" = "xvmdk" ]; then |
227 | MACHINE=`basename $VM | sed 's/.*\(qemux86-64\|qemux86\|qemuarm\|qemumips64\|qemumips\|qemuppc\|qemush4\).*/\1/'` | 227 | MACHINE=`basename $VM | sed -n 's/.*\(qemux86-64\|qemux86\|qemuarm\|qemumips64\|qemumips\|qemuppc\|qemush4\).*/\1/p'` |
228 | if [ -z "$MACHINE" ]; then | 228 | if [ -z "$MACHINE" ]; then |
229 | error "Unable to set MACHINE from vmdk filename [$VM]" | 229 | error "Unable to set MACHINE from vmdk filename [$VM]" |
230 | fi | 230 | fi |
231 | echo "Set MACHINE to [$MACHINE] based on vmdk [$VM]" | 231 | echo "Set MACHINE to [$MACHINE] based on vmdk [$VM]" |
232 | else | 232 | else |
233 | MACHINE=`basename $KERNEL | sed 's/.*\(qemux86-64\|qemux86\|qemuarm\|qemumips64\|qemumips\|qemuppc\|qemush4\).*/\1/'` | 233 | MACHINE=`basename $KERNEL | sed -n 's/.*\(qemux86-64\|qemux86\|qemuarm\|qemumips64\|qemumips\|qemuppc\|qemush4\).*/\1/p'` |
234 | if [ -z "$MACHINE" ]; then | 234 | if [ -z "$MACHINE" ]; then |
235 | error "Unable to set MACHINE from kernel filename [$KERNEL]" | 235 | error "Unable to set MACHINE from kernel filename [$KERNEL]" |
236 | fi | 236 | fi |