2020-06-15 08:08:20 +00:00
|
|
|
#!/bin/bash
|
|
|
|
[ -f /.dockerenv ] || { echo "please run in supplied container"; exit 1; }
|
|
|
|
set -e; source environment
|
|
|
|
|
2020-06-29 22:55:34 +00:00
|
|
|
build_dir="${BUILD_DIR?}"
|
|
|
|
buildroot_dir="${build_dir}/buildroot"
|
|
|
|
|
|
|
|
(cd "${buildroot_dir}"; make )
|