QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1002|回复: 3

如何安装驱动的问题

[复制链接]
发表于 2005-9-17 10:50:43 | 显示全部楼层 |阅读模式
大家好我是linux新人有一个简单的问题,厂家提供了一个can的驱动包,我现在把它编译通过了,但现在的问题来了
我要如何安装驱动
1、要把编译好的那些文件copy到什么目录下
2、要不要配什么脚本文件
3、要把内核重新编译再下到开发板,还是把文件系重新编译下再下到开发板上(我是在chroot环境作,在做嵌入式)

我刚从window转过来,很多概念搞不清,先谢谢大家了
以下是编译can驱动的makefile文件
我的qq 175412977 在线等
# Comment/uncomment the following line to disable/enable debugging
#DEBUG = y
EXTDEBUG = y #extended debugging (register dumps)定义变量

# This Makefile has been simplified as much as possible, by putting all
# generic material, independent of this specific directory, into
# ../Rules.make. Read that file for details

TOPDIR := $(shell cd ..; pwd) //????????
include Rules.make#加入规则

# Add your debugging flag (or not) to CFLAGS
ifeq ($(EXTDEBUG),y)
DEBFLAGS = -O -g -DCAN_DEBUG -DREGDUMP # "-O" is needed to expand inlines
else
ifeq ($(DEBUG),y)
DEBFLAGS = -O -g -DCAN_DEBUG # "-O" is needed to expand inlines
else
DEBFLAGS = -O2
endif
endif

CFLAGS += $(DEBFLAGS)
CFLAGS += -I..

VPATH = ./src:./include:./examples
TARGET = can
OBJS = $(TARGET).o
SRC = main.c proc.c hms30c7202_can.c c_can.c \
irq.c open.c close.c read.c write.c ioctl.c \


all: .depend $(TARGET).o

$(TARGET).o: $(SRC:.c=.o)
$(LD) -r $^ -o $@

install:
install -d $(INSTALLDIR)
install -c $(TARGET).o $(INSTALLDIR)

clean:
rm -f *.o src/*.o *~ core .depend

depend .depend dep:
$(CC) $(CFLAGS) -M src/*.c > $@


#ifeq (.depend, $(wildcard .depend))
#include .depend
#endif
发表于 2005-9-17 20:30:46 | 显示全部楼层
Linux设备驱动(第三版)
回复

使用道具 举报

发表于 2005-9-19 10:08:53 | 显示全部楼层
make以后应该会得到一个can.o的文件,这是个module文件,在启动shell里面加入insmod can.o就可以把它转入内核了
启动脚本大概是etc/passwd下指定的脚本把,chroot不熟悉,不知道怎么设置的
内核和文件系统都不需要重新编译,把你的can.o传导目标板上,改shell,重启就行了
回复

使用道具 举报

发表于 2005-9-20 13:35:29 | 显示全部楼层
make install
?
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-3 02:20 , Processed in 0.072999 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表