Can anyone tell me what's missing?
I have been all over synCE's wiki and their sourceforge mailing list archives without luck.
I want to install usb-rndis-lite like so...
cd usb-rndis-lite/
make
sudo ./clean.sh
sudo make install
But when i do make i get this:
tobbe@tobbe-laptop:/usb-rndis-lite$ sudo make
Password:
make -C /lib/modules/2.6.15-27-386/build SUBDIRS=/usb-rndis-lite modules
make[1]: Entering directory `/usr/src/linux-headers-2.6.15-27-386'
CC [M] /usb-rndis-lite/usbnet.o
In file included from /usb-rndis-lite/usbnet.c:47:
/usb-rndis-lite/usbnet.h:36: error: field "phy_mutex" has incomplete type
/usb-rndis-lite/usbnet.c: In function "init_status":
/usb-rndis-lite/usbnet.c:191: varning: passing argument 6 of "usb_fill_int_urb" from incompatible pointer type
/usb-rndis-lite/usbnet.c: In function "rx_submit":
/usb-rndis-lite/usbnet.c:324: varning: passing argument 6 of "usb_fill_bulk_urb" from incompatible pointer type
/usb-rndis-lite/usbnet.c: In function "usbnet_start_xmit":
/usb-rndis-lite/usbnet.c:957: varning: passing argument 6 of "usb_fill_bulk_urb" from incompatible pointer type
/usb-rndis-lite/usbnet.c: In function "usbnet_probe":
/usb-rndis-lite/usbnet.c:1157: varning: implicit declaration of function "mutex_init"
make[2]: *** [/usb-rndis-lite/usbnet.o] Fel 1
make[1]: *** [_module_/usb-rndis-lite] Fel 2
make[1]: Leaving directory `/usr/src/linux-headers-2.6.15-27-386'
make: *** [default] Fel 2
Anyone got any ideas?
They want you to make sure that CONFIG_USB_NET_CDCETHER is either compiled into the kernel or as a separate module. In my kernel it says CONFIG_USB_NET_CDCETHER=m
Does that mean that it is activated or what?
Thankful for any ideas
I have been all over synCE's wiki and their sourceforge mailing list archives without luck.
I want to install usb-rndis-lite like so...
cd usb-rndis-lite/
make
sudo ./clean.sh
sudo make install
But when i do make i get this:
tobbe@tobbe-laptop:/usb-rndis-lite$ sudo make
Password:
make -C /lib/modules/2.6.15-27-386/build SUBDIRS=/usb-rndis-lite modules
make[1]: Entering directory `/usr/src/linux-headers-2.6.15-27-386'
CC [M] /usb-rndis-lite/usbnet.o
In file included from /usb-rndis-lite/usbnet.c:47:
/usb-rndis-lite/usbnet.h:36: error: field "phy_mutex" has incomplete type
/usb-rndis-lite/usbnet.c: In function "init_status":
/usb-rndis-lite/usbnet.c:191: varning: passing argument 6 of "usb_fill_int_urb" from incompatible pointer type
/usb-rndis-lite/usbnet.c: In function "rx_submit":
/usb-rndis-lite/usbnet.c:324: varning: passing argument 6 of "usb_fill_bulk_urb" from incompatible pointer type
/usb-rndis-lite/usbnet.c: In function "usbnet_start_xmit":
/usb-rndis-lite/usbnet.c:957: varning: passing argument 6 of "usb_fill_bulk_urb" from incompatible pointer type
/usb-rndis-lite/usbnet.c: In function "usbnet_probe":
/usb-rndis-lite/usbnet.c:1157: varning: implicit declaration of function "mutex_init"
make[2]: *** [/usb-rndis-lite/usbnet.o] Fel 1
make[1]: *** [_module_/usb-rndis-lite] Fel 2
make[1]: Leaving directory `/usr/src/linux-headers-2.6.15-27-386'
make: *** [default] Fel 2
Anyone got any ideas?
They want you to make sure that CONFIG_USB_NET_CDCETHER is either compiled into the kernel or as a separate module. In my kernel it says CONFIG_USB_NET_CDCETHER=m
Does that mean that it is activated or what?
Thankful for any ideas
Comment