1
0
Fork 0
forked from len0rd/rockbox

rockboxdev: Store toolchain patches in-tree, instead of downloading them

This frees us from having to keep the web site in sync.

Note that only currently-referenced patches were kept.

Change-Id: I50da1b75baeac214cf142c8b76a05a8c56b4c1d4
This commit is contained in:
Solomon Peachy 2020-04-04 15:42:35 -04:00
parent 74ab8d1490
commit 00c0d2012f
7 changed files with 778 additions and 8 deletions

View file

@ -29,6 +29,9 @@ else
make="make"
fi
# This is the absolute path to where the script resides.
rockboxdevdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
parallel=`nproc`
if [ $parallel -gt 1 ] ; then
make_parallel=-j$parallel
@ -349,8 +352,6 @@ build() {
configure_params="$5"
needs_libs="$6"
patch_url="http://www.rockbox.org/gcc"
# create build directory
if test -d $builddir; then
if test ! -w $builddir; then
@ -361,15 +362,12 @@ build() {
mkdir -p $builddir
fi
patch_dir="$rockboxdevdir/toolchain-patches"
# download source tarball
gettool "$toolname" "$version"
file="$toolname-$version"
# download patch
for p in $patch; do
getfile "$p" "$patch_url"
done
cd $builddir
extract "$toolname-$version"
@ -379,7 +377,7 @@ build() {
echo "ROCKBOXDEV: applying patch $p"
# apply the patch
(cd $builddir/$toolname-$version && patch -p1 < "$dlwhere/$p")
(cd $builddir/$toolname-$version && patch -p1 < "$patch_dir/$p")
# check if the patch applied cleanly
if [ $? -gt 0 ]; then