Support for QEMU

Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
This commit is contained in:
Michael Opdenacker 2019-07-10 08:31:52 +02:00
parent 608359fa18
commit aeda56f9d7

16
projects/qemu.sh Normal file
View file

@ -0,0 +1,16 @@
# Elixir definitions for QEMU
list_tags_h()
{
echo "$tags" |
grep -E "^v[0-9].*" |
tac |
sed -r 's/^(v[0-9])\.([0-9]*)(.*)$/\1 \1.\2 \1.\2\3/'
echo "$tags" |
grep "release" |
tac |
sed -r 's/^(release)_([0-9_]*)$/old \1 \1_\2/'
echo "old initial initial"
}