diff options
Diffstat (limited to 'src/usr/initservice/istepdispatcher/splesscommon.H')
-rw-r--r-- | src/usr/initservice/istepdispatcher/splesscommon.H | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/usr/initservice/istepdispatcher/splesscommon.H b/src/usr/initservice/istepdispatcher/splesscommon.H index 8602901a6..d75ee1f83 100644 --- a/src/usr/initservice/istepdispatcher/splesscommon.H +++ b/src/usr/initservice/istepdispatcher/splesscommon.H @@ -41,7 +41,13 @@ /******************************************************************************/ // Globals/Constants /******************************************************************************/ -const uint64_t ISTEP_MODE_SIGNATURE = 0x4057b0074057b007; +/** + * @note Since ISTEP_MODE attribute is nonvolitile (persists across boots), + * we must have a way to turn the attribute both ON and OFF - we + * cannot depend on the FSP to do it since we may not have a FSP. + */ +const uint64_t ISTEP_MODE_ON_SIGNATURE = 0x4057b0074057b007; +const uint64_t ISTEP_MODE_OFF_SIGNATURE = 0x700b7504700b7504; /******************************************************************************/ // SPLESS Command Prototypes |