blob: a080563160261586fc5977fe9a65697e274fe7fb [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}'`
developer068e1a42022-08-29 17:24:20 +080029if [ -z ${OPENWRT_VER} ]; then
30 OPENWRT_VER=`cat ${BUILD_DIR}/feeds.conf.default | grep "src-git-full packages" | awk -F ";openwrt" '{print $2}'`
31fi
32
developer20d67712022-03-02 14:09:32 +080033cp ${BUILD_DIR}/feeds.conf.default ${BUILD_DIR}/feeds.conf.default_ori
34
35clean() {
36 echo "clean start!"
37 echo "It will take some time ......"
38 make distclean
39 rm -rf ${INSTALL_DIR}
40 echo "clean done!"
41}
42
43do_patch(){
44 files=`find $1 -name "*.patch" | sort`
45 for file in $files
46 do
47 patch -f -p1 -i ${file} || exit 1
48 done
49}
50
51prepare() {
52 echo "Preparing...."
53 #FIXME : workaround HOST PC build issue
54 #cd package/mtk/applications/luci-app-mtk/;git checkout Makefile;cd -
55 #mv package/mtk package/mtk_soc/ ./
56 #rm -rf tmp/ feeds/ target/ package/ scripts/ tools/ include/ toolchain/ rules.mk
57 #git checkout target/ package/ scripts/ tools/ include/ toolchain/ rules.mk
58 #mv ./mtk ./mtk_soc/ package/
59 cp ${BUILD_DIR}/autobuild/feeds.conf.default${OPENWRT_VER} ${BUILD_DIR}/feeds.conf.default
60
61 #update feed
62 ${BUILD_DIR}/scripts/feeds update -a
63
64 #check if manifest mtk_feed exist,if yes,overwrite and update it in feeds/
65 if [ -d ${MTK_MANIFEST_FEED} ]; then
66 rm -rf ${MTK_FEED_DIR}
67 ln -s ${MTK_MANIFEST_FEED} ${MTK_FEED_DIR}
68 ${BUILD_DIR}/scripts/feeds update -a
69 fi
70
71 #do mtk_feed prepare_sdk.sh
72 cp ${MTK_FEED_DIR}/prepare_sdk.sh ${BUILD_DIR}
73
74 #if $1 exist(mt76), keep origin openwrt patches and remove mtk local eth driver
75 if [ -z ${1} ]; then
76 ${BUILD_DIR}/prepare_sdk.sh ${MTK_FEED_DIR} || exit 1
77 else
78 ${BUILD_DIR}/prepare_sdk.sh ${MTK_FEED_DIR} ${1} || exit 1
79 rm -rf ${BUILD_DIR}/target/linux/mediatek/files-5.4/drivers/net/ethernet/mediatek/
80 fi
81 #install feed
82 ${BUILD_DIR}/scripts/feeds install -a
83 ${BUILD_DIR}/scripts/feeds install -a luci
84
85 #do mtk_soc openwrt patch
86 do_patch ${BUILD_DIR}/autobuild/openwrt_patches${OPENWRT_VER}/mtk_soc || exit 1
87}
88
89add_proprietary_kernel_files() {
90 #cp mtk proprietary ko_module source to mtk target
91 #and also need to be done in release mtk target
developer20d67712022-03-02 14:09:32 +080092
developer9b3248d2022-07-06 00:44:05 +080093 # mean it is old process for possible build issue and should delete it gradually in the furture.
94 if [ ! -d ${BUILD_DIR}/target/linux/mediatek/files-5.4/drivers/net/wireless/wifi_utility ]; then
95 mkdir -p ${BUILD_DIR}/target/linux/mediatek/files-5.4/drivers/net/wireless
96 cp -rf ${BUILD_DIR}/../ko_module/gateway/proprietary_driver/drivers/wifi_utility/ ${BUILD_DIR}/target/linux/mediatek/files-5.4/drivers/net/wireless
97 fi
developer20d67712022-03-02 14:09:32 +080098
99 cp -fpR ${BUILD_DIR}/autobuild/target/ ${BUILD_DIR}
100}
101
102prepare_mtwifi() {
103 #remove officail OpenWRT wifi script
104 #wifi-profile pkg will install wifi_jedi instead
105 rm -rf ${BUILD_DIR}/package/base-files/files/sbin/wifi
106
107 add_proprietary_kernel_files
108
109 #do mtk_wifi openwrt patch
110 do_patch ${BUILD_DIR}/autobuild/openwrt_patches${OPENWRT_VER}/mtk_wifi || exit 1
111}
112
developer9b3248d2022-07-06 00:44:05 +0800113prepare_flowoffload() {
developer3fb2e8c2022-07-08 11:35:22 +0800114 patch -f -p1 -i ${MTK_FEED_DIR}/autobuild_mac80211_release/0004-2102-netfilter-remove-nf_flow_table_hw.patch
115
developer9b3248d2022-07-06 00:44:05 +0800116 #rm patches for flowblock
117 rm -rf ./target/linux/generic/pending-5.4/64*.patch
118 rm -rf ./target/linux/generic/hack-5.4/647-netfilter-flow-acct.patch
119 rm -rf ./target/linux/generic/hack-5.4/650-netfilter-add-xt_OFFLOAD-target.patch
120 rm -rf ./target/linux/mediatek/patches-5.4/1002-mtkhnat-add-support-for-virtual-interface-acceleration.patch
121
122 #hack mt7986 config5.4
123 echo "CONFIG_BRIDGE_NETFILTER=y" >> ./target/linux/mediatek/mt7986/config-5.4
124 echo "CONFIG_NETFILTER_FAMILY_BRIDGE=y" >> ./target/linux/mediatek/mt7986/config-5.4
125 echo "CONFIG_SKB_EXTENSIONS=y" >> ./target/linux/mediatek/mt7986/config-5.4
126
127 #hack mt7622 config5.4
128 echo "CONFIG_BRIDGE_NETFILTER=y" >> ./target/linux/mediatek/mt7622/config-5.4
129 echo "CONFIG_NETFILTER_FAMILY_BRIDGE=y" >> ./target/linux/mediatek/mt7622/config-5.4
130 echo "CONFIG_SKB_EXTENSIONS=y" >> ./target/linux/mediatek/mt7622/config-5.4
131}
132
developere2cc0fa2022-03-29 17:31:03 +0800133prepare_mac80211() {
developer7b9aeab2022-06-13 11:31:33 +0800134 rm -rf ${BUILD_DIR}/package/network/services/hostapd
135 cp -fpR ${BUILD_DIR}/./../mac80211_package/package/network/services/hostapd ${BUILD_DIR}/package/network/services
136
137 rm -rf ${BUILD_DIR}/package/libs/libnl-tiny
138 cp -fpR ${BUILD_DIR}/./../mac80211_package/package/libs/libnl-tiny ${BUILD_DIR}/package/libs
139
140 rm -rf ${BUILD_DIR}/package/network/utils/iw
developerbd32d6d2022-06-14 13:19:41 +0800141 cp -fpR ${BUILD_DIR}/./../mac80211_package/package/network/utils/iw ${BUILD_DIR}/package/network/utils
developer7b9aeab2022-06-13 11:31:33 +0800142
143 rm -rf ${BUILD_DIR}/package/network/utils/iwinfo
144 cp -fpR ${BUILD_DIR}/./../mac80211_package/package/network/utils/iwinfo ${BUILD_DIR}/package/network/utils
145
146 rm -rf ${BUILD_DIR}/package/kernel/mac80211
147 cp -fpR ${BUILD_DIR}/./../mac80211_package/package/kernel/mac80211 ${BUILD_DIR}/package/kernel
148
149 rm -rf ${BUILD_DIR}/package/firmware/wireless-regdb
developerbd32d6d2022-06-14 13:19:41 +0800150 cp -fpR ${BUILD_DIR}/./../mac80211_package/package/firmware/wireless-regdb ${BUILD_DIR}/package/firmware
developer7b9aeab2022-06-13 11:31:33 +0800151
152 cp -fpR ${BUILD_DIR}/./../mac80211_package/package/kernel/mt76 ${BUILD_DIR}/package/kernel
developer27f88012022-09-01 11:15:04 +0800153 rm -rf ${BUILD_DIR}/package/kernel/mt76/patches/101-fix-encap-offload-ethernet-type-check.patch
developer7b9aeab2022-06-13 11:31:33 +0800154
developer9b3248d2022-07-06 00:44:05 +0800155 #hack mt7986 hostapd config
156 echo "CONFIG_MBO=y" >> ./package/network/services/hostapd/files/hostapd-full.config
157 echo "CONFIG_WPS_UPNP=y" >> ./package/network/services/hostapd/files/hostapd-full.config
158 echo "CONFIG_DPP=y" >> ./package/network/services/hostapd/files/hostapd-full.config
159 echo "CONFIG_DPP2=y" >> ./package/network/services/hostapd/files/hostapd-full.config
160 echo "CONFIG_DPP3=y" >> ./package/network/services/hostapd/files/hostapd-full.config
161 echo "CONFIG_DPP=y" >> ./package/network/services/hostapd/files/wpa_supplicant-full.config
162 echo "CONFIG_DPP2=y" >> ./package/network/services/hostapd/files/wpa_supplicant-full.config
163 echo "CONFIG_DPP3=y" >> ./package/network/services/hostapd/files/wpa_supplicant-full.config
164
developere2cc0fa2022-03-29 17:31:03 +0800165 patch -f -p1 -i ${MTK_FEED_DIR}/autobuild_mac80211_release/0001-master-mac80211-generate-hostapd-setting-from-ap-cap.patch
166 patch -f -p1 -i ${MTK_FEED_DIR}/autobuild_mac80211_release/0002-master-hostapd-makefile-for-utils.patch
167 patch -f -p1 -i ${MTK_FEED_DIR}/autobuild_mac80211_release/0003-master-mt76-makefile-for-new-chip.patch
168 cp -rfa ${MTK_FEED_DIR}/autobuild_mac80211_release/package/ ${BUILD_DIR}
developer73b93122022-04-19 23:16:58 +0800169 cp -rfa ${MTK_FEED_DIR}/autobuild_mac80211_release/target/ ${BUILD_DIR}
developere2cc0fa2022-03-29 17:31:03 +0800170}
171
developer20d67712022-03-02 14:09:32 +0800172copy_main_Config() {
173 echo cp -rfa autobuild/$1/.config ./.config
174 cp -rfa autobuild/$1/.config ./.config
175}
176
177install_output_Image() {
178 mkdir -p ${INSTALL_DIR}/$1
179
180 files=`find bin/targets/$3/*${2}* -name "*.bin" -o -name "*.img"`
181 file_count=0
182
183 for file in $files
184 do
185 tmp=${file%.*}
186 cp -rf $file ${INSTALL_DIR}/$1/${tmp##*/}-${BUILD_TIME}.${file##*.}
187 ((file_count++))
188 done
189
190 if [ ${file_count} = 0 ]; then
191 if [ ${build_flag} -eq 0 ]; then
192 let build_flag+=1
193 echo " Restart to debug-build with "make V=s -j1", starting......"
194 build $1 -j1 || [ "$LOCAL" != "1" ]
195 else
196 echo " **********Failed to build $1, bin missing.**********"
197 fi
198 else
199 echo "Install image OK!!!"
200 echo "Build $1 successfully!"
201 fi
202}
203
204install_output_Config() {
205 echo cp -rfa autobuild/$1/.config ${INSTALL_DIR}/$1/openwrt.config
206 cp -rfa autobuild/$1/.config ${INSTALL_DIR}/$1/openwrt.config
207 [ -f tmp/kernel.config ] && cp tmp/kernel.config ${INSTALL_DIR}/$1/kernel.config
208}
209
210install_output_KernelDebugFile() {
211 KernelDebugFile=bin/targets/$3/mt${2}*/kernel-debug.tar.bz2
212 if [ -f ${KernelDebugFile} ]; then
213 echo cp -rfa ${KernelDebugFile} ${INSTALL_DIR}/$1/kernel-debug.tar.bz2
214 cp -rfa ${KernelDebugFile} ${INSTALL_DIR}/$1/kernel-debug.tar.bz2
215 fi
216}
217
218install_output_RootfsDebugFile() {
219 STAGING_DIR_ROOT=$(make -f "autobuild/get_stagingdir_root.mk" get-staging-dir-root)
220 if [ -d ${STAGING_DIR_ROOT} ]; then
221 STAGING_DIR_ROOT_PREFIX=$(dirname ${STAGING_DIR_ROOT})
222 STAGING_DIR_ROOT_NAME=$(basename ${STAGING_DIR_ROOT})
223 echo "tar -jcf ${INSTALL_DIR}/$1/rootfs-debug.tar.bz2 -C \"$STAGING_DIR_ROOT_PREFIX\" \"$STAGING_DIR_ROOT_NAME\""
224 tar -jcf ${INSTALL_DIR}/$1/rootfs-debug.tar.bz2 -C "$STAGING_DIR_ROOT_PREFIX" "$STAGING_DIR_ROOT_NAME"
225 fi
226}
227
228install_output_feeds_buildinfo() {
229 feeds_buildinfo=$(find bin/targets/$3/*${2}*/ -name "feeds.buildinfo")
230 echo "feeds_buildinfo=$feeds_buildinfo"
231 if [ -f ${feeds_buildinfo} ]; then
232 cp -rf $feeds_buildinfo ${INSTALL_DIR}/$1/feeds.buildinfo
233 else
234 echo "feeds.buildinfo is not found!!!"
235 fi
236}
237
238install_release() {
239 temp=${1#*mt}
240 chip_name=${temp:0:4}
241 temp1=`grep "CONFIG_TARGET_ramips=y" autobuild/$1/.config`
242
243 if [ "${temp1}" == "CONFIG_TARGET_ramips=y" ]; then
244 arch_name="ramips"
245 else
246 arch_name="mediatek"
247 fi
248
249 #install output image
250 install_output_Image $1 ${chip_name} ${arch_name}
251
252 #install output config
253 install_output_Config $1
254
255 #install output Kernel-Debug-File
256 install_output_KernelDebugFile $1 ${chip_name} ${arch_name}
257
258 #tar unstripped rootfs for debug symbols
259 install_output_RootfsDebugFile $1
260
261 #install output feeds buildinfo
262 install_output_feeds_buildinfo $1 ${chip_name} ${arch_name}
263}
264
265prepare_final() {
266 #cp customized autobuild SDK patches
267 cp -fpR ${BUILD_DIR}/autobuild/$1/target/ ${BUILD_DIR}
268 cp -fpR ${BUILD_DIR}/autobuild/$1/package/ ${BUILD_DIR}
269
270
271 #cp special subtarget patches
272 case $1 in
273 mt7986*)
274 cp -rf ${BUILD_DIR}/autobuild/mt7986-AX6000/target/linux/mediatek/patches-5.4/*.* ${BUILD_DIR}/target/linux/mediatek/patches-5.4
275 ;;
276 *)
277 ;;
278 esac
279
280 #rm old legacy patch, ex old nfi nand driver
281 case $1 in
282 mt7986*|\
283 mt7981*)
284 rm -rf ${BUILD_DIR}/target/linux/mediatek/patches-5.4/0303-mtd-spinand-disable-on-die-ECC.patch
285 ;;
286 *)
287 ;;
288 esac
289
290 cd ${BUILD_DIR}
291 [ -f autobuild/$1/.config ] || {
292 echo "unable to locate autobuild/$1/.config !"
293 return
294 }
295
296 rm -rf ./tmp
297 #copy main test config(.config)
298 copy_main_Config $1
299
300 echo make defconfig
301 make defconfig
302}
303
304build() {
305 echo "###############################################################################"
306 echo "# $1"
307 echo "###############################################################################"
308 echo "build $1"
309
310 cd ${BUILD_DIR}
311
developer9b3248d2022-07-06 00:44:05 +0800312 #make
313
314 echo "make V=s -j $(($(nproc) + 1)) download world"
315 make V=s -j $(($(nproc) + 1)) download world || exit 1
316
317 #tar unstripped rootfs for debug symbols
318 install_release $1
319}
320
321build_log() {
322 echo "###############################################################################"
323 echo "# $1"
324 echo "###############################################################################"
325 echo "build $1"
326
327 cd ${BUILD_DIR}
328
329 #make
330
331 echo "make V=s -j $(($(nproc) + 1)) download world"
332 make V=s -j $(($(nproc) + 1)) download world || make V=s -j1 || exit 1
developer20d67712022-03-02 14:09:32 +0800333
334 #tar unstripped rootfs for debug symbols
335 install_release $1
336}