Consegui fazer isso criando um script mesh.sh
contendo:
#!/bin/sh
sleep 5
iw wlan0 interface add mesh0 type mp
sleep 1
ifdown wlan0
sleep 1
ifconfig mesh0
ifconfig mesh0 192.168.202.106
iw mesh0 mesh join meshpi
Em seguida, crie um arquivo chamado meshboot
in /etc/init.d/
contendo:
#!/bin/sh
### BEGIN INIT INFO
# Provides: meshboot
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start daemon at boot time
# Description: Enable service provided by daemon.
### END INIT INFO
case "$1" in
start)
sudo /home/pi/mesh.sh
;;
stop)
;;
esac
exit 0
E fazendo com que ele seja executado na inicialização com update-rc.d meshboot defaults
.