xref: /openbmc/u-boot/arch/x86/cpu/config.mk (revision 2d1951fe)
1#
2# (C) Copyright 2002
3# Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
4#
5# SPDX-License-Identifier:	GPL-2.0+
6#
7
8CROSS_COMPILE ?= i386-linux-
9
10# DO NOT MODIFY THE FOLLOWING UNLESS YOU REALLY KNOW WHAT YOU ARE DOING!
11LDPPFLAGS += -DRESET_SEG_START=$(CONFIG_RESET_SEG_START)
12LDPPFLAGS += -DRESET_SEG_SIZE=$(CONFIG_RESET_SEG_SIZE)
13LDPPFLAGS += -DRESET_VEC_LOC=$(CONFIG_RESET_VEC_LOC)
14LDPPFLAGS += -DSTART_16=$(CONFIG_SYS_X86_START16)
15LDPPFLAGS += -DRESET_BASE="CONFIG_SYS_TEXT_BASE + (CONFIG_SYS_MONITOR_LEN - RESET_SEG_SIZE)"
16
17ifdef CONFIG_X86_64
18ifndef CONFIG_SPL_BUILD
19LDSCRIPT = $(srctree)/arch/x86/cpu/u-boot-64.lds
20endif
21endif
22