aboutsummaryrefslogtreecommitdiff
path: root/scripts/odp_version.sh
blob: 72ae4042ae5daec0aa39799c4cb4dba4ea8fe1d8 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

VFILE="platform/linux-generic/include/api/odp_version.h"

GEN=`grep "define ODP_VERSION_API_GENERATION"	${VFILE} | cut -d ' ' -f 3`
MAJ=`grep "define ODP_VERSION_API_MAJOR"	${VFILE} | cut -d ' ' -f 3`
MIN=`grep "define ODP_VERSION_API_MINOR"	${VFILE} | cut -d ' ' -f 3`

echo -n $GEN.$MAJ.$MIN