全部博文(19)
发布时间:2014-11-10 15:51:41
//Based on Linux v3.14 source codeLinux设备树机制(Device Tree)一、描述ARM Device Tree起源于OpenFirmware (OF),在过去的Linux中,arch/arm/plat-xxx和arch/arm/mach-xxx中充斥着大量的垃圾代码,相当多数的代码只是在描述板级细节,而这些板级细节对于内核来讲,不过是垃圾.........【阅读全文】
发布时间:2014-11-12 15:50:04
静态IP配置方法:编辑/etc/network/interfaces,删掉内容,并输入以下几行(假设你的网卡是eth0)sudo gedit /etc/network/interfacesauto eth0iface eth0 inet static //指定为staticaddress 192.168.1.103 //IP地址gateway 192.168.1.1 //网关netmask 255.255.255.0 .........【阅读全文】
发布时间:2014-11-10 16:00:54
原文链接:http://devicetree.org/Device_Tree_Usage#How_Interrupts_WorkDevice Tree Usage设备树使用手册This page walks through how to write a device tree for a new machine. It is intended to provide an overview of device tree concepts and how they are used to describe a machine.本文将介绍如何为一个新机器编写设备树。我们准备提供一个有关设备树概念的概......【阅读全文】
发布时间:2014-11-10 15:56:36
一、概述从2.6内核引入了sysfs文件系统,与proc, devfs, devpty同类别,属于虚拟的文件系统。目的是展示设备驱动模型中各组件的层次关系,第一层目录:block, device, bus, drivers, class, power, firmware.block 块设备;devices 系统所有的设备并根据设备挂接的总线类型组织成层次结构;bus 系统所有的总线类型;driver.........【阅读全文】