Change overrides sourcing order.

This commit is contained in:
parazyd 2018-01-26 13:06:21 +01:00
parent 94132cf36c
commit 30e7b7c314
No known key found for this signature in database
GPG Key ID: F0CB28FCF78637DE
1 changed files with 2 additions and 1 deletions

3
sdk
View File

@ -109,12 +109,13 @@ load() {
source $boardlib ## XXX: remove this line source $boardlib ## XXX: remove this line
source $oslib source $oslib
source $boardlib && act "$device_name build script loaded" source $boardlib && act "$device_name build script loaded"
source $R/lib/overrides
[[ -f $blendlib ]] && { [[ -f $blendlib ]] && {
source $blendlib || zerr source $blendlib || zerr
act "$os blend loaded" act "$os blend loaded"
export BLEND=1 export BLEND=1
} }
source $R/lib/overrides
workdir="$R/tmp/${os}-${arch}-build" workdir="$R/tmp/${os}-${arch}-build"
strapdir="$workdir/bootstrap" strapdir="$workdir/bootstrap"