1

dirty hack to copy files over to a openwrt box where you don't have ssh daemon running (so no scp...)

serve the packages from yr laptop (192.168.1.2) with eg.

 python -m SimpleHTTPServer 

set -a
cd /tmp
wget http://192.168.1.2:8000/kmod-ipv6_2.6.30.10-1_atheros.ipk -q
wget http://192.168.1.2:8000/librt_0.9.30.1-42_atheros.ipk -q
wget http://192.168.1.2:8000/babelz_20100903_atheros.ipk -q
opkg install librt_0.9.30.1-42_atheros.ipk
opkg install kmod-ipv6_2.6.30.10-1_atheros.ipk
opkg install babelz_20100903_atheros.ipk
exit