CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 系统编程 Linux/Unix编程 搜索资源 - insmod

搜索资源列表

  1. ark3116-0.4.2.tar

    0下载:
  2. 采用ark 3116芯片组的usb转rs232接口线的linux下驱动程序,要求linux内核是2.6版本,用压缩包中的makefile直接make make install即生成.o后缀的elf驱动程序,用insmod按装-used ark 3116 chip set usb rs232 interface to the line under linux driver require Linux kernel 2.6 version, compressed using the makefile
  3. 所属分类:Linux/Unix编程

    • 发布日期:2008-10-13
    • 文件大小:6.7kb
    • 提供者:杨亦红
  1. drivers

    0下载:
  2. H9200F(内核2.6.12)的DAC接口驱动 操作方法: 1、将驱动程序dac712.ko拷贝到系统目录:/lib/modules 2、执行如下命令加载模块,系统自动建立设备文件: insmod /lib/modules/dac712.ko
  3. 所属分类:Linux/Unix编程

    • 发布日期:2014-01-18
    • 文件大小:11.55kb
    • 提供者:imho
  1. drv

    0下载:
  2. H9200F(2.6.12)的音频接口驱动。 操作方法: 1、将驱动程序rsound.ko拷贝到系统目录:/lib/modules 2、执行如下命令加载模块: insmod /lib/modules/rsound.ko
  3. 所属分类:Linux/Unix编程

    • 发布日期:2014-01-18
    • 文件大小:43.51kb
    • 提供者:imho
  1. scullpipe

    0下载:
  2. linux下驱动程序。可以实现简单的命名管道功能。参考《linux设备驱动程序》第六章。 用make编译,sudo insmod scullpipe.ko装载,sudo rmmod scullpipe卸载。装载后根据/proc/devices中设备号用mknod创建设备文件。-drivers under linux. Can achieve a simple named pipe functions. Reference to linux device drivers Chapter VI
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-02
    • 文件大小:153.98kb
    • 提供者:肖皓
  1. interrupt

    0下载:
  2. interrupt application code * compile : * $/usr/local/arm/2.95.3/bin/arm-linux-gcc -o interrupt interrupt.c * $cp interrupt /tftpboot/examples * run in target: * #mount 192.168.1.180:/tftpboot/ /mnt/nfs * #cd /mnt/nfs/examples * #
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-11
    • 文件大小:1.18kb
    • 提供者:nameblue
  1. 02.cdriver

    0下载:
  2. linux2.4内核下的驱动模板 非常规范的2.4内核驱动模板。直接make insmod插入即可看到现象-linux2.4 insmod rmmod
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-04
    • 文件大小:5.68kb
    • 提供者:xdw
  1. busybox

    0下载:
  2. busybox源码包,busybox是linux的命令工具集,包含例如login,insmod等,许多linux命令的源代码,编译这个源码包,就会生成若干linux命令工具的可执行程序。-busybox source packet,linux command toolset,include login,ismod ...
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-10
    • 文件大小:2.1mb
    • 提供者:洪烨华
  1. TPLinkUSB

    0下载:
  2. TP-Link USB无线网卡首先烧写zImage文件;其次把rt73.ko、rt73.bin、rt73sta.dat这三个文件下载到目标板上的/tmp目录下面;然后insmod /tmp/rt73.ko加载模块;最后通过命令ifconfig rausb0 192.168.3.100 up启用USB无线网卡。-TP-Link USB wireless network adaptor
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-03
    • 文件大小:1.31mb
    • 提供者:洪烨华
  1. device_loadcodes

    0下载:
  2. 这是Linux下的一个驱动加载测试程序,虽说是测试,但是,代码可并不像简单的打印一个helloworld一样简单。该程序先用gcc把它编译生成目标文件,然后再用insmod codename.o命令进行模块加载。加载以后,本驱动程序将永久保存,直到用卸载命令把它卸除才会消失。-This is a Linux driver to load under the test procedures, although it is tested, but the code is not as simple
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-03
    • 文件大小:7.46kb
    • 提供者:
  1. chardev.tar

    0下载:
  2. ubuntu环境下字符设备驱动程序的示例。使用方法是:终端中make生成设备目标文件。insmod globalvar.ko 载入设备。mknod /dev/globalvar c 2548 0 生成设备文件,c表示字符设备,2548是主设备号。编译执行test测试驱动程序。-ubuntu environment, character device driver for example. To use is: make the terminal device generates the targ
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:1.21kb
    • 提供者:谢伟
  1. VT6656_Linux_src_v1.19_12_x86

    0下载:
  2. 自己编译的USB接口wifi驱动模块(VT6656,),S5PC100开发板可用,insmod模式,带WPA加密模块,WPA-supplicant为加密脚本。--USB interface, to compile the wifi driver module ( series can be used), S5PC00 development board is available, insmod mode, with WPA encryption module, WPA-supplicant fo
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-16
    • 文件大小:4.37mb
    • 提供者:helong
  1. hello_printk

    0下载:
  2. linux下hello world简单驱动程序。在装载和卸载该模块时,打印输出。 使用make编译,sudo insmod hello_prink.ko装载模块,sudo rmmod hello_prink卸载模块,dmesg查看打印信息。-A simple hello world driver program under linux. Loading and unloading the module, the print output. Use make to compile, sudo
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-04
    • 文件大小:14.63kb
    • 提供者:肖皓
  1. busybox

    0下载:
  2. busybox是linux的命令工具集,包含例如login,insmod等, 许多linux命令的源代码,编译这个源码包,就会生成若干linux命令工具的可执行程序-busybox linux command toolset, such as login, insmod linux command source code, compile the source package, it will generate a number of linux commands executable tool
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-05-10
    • 文件大小:2.1mb
    • 提供者:yulinqer
  1. offsetcount

    0下载:
  2. 计算linux下,内核task_struct mm_struct fs_struct等关键结构体的变量的偏移量。原理是利用LKM,直接make insmod Offset.ko即可-Calculated under linux kernel task_struct mm_struct fs_struct and other key structure variable offset. Principle is to use the LKM, directly can make insmod Of
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-12-07
    • 文件大小:1.24kb
    • 提供者:ff
  1. insmod

    0下载:
  2. Mini insmod implementation for busybox for linux API Driver.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-11
    • 文件大小:1.39kb
    • 提供者:penggierou
  1. modutils-24

    0下载:
  2. Mini insmod implementation busybox for Linux. -Mini insmod implementation busybox for Linux.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-26
    • 文件大小:22.59kb
    • 提供者:dieqomer
  1. cx88-i2c

    0下载:
  2. scan i2c bus at insmod time Source Code for Linux.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-01
    • 文件大小:1.5kb
    • 提供者:zintobu
  1. pcd

    0下载:
  2. Here are things one can override the insmod command. Most are autoprobed by paride unless set here. Verbose is off by default. -Here are things one can override the insmod command. Most are autoprobed by paride unless set here. Verbose is off by d
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-15
    • 文件大小:7.32kb
    • 提供者:zufeigq
  1. jsm

    0下载:
  2. Debugging levels can be set using debug insmod variable They can also be compiled out completely.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-14
    • 文件大小:4.47kb
    • 提供者:hanghxgei
  1. dev-wdt

    0下载:
  2. insmod command line overrideable parameters.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-29
    • 文件大小:15.35kb
    • 提供者:bqjsxj
« 12 »
搜珍网 www.dssz.com