LiveSuit是全志Allwinner很多平台的烧写工具,今天碰到一个问题,就是要烧image时,不会弹出“是否格式化数据分区?”窗口。
折腾了一下午才搞定,归根到底是awusb此模块没有装载导致。
首先,安装http://linux-sunxi.org/LiveSuit所说的安装LiveSuit。其步骤如下:
Debian/Ubuntu
Before you can build this module, you first need to install dkms
apt-get install dkms
Now descend into the awusb directory and run
make
Now install the module in your module tree, and load it:
cp awusb.ko /lib/modules/`uname -r`/kernel/ depmod -a modprobe awusb
Add the following 50-awusb.rules file to /etc/udev/rules.d, to be able to access the device as a normal user:
KERNEL=="aw_efex[0-9]*", MODE="0666"
Now reload udev rules to make the change active
udevadm control --reload-rules
以上步骤基本都需要加上sudo,过程中,可使用lsmod查阅是否装载成功awusb,期间我有遇到如下问题:
1. depmod -a 时提示 depmod: FATAL: awusb: not absolute path
该命令作用是:
来自: http://man.linuxde.net/depmod
来自: http://man.linuxde.net/depmod
来自: http://man.linuxde.net/depmod
modprobe ***
加载模块, 你需要先将模块拷贝到
/lib/modules /xxxx-generic
目录下,然后运行
sudo depmod -a
将模块信息写入modules.dep、modules.dep.bin、modules.
alias.bin、modules.alias和modules.pcimap文件中。
2. modprobe awusb 时提示 modprobe: ERROR: could not insert 'awusb': Exec format error
使用dmesg命令,可知错误原因是 awusb: disagrees about version of symbol module_layout
参考:
http://linux-sunxi.org/LiveSuit
https://www.freemindworld.com/blog/2013/131010_360_wifi_in_linux.shtml
http://stackoverflow.com/questions/2720177/module-layout-version-incompatibility
http://blog.chinaunix.net/uid-27714502-id-3685731.html?/223.shtml
http://blog.csdn.net/suqin0802/article/details/7268967