We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41558fd commit 7d8151aCopy full SHA for 7d8151a
android.sh
@@ -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