forked from cdavide/android_kernel_mtk6577_common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
executable file
·158 lines (137 loc) · 4.03 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#!/bin/bash
# Default settings
verfile="android.ver"
curcfg=".config"
release="n"
rebuild="n"
clean="n"
makeflags="-w"
makedefs="V=0"
makejobs=${MAKEJOBS}
curdir=`pwd`
usage() {
echo "Usage: $0 {release|rebuild|clean|silent|verbose|single} [config-xxx]"
echo " config file will be generated if build with TARGET_PRODUCT"
exit 1
}
make_clean() {
echo "**** Cleaning ****"
nice make ${makeflags} ${makedefs} distclean
}
# Main starts here
while test -n "$1"; do
case "$1" in
release)
release="y"
;;
rebuild)
rebuild="y"
;;
clean)
clean="y"
;;
silent)
makeflags="-ws"
makedefs="V=0"
;;
verbose)
makeflags="-w"
makedefs="V=1"
;;
single)
makejobs=""
;;
*)
export TARGET_PRODUCT=$1
;;
esac
shift
done
source ../mediatek/build/shell.sh ../ kernel
defcfg="${MTK_ROOT_GEN_CONFIG}/kconfig"
if [ ! -z $KMOD_PATH ]; then
if [ ! -e $KMOD_PATH ]; then
echo "Invalid KMOD_PATH:$KMOD_PATH"
echo "CURDIR=$curdir"
exit 1;
fi
fi
# clean if it is necessary
if [ "${clean}" == "y" ]; then
if [ ! -z $KMOD_PATH ]; then
echo "Clean kernel module PROJECT=$MTK_PROJECT PATH=$KMOD_PATH";
make M="$KMOD_PATH" clean
exit $?
else
make_clean; exit $?;
fi
fi
if [ "${rebuild}" == "y" ]; then make_clean; fi
echo "**** Configuring / $defcfg / ****"
# select correct configuration file
make mediatek-configs
# Config DRAM size according to central Project Configuration file setting
# Todo:
# Need a robust mechanism to control Kconfig content by central Config setting
# Move below segment to a configuration file for extension
if [ "$CUSTOM_DRAM_SIZE" == "3G" ]; then
# Config DRAM size as 3G (0x18000000).
sed --in-place=.orig \
-e 's/\(CONFIG_MAX_DRAM_SIZE_SUPPORT=\).*/\10x18000000/' \
.config
else
if [ "$CUSTOM_DRAM_SIZE" == "2G" ]; then
# Config DRAM size as 2G (0x10000000).
sed --in-place=.orig \
-e 's/\(CONFIG_MAX_DRAM_SIZE_SUPPORT=\).*/\10x10000000/' \
-e 's/\(CONFIG_RESERVED_MEM_SIZE_FOR_PMEM=\).*/\10x1700000/' \
.config
else
if [ "$CUSTOM_DRAM_SIZE" == "4G" ]; then
# Config DRAM size as 4G (0x20000000).
sed --in-place=.orig \
-e 's/\(CONFIG_MAX_DRAM_SIZE_SUPPORT=\).*/\10x20000000/' \
.config
else
if [ "$CUSTOM_DRAM_SIZE" == "6G" ]; then
# Config DRAM size as 6G (0x30000000).
sed --in-place=.orig \
-e 's/\(CONFIG_MAX_DRAM_SIZE_SUPPORT=\).*/\10x30000000/' \
-e 's/\(CONFIG_CMDLINE=.*\)"/\1 vmalloc=280M"/' \
-e 's/.*\(CONFIG_HIGHMEM\).*/\1=y/' \
-e '$ a\# CONFIG_HIGHPTE is not set' \
-e '$ a\# CONFIG_DEBUG_HIGHMEM is not set' \
.config
else
if [ "$CUSTOM_DRAM_SIZE" == "8G" ]; then
# Config DRAM size as 8G (0x40000000).
sed --in-place=.orig \
-e 's/\(CONFIG_MAX_DRAM_SIZE_SUPPORT=\).*/\10x40000000/' \
-e 's/\(CONFIG_CMDLINE=.*\)"/\1 vmalloc=280M"/' \
-e 's/.*\(CONFIG_HIGHMEM\).*/\1=y/' \
-e '$ a\# CONFIG_HIGHPTE is not set' \
-e '$ a\# CONFIG_DEBUG_HIGHMEM is not set' \
.config
fi
fi
fi
fi
fi
# update configuration
nice make ${makeflags} ${makedefs} silentoldconfig
if [ ! -z $KMOD_PATH ]; then
echo "Build kernel module PROJECT=$MTK_PROJECT PATH=$KMOD_PATH";
make M="$KMOD_PATH" modules
exit $?
fi
echo "**** Building ****"
make ${makeflags} ${makejobs} ${makedefs}
if [ $? -ne 0 ]; then exit 1; fi
echo "**** Successfully built kernel ****"
mkimg="${MTK_ROOT_BUILD}/tools/mkimage"
kernel_img="${curdir}/arch/arm/boot/Image"
kernel_zimg="${curdir}/arch/arm/boot/zImage"
echo "**** Generate download images ****"
if [ ! -x ${mkimg} ]; then chmod a+x ${mkimg}; fi
${mkimg} ${kernel_zimg} KERNEL > kernel_${MTK_PROJECT}.bin
copy_to_legacy_download_flash_folder kernel_${MTK_PROJECT}.bin rootfs_${MTK_PROJECT}.bin