<?xml version="1.0" encoding="utf-8"?><!DOCTYPE article  PUBLIC '-//OASIS//DTD DocBook XML V4.4//EN'  'http://www.docbook.org/xml/4.4/docbookx.dtd'><article><articleinfo><title>BattleMeshV3.1416/NodeInstallScript</title><revhistory><revision><revnumber>2</revnumber><date>2010-09-04 22:31:33</date><authorinitials>78-22-102-245.access.telenet.be</authorinitials></revision><revision><revnumber>1</revnumber><date>2010-09-04 22:30:47</date><authorinitials>78-22-102-245.access.telenet.be</authorinitials></revision></revhistory></articleinfo><para>dirty hack to copy files over to a openwrt box where you don't have ssh daemon running (so no scp...) </para><para>serve the packages from yr laptop (192.168.1.2)  with eg. </para><para><code> python -m SimpleHTTPServer </code> </para><screen><![CDATA[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]]></screen></article>