forked from public/airgap
1
0
Fork 0
airgap/scripts/build

13 lines
304 B
Bash
Executable File

#!/bin/bash
[ -f /.dockerenv ] || { echo "please run in supplied container"; exit 1; }
set -e; source environment
target=${TARGET?}
build_dir="${BUILD_DIR?}"
buildroot_dir="${build_dir}/buildroot"
heads_dir="${build_dir}/heads"
(cd "${heads_dir}"; make BOARD="$TARGET")
(cd "${buildroot_dir}"; make )