diff options
Diffstat (limited to 'src/runtime')
-rw-r--r-- | src/runtime/makefile | 8 | ||||
-rw-r--r-- | src/runtime/rt_main.C | 7 |
2 files changed, 13 insertions, 2 deletions
diff --git a/src/runtime/makefile b/src/runtime/makefile index 981e00499..407c58a7f 100644 --- a/src/runtime/makefile +++ b/src/runtime/makefile @@ -5,7 +5,7 @@ # # OpenPOWER HostBoot Project # -# Contributors Listed Below - COPYRIGHT 2013,2017 +# Contributors Listed Below - COPYRIGHT 2013,2019 # [+] International Business Machines Corp. # # @@ -23,6 +23,12 @@ # # IBM_PROLOG_END_TAG HOSTBOOT_RUNTIME = 1 + +# Profiling the runtime makes it too big, but we should revisit this +# later after we reduce our memory footprint because it would be good +# to instrument this too. +HOSTBOOT_PROFILE= + ROOTPATH = ../.. include ../usr/runtime/common/common.mk VPATH += ../usr/runtime/common diff --git a/src/runtime/rt_main.C b/src/runtime/rt_main.C index b8f37e46c..3aa2931e6 100644 --- a/src/runtime/rt_main.C +++ b/src/runtime/rt_main.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2013,2018 */ +/* Contributors Listed Below - COPYRIGHT 2013,2019 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -166,6 +166,11 @@ runtimeInterfaces_t* rt_start(hostInterfaces_t* intf) // (HTMGT not compiled in by default) } +#ifdef CONFIG_NVDIMM + // Update hose with current NV_STATUS + rtPost->callSendNvStatus(); +#endif + // do any version mismatch fixups rt_version_fixup(); |