红联Linux门户
Linux帮助

Banana Pi BPI-M2U不能烧写原因分析

发布时间:2017-06-09 15:02:29来源:linux网站作者:meirixuexi
本文主要解决问题:
安装LiveSuit后,按住Banana PI BPI-M2U升级仍然不能进入烧写模式;
$lsusb
其中错误信息为: 
“1f3a:efe8 Onda (unverified) V972 tablet in flashing mode”
 
前提条件:
1.依据Linux-sunxi官网提供的livesutie安装方法,依次正常安装;
2.Banana PI bpi-m2u开发板正常连接;
 
解决路径:
最终的原因是awusb.ko没有正常加载, 原因在于ubuntu14.04升级后没有依据新内核,需要重新生成linux-sunxi.org/LiveSuit中提到的awusb.ko
 
参考资料:
有用的结果如下:
1.Make sure your device can connect to Ubuntu via USB. Type
sudo gedit /etc/udev/rules.d/51-android.rules
Add the following new line to the text file that opens, save and close:
SUBSYSTEM=="usb", ATTR{idVendor}=="1f3a", MODE="0664", GROUP="plugdev"   (采纳)
2.Install developer USB libraries and DKMS:  (已安装)
sudo apt-get install libusb-1.0-0-dev
sudo apt-get install dkms
3.Install LiveSuite for Linux (following instructions from http://linux-sunxi.org/LiveSuit ): 
3.1.Download the appropriate LiveSuit version from http://docs.cubieboard.org/downloads
3.2.Unzip and execute LiveSuit.run
4.Restart your computer to make sure all the newly installed modules are initialized correctly.
 
本文永久更新地址:http://www.linuxdiyf.com/linux/31378.html