MT7688 編譯過程中的一些錯誤的解決方法
阿新 • • 發佈:2019-01-22
1.將編譯好的韌體燒錄到板子中,在啟動時出現 LZMA ERROR 1 - must RESET board to recove
解決:這是由於系統中lzma的版本太高的願意所致,解決方法就是降低版本!
1)解壓lzma-4.32.7.tar.gz (1)./configure (2) make (3)make install
2)cd lzma-4.32.7/src/lzma
3)cp lzma RT288x_SDK/source/
4) 修改makefile檔案:(1)cd RT288x_SDK/source/vendors/Ralink/MT7628# (2) vim Makefile (3)修改第123行,將 cd $(IMAGEDIR) ; rm -f $(KERNELZ).*; $(COMP) -9 -f -S .$(COMP) $( KERNELZ) 修改為: cd $(IMAGEDIR) ; rm -f $(KERNELZ).*; ../$(COMP) -9 -f -S .$(COMP)
$( KERNELZ)
2.在make menuconfig的時候出現錯誤:
/usr/bin/ld: cannot find -lncurses
collect2: ld returned 1 exit status
-e
>> Unable to find the Ncurses libraries.
>>
>> You must have Ncurses installed in order
>> to use 'make menuconfig'
make[1]: *** [ncurses] Error 1
make[1]: Leaving directory `/home/osama/mt7688/RT288x_SDK/source/config/scripts/lxdialog'
make: *** [menuconfig] Error 2
解決:安裝libncurses
sudo apt-get install libncurses5-dev
3.fatal error: lzma.h: No such file or director
解決:apt-get install -y liblzma-dev
4.編譯過程遇到 error: conflicting types for 'change_oem_password'的錯誤
解決:把SDK 刪除,重新解壓,用普通使用者去編譯