openpower:dreport: add obmconsole1 log file to the BMC dump

Add the host console log to the BMC dump.

Tested:
root@xxxxbmc:/tmp/test/obmcdump_00000000_1648205747# cat obmc-console1.log
0B6EB088 "FC" 000000000053000B
1599.92700|1329 SBEIO|trace_lite 15FEB01A 0000000000000001 0000000000000004 0

Signed-off-by: Marri Devender Rao <devenrao@in.ibm.com>
Change-Id: Ia2f0bb8a89d4e2a9d7249fd6e8d7efa6194f1542
diff --git a/tools/dreport.d/openpower.d/plugins.d/obmcconsole1 b/tools/dreport.d/openpower.d/plugins.d/obmcconsole1
new file mode 100644
index 0000000..c6e7781
--- /dev/null
+++ b/tools/dreport.d/openpower.d/plugins.d/obmcconsole1
@@ -0,0 +1,13 @@
+#!/usr/bin/env bash
+#
+# config: 2 25
+# @brief: Collect OBMC console1 log.
+#
+
+. $DREPORT_INCLUDE/functions
+
+desc="OBMC console1 log"
+file_name="/var/log/obmc-console1.log"
+if [ -e $file_name ]; then
+    add_copy_file "$file_name" "$desc"
+fi