Initial commit of vpp code.

Change-Id: Ib246f1fbfce93274020ee93ce461e3d8bd8b9f17
Signed-off-by: Ed Warnicke <eaw@cisco.com>
This commit is contained in:
Ed Warnicke
2015-12-08 15:45:58 -07:00
parent fb0815d4ae
commit cb9cadad57
956 changed files with 715491 additions and 0 deletions

22
build-root/scripts/version Executable file
View File

@ -0,0 +1,22 @@
#!/bin/bash
TAG=$(git describe | cut -d- -f1 | sed -e 's/^v//')
ADD=$(git describe | cut -s -d- -f2)
CMT=$(git describe --dirty --match 'v*'| cut -s -d- -f3,4)
if [ "$1" = "rpm-version" ]; then
echo ${TAG}
exit
fi
if [ "$1" = "rpm-release" ]; then
[ -z "${ADD}" ] && echo release && exit
echo ${ADD}~${CMT}
exit
fi
if [ -n "${ADD}" ]; then
echo ${TAG}-${ADD}~${CMT}
else
echo ${TAG}
fi