diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2024-10-25 21:08:49 +0200 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2024-10-25 21:08:49 +0200 |
| commit | 0d0829659be019b3695795e1604d36591a3c3785 (patch) | |
| tree | 12a9ffe10d493b7d0fe3b22a5222150e8d7eb5db /dev/zba/src | |
| parent | 87b734fa4072223f144f90a5dfe2e562c5430c21 (diff) | |
Fixed bootloader makefile and moved CFKit into it's own namespace.
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/zba/src')
| -rw-r--r-- | dev/zba/src/Thread.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/zba/src/Thread.cc b/dev/zba/src/Thread.cc index e1884dcb..d009a633 100644 --- a/dev/zba/src/Thread.cc +++ b/dev/zba/src/Thread.cc @@ -39,8 +39,8 @@ namespace Boot if (blob_bytes[0] == kMagMz0 && blob_bytes[1] == kMagMz1) { - LDR_EXEC_HEADER_PTR header_ptr = ldr_find_exec_header(blob_bytes); - LDR_OPTIONAL_HEADER_PTR opt_header_ptr = ldr_find_opt_exec_header(blob_bytes); + LDR_EXEC_HEADER_PTR header_ptr = CFKit::ldr_find_exec_header(blob_bytes); + LDR_OPTIONAL_HEADER_PTR opt_header_ptr = CFKit::ldr_find_opt_exec_header(blob_bytes); if (!header_ptr || !opt_header_ptr) return; |
