forked from rlawoehd187/android_kernel_pantech_msm8960
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_kernel.sh
executable file
·37 lines (29 loc) · 1.29 KB
/
build_kernel.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
30
31
32
33
34
#!/bin/bash
###############################################################################
#
# Kernel Build Script
#
###############################################################################
# 2011-10-24 effectivesky : modified
# 2010-12-29 allydrop : created
###############################################################################
##############################################################################
# set toolchain
##############################################################################
export ARCH=arm
export CROSS_COMPILE=/home/diszell2008/arm-eabi-4.7/bin/arm-eabi-
export LINUX_BIN_PATH=$PWD/obj
export SYS_PANTECH_SECBOOT=yes
rm -rf $LINUX_BIN_PATH
CMD_V_LOG_FILE=$PWD/KERNEL_build.log
rm -rf $CMD_V_LOG_FILE
##############################################################################
# make zImage
##############################################################################
mkdir -p ./obj/KERNEL_OBJ/
make O=./obj/KERNEL_OBJ/ msm8960_ef52l_tp20_perf_defconfig
make -j16 O=./obj/KERNEL_OBJ/ 2>&1 | tee $CMD_V_LOG_FILE
##############################################################################
# Copy Kernel Image
##############################################################################
cp -f ./obj/KERNEL_OBJ/arch/arm/boot/zImage .