-
Notifications
You must be signed in to change notification settings - Fork 2
/
build_kernel.sh
executable file
·28 lines (24 loc) · 1.03 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
#!/bin/bash
###############################################################################
#
# Kernel Build Script
#
###############################################################################
##############################################################################
# set toolchain
##############################################################################
export ARCH=arm
export CROSS_COMPILE=/home/diszell2008/arm-eabi-4.6/bin/arm-eabi-
##############################################################################
# make zImage
##############################################################################
mkdir -p ./obj/KERNEL_OBJ/
make O=./obj/KERNEL_OBJ msm8960_ef46l_tp30_user_defconfig
make -j8 O=./obj/KERNEL_OBJ
##############################################################################
# Copy Kernel Image
##############################################################################
if [ -f ./obj/KERNEL_OBJ/arch/arm/boot/zImage ]
then
cp -f ./obj/KERNEL_OBJ/arch/arm/boot/zImage ./
fi