elixir/projects/arm-trusted-firmware.sh
Maxime Chretien 9e54d93594 projects: Enable DT compatible strings support for thoses who use DT
Signed-off-by: Maxime Chretien <maxime.chretien@bootlin.com>
2020-06-08 15:37:59 +02:00

18 lines
390 B
Bash

# Elixir definitions for Arm Trusted Firmware
# https://github.com/ARM-software/arm-trusted-firmware
# Enable DT bindings compatible strings support
dts_comp_support=1
list_tags_h()
{
echo "$tags" |
grep -v 'for-v0\.4' |
tac |
sed -r 's/^(v[0-9]*)\.([0-9]*)(.*)$/\1 \1.\2 \1.\2\3/'
echo "$tags" |
grep 'for-v0\.4' |
tac |
sed -r 's/^/custom for-v0.4 /'
}