Add firmware activation messages to the registry

In some situations a firmware requires activation rather than
update.  These messages are intended to cover those situations.

Tested:
Logged these events and confirmed that they appear correctly in
Redfish.

Change-Id: I6171b9584626e049349a26c414146f37c04768c7
Signed-off-by: Jason M. Bills <jason.m.bills@linux.intel.com>
diff --git a/redfish-core/include/registries/openbmc_message_registry.hpp b/redfish-core/include/registries/openbmc_message_registry.hpp
index 0da82b1..5eb9380 100644
--- a/redfish-core/include/registries/openbmc_message_registry.hpp
+++ b/redfish-core/include/registries/openbmc_message_registry.hpp
@@ -29,7 +29,7 @@
     "0.1.0",
     "OpenBMC",
 };
-constexpr std::array<MessageEntry, 184> registry = {
+constexpr std::array<MessageEntry, 187> registry = {
     MessageEntry{
         "ADDDCCorrectable",
         {
@@ -456,6 +456,37 @@
                      {"string"},
                      "None.",
                  }},
+    MessageEntry{
+        "FirmwareActivationCompleted",
+        {
+            "Indicates a firmware activation has completed successfully.",
+            "%1 firmware activation completed successfully.",
+            "OK",
+            "OK",
+            1,
+            {"string"},
+            "None.",
+        }},
+    MessageEntry{"FirmwareActivationFailed",
+                 {
+                     "Indicates a firmware activation has failed.",
+                     "%1 firmware activation failed: %2.",
+                     "Warning",
+                     "Warning",
+                     2,
+                     {"string", "string"},
+                     "None.",
+                 }},
+    MessageEntry{"FirmwareActivationStarted",
+                 {
+                     "Indicates a firmware activation has started.",
+                     "%1 firmware activation started.",
+                     "OK",
+                     "OK",
+                     1,
+                     {"string"},
+                     "None.",
+                 }},
     MessageEntry{"FirmwareUpdateCompleted",
                  {
                      "Indicates a firmware update has completed successfully.",