diff options
-rw-r--r-- | kexec/arch/arm64/crashdump-arm64.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kexec/arch/arm64/crashdump-arm64.c b/kexec/arch/arm64/crashdump-arm64.c index d2272c8..b0e4713 100644 --- a/kexec/arch/arm64/crashdump-arm64.c +++ b/kexec/arch/arm64/crashdump-arm64.c @@ -19,3 +19,9 @@ int is_crashkernel_mem_reserved(void) { return 0; } + +int get_crash_kernel_load_range(uint64_t *start, uint64_t *end) +{ + /* Crash kernel region size is not exposed by the system */ + return -1; +} |