-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sh
executable file
·29 lines (27 loc) · 1.23 KB
/
build.sh
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
#!/bin/bash
###############################################################################
#
# Kernel Build Script
#
###############################################################################
# 2011-10-24 effectivesky : modified
# 2010-12-29 allydrop : created
###############################################################################
##############################################################################
# set toolchain
##############################################################################
export ARCH=arm
export CROSS_COMPILE=~/android/nitrogen/prebuilts/gcc/linux-x86/arm/arm-eabi-4.9/bin/arm-eabi-
export CCACHE_DIR=~/.ccache/kernel_e975
export KBUILD_BUILD_USER=xyyx
export KBUILD_BUILD_HOST=irk
##############################################################################
# make zImage
##############################################################################
mkdir -p ./obj/KERNEL_OBJ/
make O=./obj/KERNEL_OBJ/ gee_defconfig
make -j 10 O=./obj/KERNEL_OBJ/
##############################################################################
# Copy Kernel Image
##############################################################################
cp -f ./obj/KERNEL_OBJ/arch/arm/boot/zImage .