Linux Audio

Check our new training course

Embedded Linux training

Mar 10-20, 2025, special US time zones
Register
Loading...
Note: File does not exist in v4.6.
 1// SPDX-License-Identifier: GPL-2.0-only
 2/*
 3 * kexec_file for riscv, use vmlinux as the dump-capture kernel image.
 4 *
 5 * Copyright (C) 2021 Huawei Technologies Co, Ltd.
 6 *
 7 * Author: Liao Chang (liaochang1@huawei.com)
 8 */
 9#include <linux/kexec.h>
10
11const struct kexec_file_ops * const kexec_file_loaders[] = {
12	&elf_kexec_ops,
13	NULL
14};