2018-12-14 06:58:33 -06:00
|
|
|
#!/bin/bash
|
2018-09-18 11:41:41 -05:00
|
|
|
set -e
|
2018-12-14 06:58:33 -06:00
|
|
|
cd $(dirname "$0")
|
2018-09-18 11:41:41 -05:00
|
|
|
|
2018-10-06 04:30:32 -05:00
|
|
|
SRC_DIR=$(dirname $(rustup which rustc))"/../lib/rustlib/src/rust/"
|
2018-12-14 06:58:33 -06:00
|
|
|
DST_DIR="sysroot_src"
|
2018-10-06 04:30:32 -05:00
|
|
|
|
|
|
|
if [ ! -e $SRC_DIR ]; then
|
|
|
|
echo "Please install rust-src component"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
rm -rf $DST_DIR
|
|
|
|
mkdir -p $DST_DIR/src
|
2018-10-06 07:57:06 -05:00
|
|
|
cp -r $SRC_DIR/src $DST_DIR/
|
|
|
|
|
2018-11-12 12:37:54 -06:00
|
|
|
pushd $DST_DIR
|
2018-12-14 06:58:33 -06:00
|
|
|
echo "[GIT] init"
|
2018-09-18 11:41:41 -05:00
|
|
|
git init
|
2018-12-14 06:58:33 -06:00
|
|
|
echo "[GIT] add"
|
2018-09-18 11:41:41 -05:00
|
|
|
git add .
|
2018-12-14 06:58:33 -06:00
|
|
|
echo "[GIT] commit"
|
2018-09-18 11:41:41 -05:00
|
|
|
git commit -m "Initial commit" -q
|
2018-12-14 06:58:33 -06:00
|
|
|
for file in $(ls ../../patches/ | grep -v patcha); do
|
|
|
|
echo "[GIT] apply" $file
|
|
|
|
git apply ../../patches/$file
|
2019-02-17 19:42:12 -06:00
|
|
|
git commit --no-gpg-sign -am "Patch $file"
|
2018-12-14 06:58:33 -06:00
|
|
|
done
|
2018-11-12 12:37:54 -06:00
|
|
|
popd
|
|
|
|
|
2018-07-19 11:41:37 -05:00
|
|
|
echo "Successfully prepared libcore for building"
|