Author:DriverMonkey
Mail:bookworepeng@Hotmail.com
Phone:13410905075
QQ:196568501
硬件环境:AM335X
软件环境:linux 3.2
bug 定位过程:
现象:1)系统运行一晚上,配置硬件操作失效
2)系统放置在那,没有用...
分类:
其他好文 时间:
2014-07-22 23:01:53
阅读次数:
384
50 4 2 2 2 3000 com.mysql.jdbc.Driver
jdbc:mysql:///abc ...
分类:
数据库 时间:
2014-05-06 00:33:33
阅读次数:
445
输入子系统在内核中的位置:/driver/input
drivers/input/input.c: input_init ---> err = register_chrdev(INPUT_MAJOR,
"input", &input_fops); static const struct file_o...
分类:
其他好文 时间:
2014-05-05 23:34:42
阅读次数:
516
webdriver
获取表格内的文案:先定位到表格,再使用getText()方法重新封装getText()方法,如下所示 public String getText(String
xpath){ WebElement e = driver.findElement(By.xpath(xpath));....
分类:
Web程序 时间:
2014-05-05 11:14:58
阅读次数:
304
org.hibernate.dialect.MySQLDialect
com.mysql.jdbc.Driver jdbc:mysql://localhost:3306/hibernate root root true ...
分类:
系统相关 时间:
2014-05-05 09:41:36
阅读次数:
459
在memory.c里面有这么一段代码。为了其中的一句话,让我内牛满面啊!
dir = (unsigned long *) ((from>>20) & 0xffc)
int free_page_tables(unsigned long from,unsigned long size)
{
unsigned long *pg_table;
unsigned long...
分类:
系统相关 时间:
2014-05-04 18:22:41
阅读次数:
459
简介DeviceIoControl的三种通信方式...
Linux的内核和System Call不好调试,参考这里:
http://stackoverflow.com/questions/5999205/cannot-step-into-system-call-source-code
简单来说,如果想在本机调试system call,那么当你进入system call时,系统已经在挂起状态了,那么它又怎样能响应用户的输入?
所以,有一个UML...
分类:
数据库 时间:
2014-05-04 09:28:22
阅读次数:
463
1.编译kernel进入源码根目录make defconfig
//这一步生成了默认的内核配置,请参考make help生成的信息。make //这一步生成了bzImage2.制作根文件系统dd if=/dev/zero
of=rootfs.img bs=1M count=10 //生成了rootf...
分类:
系统相关 时间:
2014-05-03 23:59:39
阅读次数:
592
更改第三方手机检测到的CPU厂商型号,在kernel\arch\arm\mach-msm下面对应的Board-*.c文件里更改,比如我们是8226的CPU,就要在Board-8226.c里将DT_MACHINE_START(MSM8226_DT, "Qualcomm MSM 8226 (Flattened Device Tree)") 这里的8226改成客户指定的型号,比如要改成8926,就要这...
分类:
其他好文 时间:
2014-05-03 21:41:37
阅读次数:
432