doc: initial setup of a Gluon AP3825i

This commit is contained in:
Martin Kennedy 2025-07-27 13:19:21 -04:00
parent 3332fbd560
commit dab04ac413

21
docs/README.md Normal file
View File

@ -0,0 +1,21 @@
# ap3825i
To flash: `make run0` runs against /dev/ttyUSB0 on `misbah`, Martin's basement
chromebox, to flash with whatever parameters are configured in the Makefile.
After flashing: you can run the following segment to turn a freshly flashed
Gluon router into a configured one; notably, this reconfigures WAN to be
uplink+mesh, not just uplink:
```sh
uci del_list gluon.iface_wan.role='mesh'
uci add_list gluon.iface_wan.role='mesh'
uci commit gluon
uci set gluon-setup-mode.@setup_mode[0].configured='1'
uci commit gluon-setup-mode
gluon-reconfigure
reboot
```