forked from phhusson/treble_experimentations
-
Notifications
You must be signed in to change notification settings - Fork 31
/
list-patches.sh
42 lines (35 loc) · 1.46 KB
/
list-patches.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
# How does this script work?
# This script levarages "repo forall" to walk through all repositories by
# calling itself via repo forall.
#
# Why is it required?
# This script gathers all the patches applied to make the GSI work,
# and then later re-apply the patches to other distros.
# Phase 1: Initial Start
#
# if $REPO_REMOTE is not (yet) set (i.e. which is done by repo forall) then start the repo forall
if [ -z "$REPO_REMOTE" ];then
rm -Rf patches patches.zip
TOP=$PWD repo forall -j1 -c "bash $(readlink -f -- $0)"
zip -r patches.zip patches
rm -Rf patches
exit $?
fi
# Phase 2: Foreach Git Repo
#
# We only end up here if $REPO_REMOTE is set (i.e. the script was called by repo forall)
# -> and we are inside a git repository
# check if this repo is modified (i.e. pulled from td remote), exit/abort if not
git remote get-url td 2>/dev/null || exit 0
git fetch --unshallow td $REPO_RREV
# if repo comes from td, then get all the changes done against the "official" aosp source
compact_remote="$(git remote get-url td|cut -d / -f 5)"
original_remote=https://android.googlesource.com/"$(tr _ / <<<$compact_remote)"
if git fetch --tags $original_remote || git fetch --tags $original_remote || git fetch --tags $original_remote || git fetch --tags $original_remote;then
echo $REPO_PROJECT
lastTag="$(git describe --abbrev=0 --match=android-*)"
patches_out=$TOP/patches/$compact_remote/
mkdir -p $patches_out
git format-patch $lastTag..HEAD -o $patches_out
fi