Skip to content

Commit

Permalink
Merge pull request #79 from pspdev/add-more-build-info
Browse files Browse the repository at this point in the history
Add more repos to build.txt
  • Loading branch information
sharkwouter committed Jun 18, 2024
2 parents 93b2d2e + c17f21a commit f901c23
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scripts/004-psplinkusb-extra.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,10 @@ if [ "${OSVER:0:5}" != MINGW ]; then
make --quiet -j $PROC_NR -C pspsh install || { exit 1; }
make --quiet -j $PROC_NR -C usbhostfs_pc install || { exit 1; }
fi

## Store build information
BUILD_FILE="${PSPDEV}/build.txt"
if [[ -f "${BUILD_FILE}" ]]; then
sed -i'' '/^psplinkusb /d' "${BUILD_FILE}"
fi
git log -1 --format="psplinkusb %H %cs %s" >> "${BUILD_FILE}"
7 changes: 7 additions & 0 deletions scripts/005-ebootsigner-extra.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,10 @@ make --quiet -j $PROC_NR clean || { exit 1; }
make --quiet -j $PROC_NR all || { exit 1; }
make --quiet -j $PROC_NR install || { exit 1; }
make --quiet -j $PROC_NR clean || { exit 1; }

## Store build information
BUILD_FILE="${PSPDEV}/build.txt"
if [[ -f "${BUILD_FILE}" ]]; then
sed -i'' '/^ebootsigner /d' "${BUILD_FILE}"
fi
git log -1 --format="ebootsigner %H %cs %s" >> "${BUILD_FILE}"

0 comments on commit f901c23

Please sign in to comment.