wpj428/doc/compile.md

21 lines
270 B
Markdown
Raw Normal View History

2021-04-17 16:13:48 +00:00
## Compile
```
make menuconfig
scripts/diffconfig.sh > ../wpj428/config
make download
make -j $(nproc)
```
To inject a config file:
```bash
# Append changes to bottom of .config
cat config >> .config
# Apply changes
make defconfig
make download
make -j $(nproc)
```