1From 0a1af74ed3fae9a9a08b8b1ab89e88c02427ae06 Mon Sep 17 00:00:00 2001 2From: Mingli Yu <mingli.yu@windriver.com> 3Date: Wed, 10 Jan 2024 05:57:00 +0000 4Subject: [PATCH] csv-revision: Drop the git revision info 5 6The git revison info is added [1] to make the version more descriptive 7to produce an incremental revision number like 1.8.18.13 or 1.8.18.14 8and etc and more clear in terms of "what codebase was used" like 9`1.8.18.13.gee01aa5`. But it also introduces the below version 10inconsistence. 11 root@qemux86-64:~# ipmitool -V 12 ipmitool version 1.8.19.19.gab5ce5b 13 root@qemux86-64:~# rpm -qa | grep ipmitool 14 ipmitool-1.8.19-r0.core2_64 15 16Considering the version we acutally used in oe is a release version, 17the git revision info as [1] is meaningness. So drop the git revsion 18info to remove the above version inconsitence. 19 20[1] https://github.com/ipmitool/ipmitool/commit/ba01dc84b4e225c86eac3f562e629662d752040f 21 22Upstream-Status: Inappropriate [OE-Specific as we use a release version in oe] 23 24Signed-off-by: Mingli Yu <mingli.yu@windriver.com> 25--- 26 csv-revision | 1 + 27 1 file changed, 1 insertion(+) 28 29diff --git a/csv-revision b/csv-revision 30index 289c133..3fa9f1c 100755 31--- a/csv-revision 32+++ b/csv-revision 33@@ -1,5 +1,6 @@ 34 #!/bin/sh 35 36+exit 0 37 git describe --first-parent --tags 2>/dev/null | ( 38 IFS=- read tag rev hash 39 if [ $? ] && [ -n "$rev" ]; then 40-- 412.35.5 42 43