10 lines
206 B
Plaintext
10 lines
206 B
Plaintext
|
#!/bin/bash
|
||
|
[ -f /.dockerenv ] || { echo "please run in supplied container"; exit 1; }
|
||
|
set -e; source environment
|
||
|
|
||
|
target=${TARGET?}
|
||
|
|
||
|
cd /home/build/build/buildroot
|
||
|
make "unilinux_${TARGET}_defconfig"
|
||
|
make
|