13/02/11 15:31:13.11 kQrjX1wF
>>19
カーネル3.7でコンパイル出来たよ。
makeがそのままじゃ通らないので修正が必要なだけ。
自分はDebianでやったけど以下みたいな感じ。
dc7280-linux-src-v1.0/inc/linux/Makefile.def
-83: ifneq ($(KERNEL_VER), 2.6)
-84: ifneq ($(KERNEL_VER), 2.4)
-85: $(error Only kernel 2.4/2.6 is supported but you use $(KERNEL_VER))
-86: endif
-87: endif
-89: ifeq ($(KERNEL_VER), 2.6)
-122: else # for kernel 2.4 modules
-124: HPT_LIB := $(HPT_LIB)-regparm0
-125: _TARGETMODS := $(addprefix $(HPT_LIB)/,$(TARGETMODS))
-127: VPATH := .. $(HPT_ROOT)/osm/linux
-128: TARGET := $(TARGETNAME).o
-130: C_INCLUDES += -I$(HPT_ROOT)/osm/linux -I$(KERNELDIR)/include -I$(KERNELDIR)/drivers/scsi
-132: $(TARGET): $(TARGETOBJS) $(_TARGETMODS)
-133: @echo $(if $V,,[LD] $@)
-134: $(if $V,,@)$(CROSS_COMPILE)$(LD) -r -o $@ $^
-136: endif # KERNEL_VER