temporary hack when loading boards

This commit is contained in:
parazyd 2017-03-22 23:13:35 +01:00
parent b680dad0b8
commit 8fe2c4327a
No known key found for this signature in database
GPG Key ID: F0CB28FCF78637DE
2 changed files with 4 additions and 1 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
tmp/*
gcc/*

3
sdk
View File

@ -105,8 +105,9 @@ load() {
[[ -f $oslib ]] || { die "no valid distro specified"; exit 1 }
[[ -f $blendlib ]] || { warn "no valid blend specified" }
source $boardlib && act "$device_name build script loaded"
source $boardlib ## XXX: remove this line
source $oslib
source $boardlib && act "$device_name build script loaded"
[[ -f $blendlib ]] && {
source $blendlib || zerr
act "$os blend loaded"