搜索资源列表
ch18
- linux 内核调试技术 掌握几种内核的调试方法-linux kernel debugger technical grasp of several core debugging method
kernel
- 解读linux内核源码的入门方法,适合初学-Interpretation of linux kernel source code entry method, suitable for beginners
LinuxDriver
- 本书指导你如何编写你自己的驱动, 以及如何利用内核相关的部分. 我们采用一种设备-独立的方法 编程技术和接口, 在任何可能的时候, 不会捆绑到任何特定的设备. 每一个驱动都是不同的 作为一个驱动编写者, 你需要深入理解你的特定设备. 但是大部分的原则和基本技术对所有驱动都是一样的. 本书无法教你关于你的设备的东西, 但是它给予你所需要的使你的设备运行起来的背景知识的指导.-This book to guide you how to write your own driver, and how t
linux_kerl
- linux内核裁剪的具体过程和方法 里面详细讲述了linux内核的make menuconfig里面各个选项的意义-linux kernel cutting process and the specific method described in detail inside the linux kernel make menuconfig inside of the significance of the various options
the-design-and-implement-of-the-SGI
- 阐述了Linux安全网关接口SGI的基本结构和实现方法,以及实现SGI涉及的Linux防火墙 内核接口模块、/proc文件系统内核接口等关键技术。-This paper describes the Linux security gateway interface SGI basic structure and realization method, and realize the Linux kernel involved SGI interface module, proc filesyst
Linux
- linux 0.11 内核注释,作者写的非常详尽深刻,是学习操作系统不可或缺的一本书,介绍了内核代码组织结构与相互之间的关系,还说明了编译内核的方法-linux 0.11 kernel notes, the authors write very detailed and profound, is to learn the operating system an indispensable book on the organizational structure of the kernel cod
LTP_of_the_LINUX_kernel_based_test_method
- 基于LTP的LINUX内核测试方法研究:内核作为Linux最关键的部分,其稳定性决定了系统的稳定性。Linux版本升级频繁,应用范围不断扩大,功能不断增强,但层ffI不穷的补丁程序为内核引入了诸多问题-LTP of the LINUX kernel-based test method: Linux kernel as the most critical part of its stability determines the stability of the system. Linux vers
memshare
- 本代码是用户态和内核态通信的一种实现方式。用户态通过与内核态共享内存来访问内核态数据。内核态共享内存的地址通过netlink传递给用户态。-this code is a communication method between user space and kernel space.user space access kernel data through shared memory.the address of shared memory created in kernel space is
linux_system_call
- 在Linus系统中添加系统调用方法,详细讲解了修改内核的方法-Linus added to the system in the system call method, explained in detail the methods to modify the kernel
linux-kernel-porting-on-godson
- 龙芯平台上linux内核移植和开发的手册,详细描述了CPU相关的部分移植的方法。-Godson platform linux kernel porting and developing the manual, a detailed descr iption of the CPU-related part of the transplantation method.
linux2.6kernelmodulecompile
- linux2.6 内核模块、驱动程序编译方法-linux2.6 kernel module driver compiled method
acpi_call
- A kernel module that enables you to call ACPI methods by writing the method name followed by arguments to /proc/acpi/call, for example to turn off discrete graphics card in a dual graphics environment (like NVIDIA Optimus). from https://github.
Linux
- 内核调用的算法实例 带有例子 详细介绍了内核的结构及调用方法-The algorithm is called an instance of the kernel described in detail with examples of core structure and method calls
Linux-driver-development19
- 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第19章、Flash设备驱动。Flash在嵌入式系统中是必不可少的,它是BootLoader、Linux内核和文件系统的最佳载体。在Linux内核中,引入了MTD层为NOR Flash和NAND Flash设备提供统一的接口,从而使得Flash驱动的设计工作大为简化。19.1节讲解了Linux Flash驱动的结构,主要讲解了MTD系统的层次结构和接口。19.2节和19.3节分别讲解了NOR Flash和N
Linux-driver-development3
- 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第3章、Linux内核及内核编程。由于Linux驱动编程本质属于Linux内核编程,因此有必要掌握Linux内核及内核编程的基础知识。3.1~3.2节讲解Linux内核的演变及Linux 2.6内核的特点。3.3节分析了Linux内核源代码目录结构和Linux内核的组成部分及其关系,并对Linux的用户空间和内核空间进行了讲解。3.4节讲解了Linux 2.6内核的编译及内核引导过程。另外,还描述了在Lin
Linux-driver-development5
- 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第5章、Linux文件系统与设备文件系统。由于字符设备和块设备都很好地体现了“一切都是文件”的设计思想,掌握Linux文件系统、设备文件系统的知识非常重要。首先,设备驱动最终通过操作系统的文件系统调用或C库函数(本质也基于系统调用)被访问。其次,驱动工程师在设备驱动中不可避免地会与设备文件系统打交道,如Linux 2.4内核的devfs文件系统和Linux 2.6内核的基于sysfs的udev文件系统。5.
Linux-driver-development10
- 作者:华清远见嵌入式学院。《Linux设备驱动开发详解》(08&09年度畅销榜TOP50)第10章、中断与时钟。本章主要讲解Linux设备驱动编程中的中断与定时器处理。由于中断服务程序的执行并不存在于进程上下文,因此,要求中断服务程序的时间尽可能地短。因此,Linux在中断处理中引入了顶半部和底半部分离的机制。另外,内核中对时钟的处理也采用中断方式,而内核软件定时器最终依赖于时钟中断。10.1节讲解中断和定时器的概念及处理流程。10.2节讲解Linux中断处理程序的架构,顶半部、底半部之间的关系
Linux-2
- 1、将 Linux 内核采用 arm-linux-gcc3.4.1 交叉编译生成 uImage 格式的二进制文件,之后将其烧写入开发板的 Flash 存储器; 2、练习 Linux 内核的定制方法; -1, the Linux kernel using arm-linux-gcc3.4.1 cross-compiler to generate uImage binary file format, then burn to write their development board Fl
111USB
- LINUX内核空间USB运动控制卡驱动程序的开发,介绍一种基于ARM 体系结构的运动控制卡的设计方法,通过嵌入linux 操作系统实现多任务管理,USB 接口与上位机 通信,克服了采用传统并行总线结构的弊端。以一种USB 运动控制卡为实例来介绍利用dev 文件系统开发字符设备驱动程序的关键技术-The LINUX kernel space USB motion control card driver development, introduces one kind based on the
how-to-read-Linux-kernel
- 详细介绍了linux内核的阅读方法,有很多实用的技巧,工具,是学习Linux的必备-Linux kernel was introduced in detail the reading method, there are a lot of practical skills, tools, is essential to learn Linux