diff --git a/src/satman/src/main.rs b/src/satman/src/main.rs index 1da54a68..0f57bf40 100644 --- a/src/satman/src/main.rs +++ b/src/satman/src/main.rs @@ -626,9 +626,6 @@ extern fn dl_unwind_find_exidx(_pc: *const u32, len_ptr: *mut u32) -> *const u32 let length; let start: *const u32; unsafe { - // lifted off runtime kernel/core1.rs - // and removed kernel image from there - // hope it works! length = (&__exidx_end as *const u32).offset_from(&__exidx_start) as u32; start = &__exidx_start; *len_ptr = length;