blob: 13630bf4585782f0fd3c662b4efc7a0398547b37 (
plain)
1
2
3
4
5
6
7
8
9
|
/* 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_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
OUTPUT_ARCH(arm)
#define OMAP_HEADER 1
#include "memlayout.ld"
|