10 lines
215 B
Plaintext
10 lines
215 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 linux-menuconfig
|
||
|
make linux-update-defconfig
|