File tree Expand file tree Collapse file tree 1 file changed +20
-3
lines changed Expand file tree Collapse file tree 1 file changed +20
-3
lines changed Original file line number Diff line number Diff line change 19
19
git config --global user.name "Mochen"
20
20
git config --global user.email "[email protected] "
21
21
22
- - name : Build With Shell
22
+ - name : Download gcc
23
23
run : |
24
24
cd $GITHUB_WORKSPACE
25
- sudo chmod -R 777 ./*
26
- bash Build.sh
25
+ aria2c "https://developer.arm.com/-/media/Files/downloads/gnu-a/9.2-2019.12/binrel/gcc-arm-9.2-2019.12-x86_64-aarch64-none-linux-gnu.tar.xz"
26
+ xz -d gcc-arm-9.2-2019.12-x86_64-aarch64-none-linux-gnu.tar.xz
27
+ tar xf gcc-arm-9.2-2019.12-x86_64-aarch64-none-linux-gnu.tar
28
+
29
+ - name : Clone kernel trees && Build kernel
30
+ run : |
31
+ export ARCH=arm64
32
+ export SUBARCH=arm64
33
+ export PATH=~/gcc-arm-9.2-2019.12-x86_64-aarch64-none-linux-gnu/bin:$PATH
34
+ export CROSS_COMPILE=aarch64-none-linux-gnu-
35
+ git clone https://github.com/harvasyuk/android_kernel_xiaomi_msm8953.git -b Q-Non-treble
36
+ cd android_kernel_xiaomi_msm8953
37
+ make clean
38
+ make mrproper
39
+ args="-j$(nproc --all) O=out ARCH=arm64 SUBARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu-"
40
+ make ${args} O=markw_defconfig
41
+ make -j$(nproc)
42
+
43
+
You can’t perform that action at this time.
0 commit comments