View Single Post
Old 01-28-2010, 12:53 AM   #4
Zorz
Zealot
Zorz began at the beginning.
 
Posts: 134
Karma: 36
Join Date: Nov 2009
Device: Kindle 2i
Here is my config

Quote:
#!/bin/sh

# Tweak these to match your setup
HOST_IP=192.168.0.101
KINDLE_IP=192.168.2.2

U=/mnt/us
R=$U/usbnet/bin

# Check if we already have ethernet gadget driver running
lsmod | grep g_ether > /dev/null && exit 2

# Unload mass storage gadget and load ethernet one
rmmod g_file_storage || exit 1
modprobe g_ether host_addr='EE4900000000' dev_addr='EE1900000000' || exit 1
ifconfig usb0 ${KINDLE_IP} || exit 1
route add default gw ${HOST_IP}

# start telnet & ssh daemons
$R/busybox telnetd
/usr/bin/dropbear

exit 0
still cant get in.
Zorz is offline   Reply With Quote