選擇目標編譯固件平臺css
cd ~/source
編輯前檢查linux
make defconfig make prereq
設置固件默認大小及自定義新硬件
想生成自定義名稱固件、機器型號須要修改8處地方
主板CPU是MT7620N
硬件是和ZBT WR8305RT的硬件同樣
板子上的真實型號是JGX-X5
固件容量: 16M
十六進制: 0xfb0000
十進制: 16121856≈15.375web
`cd ~/source/target/linux/ramips/``ide
第1步:定義profile文件,用於make menuconfig顯示菜單code
file="./image/mt7620.mk" cat >>$file <<EOF define Device/jlcsswrt DTS:= JLCSSWRT BLOCKSIZE := 64k IMAGE_SIZE := $(ralink_default_fw_size_16M) DEVICE_TITLE := MYWRT endef TARGET_DEVICES += jlcsswrt EOF
第2步:sed使用「」時:\t表示製表符orm
file="./base-files/lib/ramips.sh" grep "jlcsswrt" $file if [ $? -ne 0 ];then num=`grep -A1 -n 'name.*wr8305rt.*' $file |grep ';;' |awk -F '-' '{print $NR}'` sed -i "${num}a\\\t*\"MYWRT\")" $file num=$[$num+1] sed -i "${num}a\\\t\\tname=\"jlcsswrt\"" $file num=$[$num+1] sed -i "${num}a\\\t\\t;;" $file fi grep ".*jlcsswrt.*" $file -C4 -i
第3步:sed使用‘’時:\t表示製表符接口
file="./base-files/lib/upgrade/platform.sh" grep "jlcsswrt" $file if [ $? -ne 0 ];then sed-i '/wr8305rt/a\\tjlcsswrt|\\' $file fi grep "jlcsswrt" $file -C1
第4步:ip
file="./base-files/etc/diag.sh" grep "jlcsswrt" $file if [ $? -ne 0 ];then sed -i '/wr8305rt/i\\tjlcsswrt|\\' $file fi grep 'jlcsswrt' $file -C1
第5步:定義系統led接口內存
file="./base-files/etc/board.d/01_leds" grep "jlcsswrt" $file if [ $? -ne 0 ];then sed-i '/wr8305rt/i\jlcsswrt|\\' $file fi grep "jlcsswrt" $file -A1
第6步:定義network接口ci
file="./base-files/etc/board.d/02_network" grep "jlcsswrt" $file if [ $? -ne 0 ];then sed -i '/wr8305rt/i\\tjlcsswrt|\\' $file fi grep "jlcsswrt" $file -C1
第7步:定義DTS文件,設備型號、內存大小、分區信息等
修改flash分區
因爲咱們的flash是16M的,修改firmware分區大小爲0xfb0000(L45)
(firmware)+(factory)+(uboot-env)+(uboot)=flash
(kernel)+(rootfs)=firmware
(squashfs(ro))+(jffs2(rw,rootfs_data))=rootfs
\cp ./dts/ZBT-WR8305RT.dts./dts/MYWRT.dts file="./dts/MYWRT.dts" com=`grep 'compatible.*mt7620n.*$' $file|awk -F '"' '{print $2}'` sed -i "s#${com}#jlcsswrt#g"$file model=`grep 'model.*' $file |awk -F'"' '{print $2}'` sed -i "s#${model}#MYWRT#g"$file label=`echo $com |awk -F ',' '{print $2}'` sed -i "s#${label}#jlcsswrt#g"$file sed -i '/0x50000/s/0x7b0000/0xfb0000/g'$file #設置固件大小爲16M grep -i 'MYWRT' $file
第8步:刪除文件並從新選擇目標固件
rm -rf ~/source/tmp
進入編譯菜單,選擇目標平臺make menuconfig
Target System (MediaTek Ralink MIPS) ---> (X) MediaTek Ralink MIPS #選擇廠商 Subtarget (MT7620 based boards) --->(X) MT7620 based boards #選擇CPU類型 Target Profile (MYWRT) --->(X) MYWRT #選擇目標平臺 LuCI --->1. Collections ---><*> luci #啓用web界面支持 LuCI --->2. Modules --->Translations ---><*> Chinese (zh-cn) #添加中文語言包 LuCI --->3. Modules --->Translations ---><*> English (en) #添加英文語言包 LuCI --->4. Themes ---><*>luci-theme-material #添加主題
退出前保存
make V=s 編譯;
原文:http://www.luyouqiwang.com/xinwen/20402/