elixir/projects/op-tee.sh
Michael Opdenacker 3b20f73281 op-tee: add tags filter
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
2020-11-04 09:08:17 +01:00

15 lines
229 B
Bash

# Elixir definitions for OP-TEE Trusted OS
list_tags_h()
{
echo "$tags" |
grep '^[0-9]\.' |
tac |
sed -r 's/^([0-9]*)\.([0-9]*)(.*)$/v\1 \1.\2 v\1.\2\3/'
}
list_tags()
{
echo "$tags" |
grep '^[0-9]\.'
}