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