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.
31 lines
672 B
31 lines
672 B
#!/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
|
|
rm tmp_wireless
|
|
|
|
mv network /etc/config/network
|
|
opkg update
|
|
opkg install kmod-batman-adv kmod-ipv6
|
|
|
|
sed -i -e "s/mesh/adhoc0/g" /etc/config/batman-adv
|
|
|
|
opkg install python git
|
|
git clone git://github.com/jngrt/meshenger.git
|
|
|
|
echo 'my ip address is:'
|
|
ifconfig br-lan | grep 'inet addr'
|
|
|
|
echo 'rebooting'
|
|
reboot -f
|