X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=blobdiff_plain;f=scripts%2Fdeptest.sh;h=047a0ce4d44d0ec9736945e3e9992fd24862d52e;hp=938094b877b150feeeed253d573523c056cd2793;hb=c0edabca051e029b130d0938f3500637402084e4;hpb=916bda8dfe7841c0de94eceff76df72d9d7671e7 diff --git a/scripts/deptest.sh b/scripts/deptest.sh index 938094b877..047a0ce4d4 100755 --- a/scripts/deptest.sh +++ b/scripts/deptest.sh @@ -23,7 +23,8 @@ STAGING_DIR="$DIR/staging_dir/target" STAGING_DIR_HOST="$DIR/staging_dir/host" STAGING_DIR_HOST_TMPL="$DIR/staging_dir_host_tmpl" BIN_DIR="$DIR/staging_dir/bin_dir" -LOG_DIR="$DIR/logs" +LOG_DIR_NAME="logs" +LOG_DIR="$DIR/$LOG_DIR_NAME" die() { @@ -74,6 +75,11 @@ clean_kernel_build_dir() ) } +stamp_exists() # $1=stamp +{ + [ -e "$1" -o -L "$1" ] +} + test_package() # $1=pkgname { local pkg="$1" @@ -87,13 +93,13 @@ test_package() # $1=pkgname local STAMP_FAILED="$STAMP_DIR_FAILED/$pkg" local STAMP_BLACKLIST="$STAMP_DIR_BLACKLIST/$pkg" rm -f "$STAMP_FAILED" - [ -f "$STAMP_SUCCESS" -a $force -eq 0 ] && return + stamp_exists "$STAMP_SUCCESS" && [ $force -eq 0 ] && return rm -f "$STAMP_SUCCESS" [ -n "$SELECTED" ] || { echo "Package $pkg is not selected" return } - [ -f "$STAMP_BLACKLIST" -a $force -eq 0 ] && { + stamp_exists "$STAMP_BLACKLIST" && [ $force -eq 0 ] && { echo "Package $pkg is blacklisted" return } @@ -106,11 +112,12 @@ test_package() # $1=pkgname clean_kernel_build_dir } mkdir -p "$BUILD_DIR" "$BUILD_DIR_HOST" - deptest_make "package/$pkg/compile" "$(basename $pkg).log" + local logfile="$(basename $pkg).log" + deptest_make "package/$pkg/compile" "$logfile" if [ $? -eq 0 ]; then - touch "$STAMP_SUCCESS" + ( cd "$STAMP_DIR_SUCCESS"; ln -s "../$LOG_DIR_NAME/$logfile" "./$pkg" ) else - touch "$STAMP_FAILED" + ( cd "$STAMP_DIR_FAILED"; ln -s "../$LOG_DIR_NAME/$logfile" "./$pkg" ) echo "Building package $pkg FAILED" fi }