blob: 89d759068eba7c09e36387d6ebd5705ca1ac72da [file] [log] [blame]
developer20d67712022-03-02 14:09:32 +08001#!/bin/bash
2#
3# There are 2 env-variables set for you, you can use it in your script.
4# ${BUILD_DIR} , working dir of this script, eg: openwrt/lede/
5# ${INSTALL_DIR}, where to install your build result, including: image, build log.
6#
7
8#Global variable
9BUILD_TIME=`date +%Y%m%d%H%M%S`
10build_flag=0
11
12if [ -z ${BUILD_DIR} ]; then
13 LOCAL=1
14 BUILD_DIR=`pwd`
15fi
16
17MTK_FEED_DIR=${BUILD_DIR}/feeds/mtk_openwrt_feed
18MTK_MANIFEST_FEED=${BUILD_DIR}/../mtk-openwrt-feeds
19
20if [ -z ${INSTALL_DIR} ]; then
21 INSTALL_DIR=autobuild_release
22 mkdir -p ${INSTALL_DIR}
23 if [ ! -d target/linux ]; then
24 echo "You should call this scripts from openwrt's root directory."
25 fi
26fi
27
28OPENWRT_VER=`cat ${BUILD_DIR}/feeds.conf.default | grep "src-git packages" | awk -F ";openwrt" '{print $2}'`
29cp ${BUILD_DIR}/feeds.conf.default ${BUILD_DIR}/feeds.conf.default_ori
30
31clean() {
32 echo "clean start!"
33 echo "It will take some time ......"
34 make distclean
35 rm -rf ${INSTALL_DIR}
36 echo "clean done!"
37}
38
39do_patch(){
40 files=`find $1 -name "*.patch" | sort`
41 for file in $files
42 do
43 patch -f -p1 -i ${file} || exit 1
44 done
45}
46
47prepare() {
48 echo "Preparing...."
49 #FIXME : workaround HOST PC build issue
50 #cd package/mtk/applications/luci-app-mtk/;git checkout Makefile;cd -
51 #mv package/mtk package/mtk_soc/ ./
52 #rm -rf tmp/ feeds/ target/ package/ scripts/ tools/ include/ toolchain/ rules.mk
53 #git checkout target/ package/ scripts/ tools/ include/ toolchain/ rules.mk
54 #mv ./mtk ./mtk_soc/ package/
55 cp ${BUILD_DIR}/autobuild/feeds.conf.default${OPENWRT_VER} ${BUILD_DIR}/feeds.conf.default
56
57 #update feed
58 ${BUILD_DIR}/scripts/feeds update -a
59
60 #check if manifest mtk_feed exist,if yes,overwrite and update it in feeds/
61 if [ -d ${MTK_MANIFEST_FEED} ]; then
62 rm -rf ${MTK_FEED_DIR}
63 ln -s ${MTK_MANIFEST_FEED} ${MTK_FEED_DIR}
64 ${BUILD_DIR}/scripts/feeds update -a
65 fi
66
67 #do mtk_feed prepare_sdk.sh
68 cp ${MTK_FEED_DIR}/prepare_sdk.sh ${BUILD_DIR}
69
70 #if $1 exist(mt76), keep origin openwrt patches and remove mtk local eth driver
71 if [ -z ${1} ]; then
72 ${BUILD_DIR}/prepare_sdk.sh ${MTK_FEED_DIR} || exit 1
73 else
74 ${BUILD_DIR}/prepare_sdk.sh ${MTK_FEED_DIR} ${1} || exit 1
75 rm -rf ${BUILD_DIR}/target/linux/mediatek/files-5.4/drivers/net/ethernet/mediatek/
76 fi
77 #install feed
78 ${BUILD_DIR}/scripts/feeds install -a
79 ${BUILD_DIR}/scripts/feeds install -a luci
80
81 #do mtk_soc openwrt patch
82 do_patch ${BUILD_DIR}/autobuild/openwrt_patches${OPENWRT_VER}/mtk_soc || exit 1
83}
84
85add_proprietary_kernel_files() {
86 #cp mtk proprietary ko_module source to mtk target
87 #and also need to be done in release mtk target
88 mkdir -p ${BUILD_DIR}/target/linux/mediatek/files-5.4/drivers/net/wireless
89 cp -rf ${BUILD_DIR}/../ko_module/gateway/proprietary_driver/drivers/wifi_utility/ ${BUILD_DIR}/target/linux/mediatek/files-5.4/drivers/net/wireless
90
91 mkdir -p ${BUILD_DIR}/target/linux/mediatek/files-5.4/include/uapi/linux/
92 cp -rf ${BUILD_DIR}/../kernel/wapp_uapi_includes ${BUILD_DIR}/target/linux/mediatek/files-5.4/include/uapi/linux/wapp
93
94 cp -fpR ${BUILD_DIR}/autobuild/target/ ${BUILD_DIR}
95}
96
97prepare_mtwifi() {
98 #remove officail OpenWRT wifi script
99 #wifi-profile pkg will install wifi_jedi instead
100 rm -rf ${BUILD_DIR}/package/base-files/files/sbin/wifi
101
102 add_proprietary_kernel_files
103
104 #do mtk_wifi openwrt patch
105 do_patch ${BUILD_DIR}/autobuild/openwrt_patches${OPENWRT_VER}/mtk_wifi || exit 1
106}
107
developere2cc0fa2022-03-29 17:31:03 +0800108prepare_mac80211() {
109 patch -f -p1 -i ${MTK_FEED_DIR}/autobuild_mac80211_release/0001-master-mac80211-generate-hostapd-setting-from-ap-cap.patch
110 patch -f -p1 -i ${MTK_FEED_DIR}/autobuild_mac80211_release/0002-master-hostapd-makefile-for-utils.patch
111 patch -f -p1 -i ${MTK_FEED_DIR}/autobuild_mac80211_release/0003-master-mt76-makefile-for-new-chip.patch
112 cp -rfa ${MTK_FEED_DIR}/autobuild_mac80211_release/package/ ${BUILD_DIR}
developer73b93122022-04-19 23:16:58 +0800113 cp -rfa ${MTK_FEED_DIR}/autobuild_mac80211_release/target/ ${BUILD_DIR}
developere2cc0fa2022-03-29 17:31:03 +0800114}
115
developer20d67712022-03-02 14:09:32 +0800116copy_main_Config() {
117 echo cp -rfa autobuild/$1/.config ./.config
118 cp -rfa autobuild/$1/.config ./.config
119}
120
121install_output_Image() {
122 mkdir -p ${INSTALL_DIR}/$1
123
124 files=`find bin/targets/$3/*${2}* -name "*.bin" -o -name "*.img"`
125 file_count=0
126
127 for file in $files
128 do
129 tmp=${file%.*}
130 cp -rf $file ${INSTALL_DIR}/$1/${tmp##*/}-${BUILD_TIME}.${file##*.}
131 ((file_count++))
132 done
133
134 if [ ${file_count} = 0 ]; then
135 if [ ${build_flag} -eq 0 ]; then
136 let build_flag+=1
137 echo " Restart to debug-build with "make V=s -j1", starting......"
138 build $1 -j1 || [ "$LOCAL" != "1" ]
139 else
140 echo " **********Failed to build $1, bin missing.**********"
141 fi
142 else
143 echo "Install image OK!!!"
144 echo "Build $1 successfully!"
145 fi
146}
147
148install_output_Config() {
149 echo cp -rfa autobuild/$1/.config ${INSTALL_DIR}/$1/openwrt.config
150 cp -rfa autobuild/$1/.config ${INSTALL_DIR}/$1/openwrt.config
151 [ -f tmp/kernel.config ] && cp tmp/kernel.config ${INSTALL_DIR}/$1/kernel.config
152}
153
154install_output_KernelDebugFile() {
155 KernelDebugFile=bin/targets/$3/mt${2}*/kernel-debug.tar.bz2
156 if [ -f ${KernelDebugFile} ]; then
157 echo cp -rfa ${KernelDebugFile} ${INSTALL_DIR}/$1/kernel-debug.tar.bz2
158 cp -rfa ${KernelDebugFile} ${INSTALL_DIR}/$1/kernel-debug.tar.bz2
159 fi
160}
161
162install_output_RootfsDebugFile() {
163 STAGING_DIR_ROOT=$(make -f "autobuild/get_stagingdir_root.mk" get-staging-dir-root)
164 if [ -d ${STAGING_DIR_ROOT} ]; then
165 STAGING_DIR_ROOT_PREFIX=$(dirname ${STAGING_DIR_ROOT})
166 STAGING_DIR_ROOT_NAME=$(basename ${STAGING_DIR_ROOT})
167 echo "tar -jcf ${INSTALL_DIR}/$1/rootfs-debug.tar.bz2 -C \"$STAGING_DIR_ROOT_PREFIX\" \"$STAGING_DIR_ROOT_NAME\""
168 tar -jcf ${INSTALL_DIR}/$1/rootfs-debug.tar.bz2 -C "$STAGING_DIR_ROOT_PREFIX" "$STAGING_DIR_ROOT_NAME"
169 fi
170}
171
172install_output_feeds_buildinfo() {
173 feeds_buildinfo=$(find bin/targets/$3/*${2}*/ -name "feeds.buildinfo")
174 echo "feeds_buildinfo=$feeds_buildinfo"
175 if [ -f ${feeds_buildinfo} ]; then
176 cp -rf $feeds_buildinfo ${INSTALL_DIR}/$1/feeds.buildinfo
177 else
178 echo "feeds.buildinfo is not found!!!"
179 fi
180}
181
182install_release() {
183 temp=${1#*mt}
184 chip_name=${temp:0:4}
185 temp1=`grep "CONFIG_TARGET_ramips=y" autobuild/$1/.config`
186
187 if [ "${temp1}" == "CONFIG_TARGET_ramips=y" ]; then
188 arch_name="ramips"
189 else
190 arch_name="mediatek"
191 fi
192
193 #install output image
194 install_output_Image $1 ${chip_name} ${arch_name}
195
196 #install output config
197 install_output_Config $1
198
199 #install output Kernel-Debug-File
200 install_output_KernelDebugFile $1 ${chip_name} ${arch_name}
201
202 #tar unstripped rootfs for debug symbols
203 install_output_RootfsDebugFile $1
204
205 #install output feeds buildinfo
206 install_output_feeds_buildinfo $1 ${chip_name} ${arch_name}
207}
208
209prepare_final() {
210 #cp customized autobuild SDK patches
211 cp -fpR ${BUILD_DIR}/autobuild/$1/target/ ${BUILD_DIR}
212 cp -fpR ${BUILD_DIR}/autobuild/$1/package/ ${BUILD_DIR}
213
214
215 #cp special subtarget patches
216 case $1 in
217 mt7986*)
218 cp -rf ${BUILD_DIR}/autobuild/mt7986-AX6000/target/linux/mediatek/patches-5.4/*.* ${BUILD_DIR}/target/linux/mediatek/patches-5.4
219 ;;
220 *)
221 ;;
222 esac
223
224 #rm old legacy patch, ex old nfi nand driver
225 case $1 in
226 mt7986*|\
227 mt7981*)
228 rm -rf ${BUILD_DIR}/target/linux/mediatek/patches-5.4/0303-mtd-spinand-disable-on-die-ECC.patch
229 ;;
230 *)
231 ;;
232 esac
233
234 cd ${BUILD_DIR}
235 [ -f autobuild/$1/.config ] || {
236 echo "unable to locate autobuild/$1/.config !"
237 return
238 }
239
240 rm -rf ./tmp
241 #copy main test config(.config)
242 copy_main_Config $1
243
244 echo make defconfig
245 make defconfig
246}
247
248build() {
249 echo "###############################################################################"
250 echo "# $1"
251 echo "###############################################################################"
252 echo "build $1"
253
254 cd ${BUILD_DIR}
255
256 #make
257 echo make V=s $2
258 make V=s $2 || exit 1
259
260 #tar unstripped rootfs for debug symbols
261 install_release $1
262}