[CONSOLIDATED,PULL,11/23] runqemu: look for *-image* to be more flexible for image names
Submitted by Saul Wold on Nov. 29, 2011, 8:26 a.m.
|
Patch ID: 15553
Details
Commit Message
@@ -114,7 +114,7 @@ while [ $i -le $# ]; do
usage
fi
;;
- *-image-*)
+ *-image*)
if [ -z "$ROOTFS" ]; then
if [ -f "$arg" ]; then
process_filename $arg
@@ -307,7 +307,7 @@ findimage() {
# Sort rootfs candidates by modification time - the most
# recently created one is the one we most likely want to boot.
- filenames=`ls -t $where/*core-image*$machine.$extension 2>/dev/null | xargs`
+ filenames=`ls -t $where/*-image*$machine.$extension 2>/dev/null | xargs`
for name in $filenames; do
if [[ "$name" =~ core-image-sato-sdk ||
"$name" =~ core-image-sato ||
We can't just look for *image* since it will catch up bzimage Signed-off-by: Saul Wold <sgw@linux.intel.com> --- scripts/runqemu | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)