1
0
Fork 0

Allow for ChibiOS 20.x (master), as well as enabling ChibiOS-Contrib HAL. (#8272)

This commit is contained in:
Nick Brassel 2020-03-01 11:50:49 +11:00 committed by GitHub
parent c775104b9f
commit d0c3acbe3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 29 additions and 210 deletions

View file

@ -38,7 +38,7 @@ find_chibi_files() {
local search_path="$1"
shift
local conditions=( "$@" )
find "$search_path" -not -path '*/lib/chibios*' -and -not -path '*/lib/ugfx*' -and -not -path '*/util/*' -and \( "${conditions[@]}" \) | sort
find -L "$search_path" -not -path '*/lib/chibios*' -and -not -path '*/lib/ugfx*' -and -not -path '*/util/*' -and \( "${conditions[@]}" \) | sort
}
revert_chibi_files() {