10x for posting this driver
i realy need this driver to workup
but i try to compile in RH80 and i get some erors about
unrezolved symbols
[root@gw DirecPC]# make install
Installing: direcpc.o dpc_tool dpcstart
Installing sample file dpc0.cfg as dpc0.cfg.sample
Copying samples/dpc_route (backing up any existing copy
to .old)
Copying samples/rc.ip_tune (backing up any existing copy
to .old)
Copying firmware images
Installing module in /lib/modules
direcpc.o: unresolved symbol kernel_flag_cacheline
direcpc.o: unresolved symbol usb_deregister
direcpc.o: unresolved symbol usb_free_dev
direcpc.o: unresolved symbol usb_inc_dev_use
direcpc.o: unresolved symbol usb_register
direcpc.o: unresolved symbol usb_set_configuration
direcpc.o: unresolved symbol usb_submit_urb
direcpc.o: unresolved symbol usb_clear_halt
direcpc.o: unresolved symbol usb_unlink_urb
make: *** [install] Error 1
that is the error
pls give me an idea if have any
10x
Logged In: NO
At least you got the damn thing to compile........
Logged In: YES
user_id=797553
I had the same problem. To fix it, modify the Makefile
compile lines by adding :
-include /usr/src/linux/include/linux/modversions.h
as follows :
dpc_usb.o: dpc_usb.c dpc_usb.h usb-debug.h direcpc.h Makefile
$(CC) $(MCFLAGS) $(INCLUDES) -include
/usr/src/linux/include/linux/modversions.h -c dpc_usb.c -o $@
dpc_common.o: direcpc.c direcpc.h Makefile VERSION
$(CC) $(MCFLAGS) $(INCLUDES) -include
/usr/src/linux/include/linux/modversions.h
"-DDRIVER_VERSION=\"$(VERSION) $(DATE)\"" -c direcpc.c -o $@
Logged In: YES
user_id=591288
Check your kernel config - you seem to be missing USB support.