24 lines
344 B
Plaintext
24 lines
344 B
Plaintext
|
/*
|
||
|
* Copyright 2021 Google LLC
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#include <autoconf.h>
|
||
|
#include <linker/sections.h>
|
||
|
#include <devicetree.h>
|
||
|
|
||
|
#include <linker/linker-defs.h>
|
||
|
#include <linker/linker-tool.h>
|
||
|
|
||
|
MEMORY
|
||
|
{
|
||
|
DT_RESERVED_MEM_REGIONS()
|
||
|
}
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
DT_RESERVED_MEM_SECTIONS()
|
||
|
}
|
||
|
|
||
|
#include <arch/arm64/scripts/linker.ld>
|