summaryrefslogtreecommitdiff
path: root/kexec/arch/arm64/crashdump-arm64.c
blob: d2272c8124d0a99af60710d58a75348229912312 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * ARM64 crashdump.
 */

#define _GNU_SOURCE

#include <errno.h>
#include <linux/elf.h>

#include "kexec.h"
#include "crashdump.h"
#include "crashdump-arm64.h"
#include "kexec-arm64.h"
#include "kexec-elf.h"

struct memory_ranges usablemem_rgns = {};

int is_crashkernel_mem_reserved(void)
{
	return 0;
}