Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidjenni/buildroot-docker
Docker container for buildroot embedded system cross-compilation.
https://github.com/davidjenni/buildroot-docker
Last synced: 6 days ago
JSON representation
Docker container for buildroot embedded system cross-compilation.
- Host: GitHub
- URL: https://github.com/davidjenni/buildroot-docker
- Owner: davidjenni
- Created: 2018-10-22T14:31:45.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-22T14:33:17.000Z (about 6 years ago)
- Last Synced: 2024-10-18T05:57:45.650Z (about 1 month ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BuildRoot Docker
Docker container for [Buildroot](https://buildroot.org/) embedded system cross-compilation.
## Create docker image
Clone this repo and run:
```bash
docker build -r buildroot .
```## Usage
run script (both as run.cmd and run.sh) is available to run buildroot commands, e.g.:
```bash
run make raspberrypi0w_defconfig menuconfig
run make
```The run script will mount 2 local folders 'dl' and 'output' for buildroot's download cache
and the build output.See `run make help` and [buildroot's User Guide](https://buildroot.org/downloads/manual/manual.html#_user_guide)
for other buildroot commands.