Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 2 | # |
| 3 | # (C) Copyright 2002 |
Albert ARIBAUD | 60fbc8d | 2011-08-04 18:45:45 +0200 | [diff] [blame] | 4 | # Daniel Engström, Omicron Ceti AB, daniel@omicron.se. |
wdenk | 591dda5 | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 5 | |
Graeme Russ | 3fe4860 | 2011-02-12 15:11:24 +1100 | [diff] [blame] | 6 | # DO NOT MODIFY THE FOLLOWING UNLESS YOU REALLY KNOW WHAT YOU ARE DOING! |
Bin Meng | 51b0f62 | 2015-06-07 11:33:12 +0800 | [diff] [blame] | 7 | LDPPFLAGS += -DRESET_SEG_START=$(CONFIG_RESET_SEG_START) |
Bin Meng | 51b0f62 | 2015-06-07 11:33:12 +0800 | [diff] [blame] | 8 | LDPPFLAGS += -DRESET_VEC_LOC=$(CONFIG_RESET_VEC_LOC) |
Simon Glass | 20ec253 | 2014-11-14 18:18:25 -0700 | [diff] [blame] | 9 | LDPPFLAGS += -DSTART_16=$(CONFIG_SYS_X86_START16) |
Simon Glass | c74f9dc | 2017-01-16 07:04:01 -0700 | [diff] [blame] | 10 | |
| 11 | ifdef CONFIG_X86_64 |
Simon Glass | 68367d8 | 2022-01-04 03:51:15 -0700 | [diff] [blame] | 12 | ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_EFI_APP),) |
Simon Glass | c74f9dc | 2017-01-16 07:04:01 -0700 | [diff] [blame] | 13 | LDSCRIPT = $(srctree)/arch/x86/cpu/u-boot-64.lds |
| 14 | endif |
| 15 | endif |