summaryrefslogtreecommitdiffstats
path: root/src/arch/ppc64/include/arch/header.ld
blob: d4aa1344417548b00ed31263db2654a1b481492b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

/* We use ELF as output format. So that we can debug the code in some form. */
OUTPUT_ARCH(powerpc)

PHDRS
{
	to_load PT_LOAD;
}

#if ENV_BOOTBLOCK
ENTRY(_start)
#else
ENTRY(stage_entry)
#endif