Merge branch 'readonly-p4-master'

This commit is contained in:
Jack Veenstra 2009-04-09 18:13:45 -07:00 committed by The Android Open Source Project
commit c6c4db56eb
1 changed files with 6 additions and 1 deletions

View File

@ -817,7 +817,7 @@ function tracedmdump()
return
fi
local prebuiltdir=$(getprebuilt)
local KERNEL=$T/prebuilt/android-arm/vmlinux-qemu
local KERNEL=$T/prebuilt/android-arm/kernel/vmlinux-qemu
local TRACE=$1
if [ ! "$TRACE" ] ; then
@ -825,6 +825,11 @@ function tracedmdump()
return
fi
if [ ! -r "$KERNEL" ] ; then
echo "Error: cannot find kernel: '$KERNEL'"
return
fi
local BASETRACE=$(basename $TRACE)
if [ "$BASETRACE" = "$TRACE" ] ; then
TRACE=$ANDROID_PRODUCT_OUT/traces/$TRACE