Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,18 @@ via CI.
### SDK Example

```shell
docker run --rm -v "$(pwd)"/bin/:/builder/bin -it openwrt/sdk
# inside the Docker container
./scripts/feeds update packages
make defconfig
./scripts/feeds install tmate
make package/tmate/{clean,compile} -j$(nproc)
$ docker run --rm -v "$(pwd)"/bin/:/builder/bin -it openwrt/sdk

# inside the Docker container first run the setup script
$ ./setup.sh

# update the packages and config
$ ./scripts/feeds update packages
$ make defconfig

# now you can install packages from the feeds, for example: tmate
$ ./scripts/feeds install tmate
$ make package/tmate/{clean,compile} -j$(nproc)
```

Enjoy a local OpenWrt SDK container building the `tmate` package and but the
Expand Down