2018-05-16 09:42:23 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* Copyright 2013 Albert ARIBAUD <albert.u.boot@aribaud.net>
|
|
|
|
*
|
|
|
|
*/
|
2021-05-20 13:23:52 +02:00
|
|
|
#include <linux/compiler.h>
|
2018-05-16 09:42:23 -06:00
|
|
|
|
2022-05-30 10:00:02 +00:00
|
|
|
char __efi_runtime_start[0] __section("___efi_runtime_start");
|
|
|
|
char __efi_runtime_stop[0] __section("___efi_runtime_stop");
|
2018-05-16 09:42:23 -06:00
|
|
|
char __efi_runtime_rel_start[0]
|
2022-05-30 10:00:02 +00:00
|
|
|
__section("___efi_runtime_rel_start");
|
2018-05-16 09:42:23 -06:00
|
|
|
char __efi_runtime_rel_stop[0]
|
2022-05-30 10:00:02 +00:00
|
|
|
__section("___efi_runtime_rel_stop");
|