Consider this another device confirmed to work with the Sheeva Plug v1.0
The details on how to unpack and setup the kernel source provided on the CD rom are explained here
http://plugcomputer.org/plugforum/index.php?topic=515.0I picked up a TrendNet TU-ET100C adapter today and went to the unpacked kernel source on the plug then executed:
make config
* USB Network Adapters
*
...
USB Pegasus/Pegasus-II based ethernet device support (USB_PEGASUS) [N/m/y/?] m
...
Multi-purpose USB Networking Framework (USB_USBNET) [N/m/y/?] m
*
*
make modules
make modules_install
/lib/modules/2.6.22.18/kernel/drivers/net/usb
Plugged in the adapter and # tail /var/log/messages reports:
usb 1-1: new full speed USB device using ehci_marvell and address 2
usb 1-1: configuration #1 chosen from 1 choice
pegasus: v0.6.14 (2006/09/27), Pegasus/Pegasus II USB Ethernet driver
pegasus 1-1:1.0: setup Pegasus II specific registers
pegasus 1-1:1.0: eth2, ADMtek ADM8511 "Pegasus II" USB Ethernet, 00:14:d1:1b:d8:38
usbcore: registered new interface driver pegasus
# vi /ec/network/interfaces
auto eth2
iface eth2 inet static
address 192.168.2.98
network 192.168.2.0
netmask 255.255.255.0
broadcast 192.168.2.255
# ifup eth2
# ifconfig
eth2 Link encap:Ethernet HWaddr 00:14:d1:1b:d8:38
inet addr:192.168.2.98 Bcast:192.168.2.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:185 errors:0 dropped:0 overruns:0 frame:0
TX packets:92 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:34404 (34.4 KB) TX bytes:16215 (16.2 KB)
Putty to 192.168.2.98
login as: root
root@192.168.2.98's password:
Linux debian 2.6.22.18 #1 Thu Mar 19 14:46:22 IST 2009 armv5tejl
...
Last login: Sun Apr 18 03:09:41 2010 from 192.168.2.169
root@debian:~#
if you copy just the kernel module to another plug
mkdir -p /lib/modules/2.6.22.18/kernel/drivers/net/usb
also be sure to run the depmod -a command while in
/lib/modules/2.6.22.18
the link light on the adapter doesn't light up unless there is a link when attached to the plug.. this is in contrast to when the adapter is attached to a Windows XP machine, the link light on the adapter lights up even when there is no link.
- JoWi