airgap/scripts/environment

13 lines
349 B
Plaintext
Raw Normal View History

#!/bin/bash
target=${TARGET?}
env_file=${HOME}/config/config.env
[ -f $env_file ] && export $( cat ${env_file} | xargs )
export BUILD_DIR="${HOME}/build"
export BR2_EXTERNAL="${HOME}/config/buildroot"
export RELEASE_DIR="${HOME}/release"
export BUILDROOT_REPO=git://git.busybox.net/buildroot
2020-06-29 22:55:34 +00:00
export HEADS_REPO=https://github.com/osresearch/heads