-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatch.sh
More file actions
executable file
·49 lines (41 loc) · 1.48 KB
/
patch.sh
File metadata and controls
executable file
·49 lines (41 loc) · 1.48 KB
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
43
44
45
46
47
48
49
#!/bin/bash
#
# Build tools to automatically apply patches to my
# CM9 folder on the epic build server.
#
# Based on EpicCM/epictools
#
repo abandon auto
# Patches
# Example:
#
# echo "### <review title>"
# repo start auto device/samsung/aries-common
# cd device/samsung/aries-common
# <cherry-pick-line>
# cd ../../..
echo "### vold: mount sdcard with UID root"
repo start auto system/vold
pushd system/vold
git fetch http://review.cyanogenmod.org/CyanogenMod/android_system_vold refs/changes/49/26849/2 && git cherry-pick FETCH_HEAD
popd
echo "### Camera: Allow a device to request the focus modes at build time"
repo start auto packages/apps/Camera
pushd packages/apps/Camera
git fetch http://review.cyanogenmod.org/CyanogenMod/android_packages_apps_Camera refs/changes/96/27996/2 && git cherry-pick FETCH_HEAD
popd
echo "### Clock: fix layout for 320dp devices"
repo start auto packages/apps/DeskClock
pushd packages/apps/DeskClock
git fetch http://review.cyanogenmod.org/CyanogenMod/android_packages_apps_DeskClock refs/changes/01/28001/3 && git cherry-pick FETCH_HEAD
popd
echo "### build: Update domain name"
repo start auto build
pushd build
git fetch http://review.cyanogenmod.org/CyanogenMod/android_build refs/changes/58/28058/1 && git cherry-pick FETCH_HEAD
popd
echo "### Set ANDROID_PROPERTY_WORKSPACE in exec."
repo start auto system/core
pushd system/core
git fetch http://review.cyanogenmod.org/CyanogenMod/android_system_core refs/changes/61/28061/1 && git cherry-pick FETCH_HEAD
popd