Merge "feat(xilinx): switch boot console to runtime" into integration

This commit is contained in:
Joanna Farley 2023-11-06 14:55:07 +01:00 committed by TrustedFirmware Code Review
commit bfb8d8eba6
3 changed files with 6 additions and 0 deletions

View file

@ -203,6 +203,8 @@ void bl31_plat_runtime_setup(void)
if (rc != 0) {
panic();
}
console_switch_state(CONSOLE_FLAG_RUNTIME);
}
/*

View file

@ -226,6 +226,8 @@ void bl31_plat_runtime_setup(void)
if (rc != 0) {
panic();
}
console_switch_state(CONSOLE_FLAG_RUNTIME);
}
/*

View file

@ -190,6 +190,8 @@ void bl31_plat_runtime_setup(void)
#endif
custom_runtime_setup();
console_switch_state(CONSOLE_FLAG_RUNTIME);
}
/*