2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-09-25 21:27:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Albert ARIBAUD <albert.u.boot@aribaud.net>
|
|
|
|
*/
|
2021-05-20 11:23:52 +00:00
|
|
|
#include <linux/compiler.h>
|
2016-09-25 21:27:35 +00:00
|
|
|
|
2021-05-20 11:23:52 +00:00
|
|
|
char __efi_runtime_start[0] __section(".__efi_runtime_start");
|
|
|
|
char __efi_runtime_stop[0] __section(".__efi_runtime_stop");
|
2016-09-25 21:27:35 +00:00
|
|
|
char __efi_runtime_rel_start[0]
|
2021-05-20 11:23:52 +00:00
|
|
|
__section(".__efi_runtime_rel_start");
|
2016-09-25 21:27:35 +00:00
|
|
|
char __efi_runtime_rel_stop[0]
|
2021-05-20 11:23:52 +00:00
|
|
|
__section(".__efi_runtime_rel_stop");
|