its-ap-builder/README.md

66 lines
2.9 KiB
Markdown
Raw Normal View History

2018-04-14 01:43:37 +02:00
ITS WiFi Access Points Setup
============================
2019-10-14 18:22:34 +02:00
This directory contains the scripts and configuration for the automated building
of OpenWrt image-build based firmware images.
We use this to build fully pre-configured images for our 802.11
access-points. The deployed images are completely hands-off. No configuration of
the running firmware should be necessary as all the device specific setup is
done using `/etc/uci-defaults/` by keying off the device's MAC address.
2018-04-14 01:43:37 +02:00
See [`files/common/its/etc/uci-defaults/50-config-from-mac`](files/common/its/etc/uci-defaults/50-config-from-mac) for details.
2019-10-14 18:22:34 +02:00
Note that some of the files in this repository contain secrets, like
passwords. These files are stored using
[git-annex](https://git-annex.branchable.com/) which merely stores a hash in the
(public) git repo and ships the relevant file contents off to a fileserver or
other internal storage location.
2018-04-14 01:43:37 +02:00
Building Images
---------------
2018-09-03 17:57:15 +02:00
The [`Makefile`](./Makefile) provides a target for each device type we have
2018-09-02 21:27:01 +02:00
images for, to build images for all devices at the space you can use:
2018-04-14 01:43:37 +02:00
```
$ make its
2018-09-02 21:27:01 +02:00
[...]
Wrote images to images/v0.20180506-3-g115cc99-dirty
2018-04-14 01:43:37 +02:00
```
2018-09-02 21:27:01 +02:00
the resulting sysupgrade images land in a directory in `images/`. The symlink
`images/latest` points to the directory of the image built most recently. The
build system also produces a `*.image-manifest` file which contains the URL to
the ImageBuilder used as well its hash and the corresponding image's hash.
Each produced image file contains the target, subtarget and profile names for
the targeted device (among other things), for example the Ubiquity UniFi AC
2020-06-22 22:25:16 +02:00
Lite's image is called `*-ath79-generic-ubnt_unifiac-lite*-sysupgrade.bin`
standing for `TARGET=ath79`, `SUBTARGET=generic`, `PROFILE=ubnt_unifiac-lite`.
2018-09-02 21:27:01 +02:00
These images can then be deployed by copying them to the respective device in
`/tmp` using `scp` and then running, over ssh:
# sysupgrade -n /tmp/*-sysupgrade.bin
If this fails for some reason and the target device is subsequently bricked so
bad it cannot even boot into
[failsafe mode](https://openwrt.org/docs/guide-user/troubleshooting/failsafe_and_factory_reset#entering_failsafe_mode)
any more, see
[OpenWrt Debricking Guide](https://openwrt.org/docs/guide-user/troubleshooting/generic.debrick).
2018-04-14 01:43:37 +02:00
Using Released Binaries
-----------------------
2018-09-02 21:27:01 +02:00
The offically released and deployed images are available in this repo in the
[`images/`](images/) directory. They need to be retrived from an internal server
using [`git annex`](https://git-annex.branchable.com) before they can be
accessed. The public git repo only contains their hashes.
2018-04-14 01:43:37 +02:00
2018-09-02 21:27:01 +02:00
We also use git-annex to add the secrets used for generating the images to the
repo, which will then only be available to authorized people using the internal
git-annex store. For an example, see
2018-04-14 01:43:37 +02:00
[`files/common/its/etc/uci-defaults/51-secrets`](files/common/its/etc/uci-defaults/51-secrets). This
file just sets up secrets, such as the WiFi/root password.