diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-24 02:39:00 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-24 02:39:00 +0100 |
| commit | 55bc0fabd1e3d9edd7e43c0ab135ce97d26705e0 (patch) | |
| tree | 066fcfc514edf6703ce2f6bc8ab56d4fbc22aeb6 /src/neboot-start.c | |
| parent | 567bfe58e9760ec3325464d094c51b7aaa006b57 (diff) | |
feat: add boot.h to cxx-abi.hpp header, clear cb_boot_processor_ready
after starting context.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/neboot-start.c')
| -rw-r--r-- | src/neboot-start.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/neboot-start.c b/src/neboot-start.c index f54ad1f..c282f55 100644 --- a/src/neboot-start.c +++ b/src/neboot-start.c @@ -106,6 +106,7 @@ void cb_start_exec(void) { if (boot_hdr->h_start_address != 0) { cb_boot_processor_ready = 1; cb_start_context(boot_hdr->h_start_address); + cb_boot_processor_ready = 0; } cb_put_string("NB> StageTwo has returned? (CB0002)\r\n"); @@ -131,6 +132,7 @@ void cb_start_exec(void) { cb_boot_processor_ready = 1; cb_start_context((uintptr_t) (voidptr_t) blk + start_lba); + cb_boot_processor_ready = 0; if (hart == 1) { cb_put_string("NB> Can't boot to StageTwo. (CB0001)\r\n"); |
