QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 738|回复: 2

如何安装驱动的问题

[复制链接]
发表于 2005-9-16 23:37:03 | 显示全部楼层 |阅读模式
大家好我是linux新人有一个简单的问题,厂家提供了一个can的驱动包,我现在把它编译通过了,但现在的问题来了
我要如何安装驱动
      1、要把编译好的那些文件copy到什么目录下
      2、要不要配什么脚本文件
      3、要不要重新编译内核
我刚从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-16 23:41:32 | 显示全部楼层
1,不用,2,不用,3,不用
你就./configure
make
make install
就好了
回复

使用道具 举报

 楼主| 发表于 2005-9-17 10:42:43 | 显示全部楼层
to 上面大侠
1------------------
./configure
make
make install
这三个命令是在can驱动的源码目录下执行,但是,这个目录下没有configure这个文件呀
2-------------
我是在chroot环境作,我是在做嵌入式,在安装完后can驱动后,是要把内核重新编译再下到开发板,还是

把文件系重新编译下再下到开发板上
回复

使用道具 举报

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

本版积分规则

GMT+8, 2024-11-15 20:07 , Processed in 0.036610 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

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