aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVishal Bhoj <vishal.bhoj@linaro.org>2015-03-17 17:52:13 +0530
committerVishal Bhoj <vishal.bhoj@linaro.org>2015-03-18 18:38:25 +0530
commit26ad84cd569cd79948ce9d6e40f556e667c7adf0 (patch)
tree14cc3453f81ab95ee7733359da2e44757f13a1e5
parent25d7435d0cfcb604960a25d95abd8c5df6301dcb (diff)
Add support to apply patchset in linaro_android_build_cmds.sh
Change-Id: I4f9fff16aca1afbc5a190d954ffb055006c6c3c5 Signed-off-by: Vishal Bhoj <vishal.bhoj@linaro.org>
-rwxr-xr-xbuild-scripts/create-user-build-script9
1 files changed, 9 insertions, 0 deletions
diff --git a/build-scripts/create-user-build-script b/build-scripts/create-user-build-script
index 0e023d1..234b228 100755
--- a/build-scripts/create-user-build-script
+++ b/build-scripts/create-user-build-script
@@ -311,6 +311,15 @@ tar -jxf toolchain.tar.bz2
rm toolchain.tar.bz2
EOF
fi
+ if [ -n "$PATCHSETS" ] ; then
+ cat <<EOF
+# download and apply the patches
+git clone git://android.git.linaro.org/android-patchsets.git
+for i in \$PATCHSETS; do
+ sh ./android-patchsets/\$i
+done
+EOF
+ fi
if [ -n "$SOURCE_OVERLAY" ]; then
cat <<EOF