diff options
author | Marty Gloff <mgloff@us.ibm.com> | 2016-11-08 14:29:38 -0600 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-01-04 21:15:44 -0500 |
commit | 82af686f8456f594ae17409f1e1e70fc55485cd8 (patch) | |
tree | dfb45ebed75b31efdc09f0e5d248d30c6d0a52a6 /src/bootloader/bl_terminate.C | |
parent | b2e82859d8551ef4ee4c6e270794b2fd2d5ad3a4 (diff) | |
download | talos-hostboot-82af686f8456f594ae17409f1e1e70fc55485cd8.tar.gz talos-hostboot-82af686f8456f594ae17409f1e1e70fc55485cd8.zip |
Bootloader - Error handling - Add terminate function
As a first step to providing Bootloader error handling add support
for a terminate function.
Change-Id: Id4f8f130376d1396cd4feb796d1a3a908558225b
RTC:135746
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/32390
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/bootloader/bl_terminate.C')
-rw-r--r-- | src/bootloader/bl_terminate.C | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/bootloader/bl_terminate.C b/src/bootloader/bl_terminate.C new file mode 100644 index 000000000..c87c0a207 --- /dev/null +++ b/src/bootloader/bl_terminate.C @@ -0,0 +1,31 @@ +/* IBM_PROLOG_BEGIN_TAG */ +/* This is an automatically generated prolog. */ +/* */ +/* $Source: src/bootloader/bl_terminate.C $ */ +/* */ +/* OpenPOWER HostBoot Project */ +/* */ +/* Contributors Listed Below - COPYRIGHT 2016 */ +/* [+] International Business Machines Corp. */ +/* */ +/* */ +/* Licensed under the Apache License, Version 2.0 (the "License"); */ +/* you may not use this file except in compliance with the License. */ +/* You may obtain a copy of the License at */ +/* */ +/* http://www.apache.org/licenses/LICENSE-2.0 */ +/* */ +/* Unless required by applicable law or agreed to in writing, software */ +/* distributed under the License is distributed on an "AS IS" BASIS, */ +/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */ +/* implied. See the License for the specific language governing */ +/* permissions and limitations under the License. */ +/* */ +/* IBM_PROLOG_END_TAG */ +#include <bootloader/bootloader.H> + +#define bl_terminate_C + +#include <../kernel/terminate.C> + +#undef bl_terminate_C |