// SPDX-License-Identifier: GPL-2.0 /* * machine_kexec.c - handle transition of Linux booting another kernel */ #include <linux/compiler.h> #include <linux/kexec.h> #include <linux/mm.h> #include <linux/delay.h> #include <asm/cacheflush.h> #include <asm/page.h> #include <asm/setup.h> extern const unsigned char relocate_new_kernel[]; extern const size_t relocate_new_kernel_size;
int machine_kexec_prepare(struct kimage *kimage) { return 0; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Geert Uytterhoeven | 13 | 100.00% | 1 | 100.00% |
Total | 13 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Geert Uytterhoeven | 9 | 100.00% | 1 | 100.00% |
Total | 9 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Geert Uytterhoeven | 6 | 100.00% | 1 | 100.00% |
Total | 6 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Geert Uytterhoeven | 9 | 100.00% | 1 | 100.00% |
Total | 9 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Geert Uytterhoeven | 80 | 100.00% | 1 | 100.00% |
Total | 80 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Geert Uytterhoeven | 171 | 99.42% | 1 | 50.00% |
Greg Kroah-Hartman | 1 | 0.58% | 1 | 50.00% |
Total | 172 | 100.00% | 2 | 100.00% |