-
Notifications
You must be signed in to change notification settings - Fork 0
/
README_Kernel.txt
executable file
·21 lines (19 loc) · 1.08 KB
/
README_Kernel.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
################################################################################
1. How to Build
- get Toolchain
From android git server, codesourcery and etc ..
- gcc/linux-x86/aarch64/aarch64-linux-android-4.9/bin/aarch64-linux-android-
- edit Makefile
edit "CROSS_COMPILE" to right toolchain path(You downloaded).
EX) CROSS_COMPILE=<android platform directory you download>/android/prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/bin/aarch64-linux-android-
EX) CROSS_COMPILE=/usr/local/toolchain/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/bin/aarch64-linux-android- // check the location of toolchain
- to Build
$ export ANDROID_MAJOR_VERSION=p
$ make ARCH=arm64 exynos8890-gracelte_defconfig
$ make ARCH=arm64
2. Output files
- Kernel : arch/arm64/boot/Image
- module : drivers/*/*.ko
3. How to Clean
$ make clean
################################################################################