airgap/scripts/fetch

31 lines
879 B
Plaintext
Raw Normal View History

#!/bin/bash
[ -f /.dockerenv ] || { echo "please run in supplied container"; exit 1; }
set -e; source environment
build_dir="${BUILD_DIR?}"
buildroot_dir="${build_dir}/buildroot"
buildroot_repo="${BUILDROOT_REPO?}"
buildroot_ref=${BUILDROOT_REF?}
2020-06-29 22:55:34 +00:00
heads_dir="${build_dir}/heads"
heads_repo="${HEADS_REPO?}"
heads_ref=${HEADS_REF?}
[[ -f ~/.gitconfig ]] || \
printf "[color]\nui=auto\n[user]\nemail=build@local\nname=Build User" \
> ~/.gitconfig
mkdir -p "$build_dir"
2020-07-07 21:13:18 +00:00
[ "$(ls -A "${buildroot_dir}")" ] \
|| git clone "$buildroot_repo" "$buildroot_dir"
git -C "$buildroot_dir" checkout "$buildroot_ref"
cd "$buildroot_dir"
make "airgap_${TARGET}_defconfig"
make source
2020-06-29 22:55:34 +00:00
2020-07-07 21:13:18 +00:00
[ "$(ls -A "${heads_dir}")" ] \
|| git clone "$heads_repo" "$heads_dir"
2020-06-29 22:55:34 +00:00
git -C "$heads_dir" checkout "$heads_ref"
2020-07-07 21:13:18 +00:00
[ "$TARGET" == "librem13v4" ] \
&& (cd "$heads_dir/blobs/librem_kbl" && ./get_blobs.sh)