forked from public/airgap
16 lines
484 B
Bash
Executable File
16 lines
484 B
Bash
Executable File
#!/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 HEADS_EXTERNAL="${HOME}/config/heads"
|
|
export RELEASE_DIR="${HOME}/release"
|
|
export BUILDROOT_REPO=git://git.busybox.net/buildroot
|
|
export HEADS_REPO=https://source.puri.sm/coreboot/purism-heads.git
|
|
export FAKETIME="@${GIT_DATETIME?}"
|
|
export SOURCE_DATE_EPOCH="${GIT_EPOCH?}"
|