红联Linux门户
Linux帮助

Ubuntu LiveSuit V3.06不能烧写问题

发布时间:2016-03-12 15:46:18来源:linux网站作者:fickyou

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

该命令作用是:
在linux桌面系统中,当你编译了新的驱动,为了能够用modprobe ***加载模块, 你需要先将模块拷贝到/lib/modules /2.6.31-20-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://www.linuxdiyf.com/linux/18868.html