On Tue, Jan 24, 2017 at 3:58 PM, Matrioux <[email protected]> wrote: > OK, I tracked down how it is being called during startup, its called by > bb-wl18xx-wlan0, which is installed as a systemd service., but the first two > questions stand, whats the best way to make SoftAp0 something that can be > turned on and off at will via the command line?
That would be a feature that would have to be added to it. https://github.com/rcn-ee/repos/blob/master/bb-wl18xx-firmware/suite/jessie/debian/bb-wl18xx-tether Right now there is a global disable: TETHER_ENABLED https://github.com/rcn-ee/repos/blob/master/bb-wl18xx-firmware/suite/jessie/debian/postinst#L21 You could boot up with: TETHER_ENABLED=no try to connect over wlan0, if failing, then do: sudo sed -i -e 's:TETHER_ENABLED=no:ETHER_ENABLED=yes:g' /etc/default/bb-wl18xx then run sudo /usr/bin/bb-wl18xx-tether little messy, as we are also messing with usb0.. might be eaiser to just write your own variation that handles only SoftAp0... Regards, -- Robert Nelson https://rcn-ee.com/ -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/beagleboard/CAOCHtYg7kdwdwxzd-VTG1%2BSHUNM93461PxKreeK6bdgoh3gMug%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
