summaryrefslogtreecommitdiffstats
path: root/src/scripts/host-stack/convert_evt
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts/host-stack/convert_evt')
-rwxr-xr-xsrc/scripts/host-stack/convert_evt12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/scripts/host-stack/convert_evt b/src/scripts/host-stack/convert_evt
new file mode 100755
index 00000000000..1aba67d0268
--- /dev/null
+++ b/src/scripts/host-stack/convert_evt
@@ -0,0 +1,12 @@
+#!/usr/bin/env bash
+
+# This depends on c2cpel and cpeldump. Enable their compilation by:
+# ccmake build-root/build-vpp-native/vpp/
+# and turning on VPP_BUILD_PERFTOOL
+
+BIN_PATH=../../../build-root/install-vpp-native/vpp/bin
+C2CPEL_BIN=$BIN_PATH/c2cpel
+CPELDUMP_BIN=$BIN_PATH/cpeldump
+
+$C2CPEL_BIN --in $1 --out /tmp/tmp_file.cpel
+$CPELDUMP_BIN --in /tmp/tmp_file.cpel --out $2