Skip to content

Commit 7d8151a

Browse files
authored
Create android.sh
1 parent 41558fd commit 7d8151a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

android.sh

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
echo off
2+
echo -e "\033[0;33mNote that you need \033[107;32mgit\033[0;33m and \033[107;32mhub\033[0;33m to work\033[0;0m"
3+
4+
# clone the project
5+
git clone https://github.com/EduApps-CDG/kernel-configs
6+
7+
# move to project
8+
cd kernel-configs
9+
10+
# turn the clone a fork
11+
hub fork --remote-name=origin
12+
13+
#copy /proc/config.gz into ./android/[your device].gz
14+
cp /proc/config.gz "android/$(getprop | grep -i ro.product.model | sed "s/\[ro.product.model\]: //" | sed "s/\[//" | sed "s/\]//").gz"
15+
16+
#push to [your device]
17+
git push origin "$(getprop | grep -i ro.product.model | sed "s/\[ro.product.model\]: //" | sed "s/\[//" | sed "s/\]//")"
18+
19+
#create a pull request
20+
hub pull-request
21+
22+
echo -e "\033[0;33mAll Done!\033[0;0m"

0 commit comments

Comments
 (0)