mirror of
https://github.com/rafacouto/docker-openwrt-builder
synced 2025-06-08 16:36:17 +00:00
17 lines
297 B
Bash
Executable File
17 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# ToDo: show target options
|
|
|
|
# ToDo
|
|
echo 'ToDo: examine targets from env vars...'
|
|
exit 0
|
|
|
|
cp "$WORKDIR/target-configs/$OPENWRT_TARGET.diff" \
|
|
"$WORKDIR/.config" && exit 1
|
|
|
|
./scripts/feeds update -a && exit 1
|
|
./scripts/feeds install -a && exit 1
|
|
|
|
ionice -c 3 nice -n19 make -j1 V=s
|
|
|