发布时间:2013-09-24 12:52:04
通过两天的努力把linux下字符型设备实现。开发过程中,学过的文件系统、竞争、字符型设备、用户空间和内核空间数据传输都是零散的知识。通过手动编写代码让我清晰的明白了很多知识的运用。整个程序的步骤LDD书中讲的很清晰,我在稍微总结一翻。1.创建你要的设备类型,次设备类型如同你要操作的对象,里面每个字段都是你要.........【阅读全文】
发布时间:2013-09-22 14:45:34
Ubuntu 12.04 LTS Propre install depend package:1.apt-get install hostapd dhcp3-server2.run shell on you notbook.#!/bin/bash# ai hostapd dhcp3-server iw list|grep '* AP'[ $? -ne 0 ] && echo "No device support AP mode." && exits.........【阅读全文】
发布时间:2013-09-16 16:33:02
Initializing a Repo client
After installing Repo, set up your client to access the Android source repository:
Create an empty directory to hold your working files. If you're using MacOS, this has to be on a case-sensitive filesystem. Give it any name you like:
$ mkdir WORKING_DIRECTORY
$ cd WORKING_DIRECTORY
Run repo init to bring down the latest version of Repo with all its most recent bug fixes. You must specify a URL for the manifest, which spec......【阅读全文】
发布时间:2013-09-12 15:19:34
1. XDA-Developers 这个毋庸多说啦,鼎鼎有名的智能机论坛,www.xda-developers.com2. AndroidCommunityhttp://androidcommunity.com/forums/f76/ 这个是咱i9000的3.Androidforumhttp://androidforums.com/4.台湾的Mobile01(台湾是大陆不可分割的一部分) 资源也很丰富,关键是咱很容易看懂h.........【阅读全文】
发布时间:2013-09-12 11:01:34
其实很简单:打开终端,然后sudo -i获取root权限,然后:sudo modprobe -r psmousesudo modprobe psmouse proto=imps执行以后就发现触摸板可以用了。。。然后为了下次登录后也可以使用,可以新建文件 /etc/modprobe.d/options里面填入代码:options psmouse proto=imps之后保存下都行啦~~GOOD LUC.........【阅读全文】