RobertCNelson / boot-scripts

Just a bunch of useful scripts placed under /opt/scripts/
125 stars 132 forks source link

WIFI AP #58

Closed nivoset closed 7 years ago

nivoset commented 7 years ago

Ok, im trying to figure out where this is happening, but on start up it constantly sets the wifi back to BeagleBone-xxxx for the access point, even if i comment out the section in am335x_evm.sh am i missing a second place?

this is a little more frustrating as its also decided to not let me enable tethering afterwords (Tethering not supported for wifi)

This is on a BBGW

root@beaglebone:/boot/dtbs# cat /etc/debian_version 8.7 root@beaglebone:/boot/dtbs# cat /etc/os-release PRETTY_NAME="Debian GNU/Linux 8 (jessie)" NAME="Debian GNU/Linux" VERSION_ID="8" VERSION="8 (jessie)" ID=debian HOME_URL="http://www.debian.org/" SUPPORT_URL="http://www.debian.org/support" BUG_REPORT_URL="https://bugs.debian.org/"

I had fixed this before by doing a delayed command to just force it back to what i wanted... but i copied the SD card and it no longer works (that part confuses me more)

RobertCNelson commented 7 years ago

@nivoset so the wifi access point is controlled via:

/etc/default/bb-wl18xx

to disable everything, just set:

TETHER_ENABLED=no

and you'll be free to setup everything yourself

(here's the whole list of options: https://github.com/rcn-ee/repos/blob/master/bb-wl18xx-firmware/suite/jessie/debian/postinst#L20-L46 )

Regards,

nivoset commented 7 years ago

not quite what i want. i want it to tether, just with my information in it, not the default. id be fine without it ever touching it. but i will find out something

On Mon, Jul 24, 2017 at 6:42 PM, Robert Nelson notifications@github.com wrote:

@nivoset https://github.com/nivoset so the wifi access point is controlled via:

/etc/default/bb-wl18xx

to disable everything, just set:

TETHER_ENABLED=no

and you'll be free to setup everything yourself

(here's the whole list of options: https://github.com/rcn-ee/ repos/blob/master/bb-wl18xx-firmware/suite/jessie/debian/postinst#L20-L46 )

Regards,

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/RobertCNelson/boot-scripts/issues/58#issuecomment-317603628, or mute the thread https://github.com/notifications/unsubscribe-auth/AE9u0XNLDoWoQ8COfd0s3__iYX6__Uq2ks5sRUf8gaJpZM4Oh0SK .

RobertCNelson commented 7 years ago

@nivoset

Then your looking at: /etc/default/bb-wl18xx

USE_PERSONAL_SSID="BeagleBone"
USE_PERSONAL_PASSWORD="BeagleBone"
USE_APPENDED_SSID=yes

Regards,

nivoset commented 7 years ago

Thank you, i was looking for where those settings were for a while and couldn't find them