Enabled pHAL infrastructure to boot the host

IPL (libipl) used for executing hardware procedures
to initilize the power processor based host.

Tested by:
  1. ./configure
  2. ./configure --enable-phal --enable-openfsi

Change-Id: I57ff64595a757041ee60ccb420092975b064462d
Signed-off-by: Ramesh Iyyar <rameshi1@in.ibm.com>
diff --git a/proc_control.cpp b/proc_control.cpp
index 0035b4f..1afdace 100644
--- a/proc_control.cpp
+++ b/proc_control.cpp
@@ -104,6 +104,12 @@
         commit<fsi_error::SlaveDetectionFailure>();
         return -1;
     }
+    // TODO ibm-openbmc#1470
+    catch (common_error::InternalFailure& e)
+    {
+        commit<common_error::InternalFailure>();
+        return -1;
+    }
 
     return 0;
 }