Adding support for new bootprogress state

Adding new bootprogress state which indicate system firmware
or BIOS is starting the operating system at the  point of time.

This new bootprogress state is taken from
PLDM stateset(DSP0249) design spec and stateset id is 196.



Change-Id: Idc257fe9aeab4d7282c771be33f23d988ba54c69
Signed-off-by: Kamalkumar Patel <kamalkumar.patel@ibm.com>
diff --git a/pldmtool/pldm_platform_cmd.cpp b/pldmtool/pldm_platform_cmd.cpp
index 33b0e0a..4a78763 100644
--- a/pldmtool/pldm_platform_cmd.cpp
+++ b/pldmtool/pldm_platform_cmd.cpp
@@ -15,13 +15,10 @@
 
 namespace pldmtool
 {
-
 namespace platform
 {
-
 namespace
 {
-
 using namespace pldmtool::helper;
 
 static const std::map<uint8_t, std::string> sensorPresState{
@@ -463,7 +460,8 @@
         {PLDM_STATE_SET_BOOT_PROG_STATE_BASE_BOARD_INITIALIZATION,
          "Baseboard Initialization"},
         {PLDM_STATE_SET_BOOT_PROG_STATE_PRIMARY_PROC_INITIALIZATION,
-         "Primary Processor Initialization"}};
+         "Primary Processor Initialization"},
+        {PLDM_STATE_SET_BOOT_PROG_STATE_OSSTART, "OSStart"}};
 
     static inline const std::map<uint8_t, std::string> setOpFaultStatus{
         {PLDM_STATE_SET_OPERATIONAL_FAULT_STATUS_NORMAL, "Normal"},