2020-06-15 08:08:20 +00:00
|
|
|
#!/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"
|
2020-08-13 05:25:41 +00:00
|
|
|
export HEADS_EXTERNAL="${HOME}/config/heads"
|
2020-06-15 08:08:20 +00:00
|
|
|
export RELEASE_DIR="${HOME}/release"
|
|
|
|
export BUILDROOT_REPO=git://git.busybox.net/buildroot
|
2020-07-07 21:13:18 +00:00
|
|
|
export HEADS_REPO=https://source.puri.sm/coreboot/purism-heads.git
|
2020-07-11 23:08:30 +00:00
|
|
|
export FAKETIME="@${GIT_DATETIME?}"
|
|
|
|
export SOURCE_DATE_EPOCH="${GIT_EPOCH?}"
|