hypervisor: remove OSStart from state association

Turns out the hypervisor never utilized the OSStart BootProgress.
Remove it from our mapping to hypervisor state.

Our hostboot BIOS team is actually looking to utilize this
BootProgress to indicate when they start the hypervisor. This would just
be a standard BootProgress that PSM needs no special handling of.

Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
Change-Id: I99a7110de47943a98a35f0e8bf2516a27bb7e6fa
diff --git a/hypervisor_state_manager.cpp b/hypervisor_state_manager.cpp
index d158818..da4d37f 100644
--- a/hypervisor_state_manager.cpp
+++ b/hypervisor_state_manager.cpp
@@ -69,11 +69,6 @@
         currentHostState(server::Host::HostState::Standby);
     }
     else if (bootProgress == "xyz.openbmc_project.State.Boot.Progress."
-                             "ProgressStages.OSStart")
-    {
-        currentHostState(server::Host::HostState::TransitioningToRunning);
-    }
-    else if (bootProgress == "xyz.openbmc_project.State.Boot.Progress."
                              "ProgressStages.OSRunning")
     {
         currentHostState(server::Host::HostState::Running);
diff --git a/test/hypervisor_state.cpp b/test/hypervisor_state.cpp
index 9136c83..b423f2e 100644
--- a/test/hypervisor_state.cpp
+++ b/test/hypervisor_state.cpp
@@ -27,12 +27,6 @@
     EXPECT_EQ(hypObj.currentHostState(), server::Host::HostState::Standby);
 
     bootProgress = "xyz.openbmc_project.State.Boot.Progress."
-                   "ProgressStages.OSStart";
-    hypObj.updateCurrentHostState(bootProgress);
-    EXPECT_EQ(hypObj.currentHostState(),
-              server::Host::HostState::TransitioningToRunning);
-
-    bootProgress = "xyz.openbmc_project.State.Boot.Progress."
                    "ProgressStages.OSRunning";
     hypObj.updateCurrentHostState(bootProgress);
     EXPECT_EQ(hypObj.currentHostState(), server::Host::HostState::Running);