Remove redundant bmc_active, bios info in redfish

Issue: bmc_active and bios information is redundant under redfish
FirmwareInventory.

Fix:
1. Removed bmc_active and bios_active from verComponentList in
intel-pfr-manager

Tested:
Request:
GET: https://<BMC_IP>/redfish/v1/UpdateService/FirmwareInventory/

Response:
{
"@odata.id": "/redfish/v1/UpdateService/FirmwareInventory",
"@odata.type": "#SoftwareInventoryCollection.SoftwareInventoryCollection",
"Members": [
  {
   "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/
                    bios_active"
  },
  {
   "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/
                 bios_recovery"
  },
  {
   "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/bmc_active"
  },
  {
   "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/
                 bmc_recovery"
  },
  {
    "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/
                 cpld_active"
  },
  {
    "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/
                  cpld_recovery"
  },
  {
    "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/me"
  }
 ],
  "Members@odata.count": 7,
  "Name": "Software Inventory Collection"
}

Signed-off-by: Chalapathi <chalapathix.venkataramashetty@linux.intel.com>
Signed-off-by: Vikram Bodireddy <vikram.bodireddy@linux.intel.com>
Change-Id: If61d548e050b82976d02c73b11e380d4130d9b78
diff --git a/service/src/mainapp.cpp b/service/src/mainapp.cpp
index 790162a..0d1c221 100644
--- a/service/src/mainapp.cpp
+++ b/service/src/mainapp.cpp
@@ -45,11 +45,8 @@
 // List holds <ObjPath> <ImageType> <VersionPurpose>
 static std::vector<std::tuple<std::string, ImageType, std::string>>
     verComponentList = {
-        std::make_tuple("bmc_active", ImageType::bmcActive, versionPurposeBMC),
         std::make_tuple("bmc_recovery", ImageType::bmcRecovery,
                         versionPurposeBMC),
-        std::make_tuple("bios_active", ImageType::biosActive,
-                        versionPurposeHost),
         std::make_tuple("bios_recovery", ImageType::biosRecovery,
                         versionPurposeHost),
         std::make_tuple("cpld_active", ImageType::cpldActive,