mirror of
https://github.com/alljoynsville/openwrt-builder
synced 2025-06-24 16:16:12 +00:00
25 lines
444 B
Markdown
25 lines
444 B
Markdown
openwrt-builder
|
|
========================
|
|
|
|
This is a docker container for building [OpenWRT](https://openwrt.org/)
|
|
|
|
|
|
To run a shell in the buildroot, execute the following command:
|
|
```sh
|
|
docker run --rm -it alljoynsville/openwrt-builder:18.06 bash
|
|
```
|
|
or
|
|
```sh
|
|
docker run --rm -it alljoynsville/openwrt-builder:15.05 bash
|
|
```
|
|
|
|
and then
|
|
```sh
|
|
cd /home/openwrt/openwrt
|
|
./scripts/feeds update -a
|
|
./scripts/feeds install -a
|
|
|
|
make defconfig
|
|
make
|
|
```
|