Definitions for the DPDK project

Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
This commit is contained in:
Michael Opdenacker 2019-09-28 07:24:23 +02:00
parent 81b71c3ae2
commit 5aa02b785f

14
projects/dpdk.sh Normal file
View file

@ -0,0 +1,14 @@
# Elixir definitions for DPDK
list_tags_h()
{
echo "$tags" |
grep -vE '^v1\.|^v2\.' |
tac |
sed -r 's/^v([0-9]*)\.([0-9]*)(.*)$/v\1 v\1.\2 v\1.\2\3/'
echo "$tags" |
grep -E '^v1\.|^v2\.' |
tac |
sed -r 's/^v(1|2)\.([0-9])(.*)$/old v\1.\2 v\1.\2\3/'
}