blob: f23148f41443a09eabb390dc968bce4f07e0d55a [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}
113}
114
developer20d67712022-03-02 14:09:32 +0800115copy_main_Config() {
116 echo cp -rfa autobuild/$1/.config ./.config
117 cp -rfa autobuild/$1/.config ./.config
118}
119
120install_output_Image() {
121 mkdir -p ${INSTALL_DIR}/$1
122
123 files=`find bin/targets/$3/*${2}* -name "*.bin" -o -name "*.img"`
124 file_count=0
125
126 for file in $files
127 do
128 tmp=${file%.*}
129 cp -rf $file ${INSTALL_DIR}/$1/${tmp##*/}-${BUILD_TIME}.${file##*.}
130 ((file_count++))
131 done
132
133 if [ ${file_count} = 0 ]; then
134 if [ ${build_flag} -eq 0 ]; then
135 let build_flag+=1
136 echo " Restart to debug-build with "make V=s -j1", starting......"
137 build $1 -j1 || [ "$LOCAL" != "1" ]
138 else
139 echo " **********Failed to build $1, bin missing.**********"
140 fi
141 else
142 echo "Install image OK!!!"
143 echo "Build $1 successfully!"
144 fi
145}
146
147install_output_Config() {
148 echo cp -rfa autobuild/$1/.config ${INSTALL_DIR}/$1/openwrt.config
149 cp -rfa autobuild/$1/.config ${INSTALL_DIR}/$1/openwrt.config
150 [ -f tmp/kernel.config ] && cp tmp/kernel.config ${INSTALL_DIR}/$1/kernel.config
151}
152
153install_output_KernelDebugFile() {
154 KernelDebugFile=bin/targets/$3/mt${2}*/kernel-debug.tar.bz2
155 if [ -f ${KernelDebugFile} ]; then
156 echo cp -rfa ${KernelDebugFile} ${INSTALL_DIR}/$1/kernel-debug.tar.bz2
157 cp -rfa ${KernelDebugFile} ${INSTALL_DIR}/$1/kernel-debug.tar.bz2
158 fi
159}
160
161install_output_RootfsDebugFile() {
162 STAGING_DIR_ROOT=$(make -f "autobuild/get_stagingdir_root.mk" get-staging-dir-root)
163 if [ -d ${STAGING_DIR_ROOT} ]; then
164 STAGING_DIR_ROOT_PREFIX=$(dirname ${STAGING_DIR_ROOT})
165 STAGING_DIR_ROOT_NAME=$(basename ${STAGING_DIR_ROOT})
166 echo "tar -jcf ${INSTALL_DIR}/$1/rootfs-debug.tar.bz2 -C \"$STAGING_DIR_ROOT_PREFIX\" \"$STAGING_DIR_ROOT_NAME\""
167 tar -jcf ${INSTALL_DIR}/$1/rootfs-debug.tar.bz2 -C "$STAGING_DIR_ROOT_PREFIX" "$STAGING_DIR_ROOT_NAME"
168 fi
169}
170
171install_output_feeds_buildinfo() {
172 feeds_buildinfo=$(find bin/targets/$3/*${2}*/ -name "feeds.buildinfo")
173 echo "feeds_buildinfo=$feeds_buildinfo"
174 if [ -f ${feeds_buildinfo} ]; then
175 cp -rf $feeds_buildinfo ${INSTALL_DIR}/$1/feeds.buildinfo
176 else
177 echo "feeds.buildinfo is not found!!!"
178 fi
179}
180
181install_release() {
182 temp=${1#*mt}
183 chip_name=${temp:0:4}
184 temp1=`grep "CONFIG_TARGET_ramips=y" autobuild/$1/.config`
185
186 if [ "${temp1}" == "CONFIG_TARGET_ramips=y" ]; then
187 arch_name="ramips"
188 else
189 arch_name="mediatek"
190 fi
191
192 #install output image
193 install_output_Image $1 ${chip_name} ${arch_name}
194
195 #install output config
196 install_output_Config $1
197
198 #install output Kernel-Debug-File
199 install_output_KernelDebugFile $1 ${chip_name} ${arch_name}
200
201 #tar unstripped rootfs for debug symbols
202 install_output_RootfsDebugFile $1
203
204 #install output feeds buildinfo
205 install_output_feeds_buildinfo $1 ${chip_name} ${arch_name}
206}
207
208prepare_final() {
209 #cp customized autobuild SDK patches
210 cp -fpR ${BUILD_DIR}/autobuild/$1/target/ ${BUILD_DIR}
211 cp -fpR ${BUILD_DIR}/autobuild/$1/package/ ${BUILD_DIR}
212
213
214 #cp special subtarget patches
215 case $1 in
216 mt7986*)
217 cp -rf ${BUILD_DIR}/autobuild/mt7986-AX6000/target/linux/mediatek/patches-5.4/*.* ${BUILD_DIR}/target/linux/mediatek/patches-5.4
218 ;;
219 *)
220 ;;
221 esac
222
223 #rm old legacy patch, ex old nfi nand driver
224 case $1 in
225 mt7986*|\
226 mt7981*)
227 rm -rf ${BUILD_DIR}/target/linux/mediatek/patches-5.4/0303-mtd-spinand-disable-on-die-ECC.patch
228 ;;
229 *)
230 ;;
231 esac
232
233 cd ${BUILD_DIR}
234 [ -f autobuild/$1/.config ] || {
235 echo "unable to locate autobuild/$1/.config !"
236 return
237 }
238
239 rm -rf ./tmp
240 #copy main test config(.config)
241 copy_main_Config $1
242
243 echo make defconfig
244 make defconfig
245}
246
247build() {
248 echo "###############################################################################"
249 echo "# $1"
250 echo "###############################################################################"
251 echo "build $1"
252
253 cd ${BUILD_DIR}
254
255 #make
256 echo make V=s $2
257 make V=s $2 || exit 1
258
259 #tar unstripped rootfs for debug symbols
260 install_release $1
261}