代码搜索:DEV
找到约 10,000 项符合「DEV」的源代码
代码结果 10,000
www.eeworm.com/read/130445/14193628
simple_load
#!/bin/sh
module="simple"
device="simple"
mode="664"
# Group: since distributions do it differently, look for wheel or use staff
if grep '^staff:' /etc/group > /dev/null; then
group="staff"
else
www.eeworm.com/read/232312/14198785
c atiixp.c
/*
* linux/drivers/ide/pci/atiixp.c Version 0.01-bart2 Feb. 26, 2004
*
* Copyright (C) 2003 ATI Inc.
* Copyright (C) 2004 Bartlomiej Zolnierkiewicz
*
*/
#include
www.eeworm.com/read/130108/14208277
makedev
#!/bin/bash
function makedev () {
for dev in 0 1 2 3; do
echo "/dev/$1$dev: char 81 $[ $2 + $dev ]"
rm -f /dev/$1$dev
mknod /dev/$1$dev c 81 $[ $2 + $dev ]
chmod 666 /dev/$1$dev
d
www.eeworm.com/read/130043/14210207
c stats.c
/*************************************************************************/
/* */
/* Statistical routines for C4.5 */
/* ----------------------------- */
/* */
/*********
www.eeworm.com/read/129048/14268880
in gzexe.in
:
#!/bin/sh
# gzexe: compressor for Unix executables.
# Use this only for binaries that you do not use frequently.
#
# The compressed version is a shell script which decompresses itself after
# skippi
www.eeworm.com/read/230899/14269903
c n8250.c
/* OS- and machine-dependent stuff for the 8250 asynch chip on a IBM-PC
*/
#include
#include
#include
#include "global.h"
#include "mbuf.h"
#include "proc.h"
#incl
www.eeworm.com/read/230640/14280330
c usb_device_drv.c
/*********************************************
* Purpose: implement a USB driver for fps2000
* Scope: suitable to Linux OS
* Author: ZhengKarl
* History: None
* Version: 0.1
*/
#inc
www.eeworm.com/read/229742/14318135
loadspi
#!/bin/sh
rm -f /dev/SPI0
rm -f /dev/SPI1
mknod /dev/SPI0 c 123 0
mknod /dev/SPI1 c 123 1
insmod spi
www.eeworm.com/read/229742/14318181
loadpwm
#!/bin/sh
rm -f /dev/PWM
mknod /dev/PWM c 125 0
insmod pwm
www.eeworm.com/read/228948/14356976
s bootsect.s
!
! SYS_SIZE is the number of clicks (16 bytes) to be loaded.
! 0x3000 is 0x30000 bytes = 196kB, more than enough for current
! versions of linux ! SYS_SIZE 是要加载的节数(16 字节为1 节)。0x3000 共为
1 2 3 4 5 6
0x