You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/ash
|
|
|
|
|
|
|
|
|
|
|
|
echo 'This is the meshenger lazy install part two!'
|
|
|
|
echo 'It presumes you already ran part 1!'
|
|
|
|
echo 'You should review the settings of "wireless" and "network"'
|
|
|
|
|
|
|
|
mkswap /dev/sda2
|
|
|
|
swapon /dev/sda2
|
|
|
|
|
|
|
|
mv fstab_extroot /etc/config/fstab
|
|
|
|
|
|
|
|
head -n 10 /etc/config/wireless >> tmp_wireless
|
|
|
|
cat wireless >> tmp_wireless
|
|
|
|
mv tmp_wireless /etc/config/wireless
|
|
|
|
|
|
|
|
sleep 1
|
|
|
|
|
|
|
|
mv network /etc/config/network
|
|
|
|
opkg update
|
|
|
|
opkg install kmod-batman-adv kmod-ipv6
|
|
|
|
|
|
|
|
sed -i -e "s/option 'interfaces' 'mesh'/option 'interfaces' 'adhoc0'/g" /etc/config/batman-adv
|
|
|
|
|
|
|
|
opkg install python git
|
|
|
|
sleep 1
|
|
|
|
git clone git://github.com/jngrt/meshenger.git
|
|
|
|
|
|
|
|
mv uhttpd /etc/config/uhttpd
|
|
|
|
|
|
|
|
echo 'my ip address is:' #klopt nog niet
|
|
|
|
ifconfig br-lan | grep 'inet addr'
|
|
|
|
|
|
|
|
echo 'Done configuring you can now reboot using $reboot -f'
|