From 9e77d4d03773d32ea46c77ab969038738d1e327a Mon Sep 17 00:00:00 2001 From: Kyösti Mälkki Date: Wed, 25 Sep 2019 15:25:20 +0300 Subject: arch/: Replace __BOOTBLOCK__ with ENV_BOOTBLOCK MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I294a3fd7be57b505cd209f7c2718a05770786c51 Signed-off-by: Kyösti Mälkki Reviewed-on: https://review.coreboot.org/c/coreboot/+/35599 Tested-by: build bot (Jenkins) Reviewed-by: Furquan Shaikh Reviewed-by: Patrick Georgi --- src/arch/mips/include/arch/header.ld | 2 +- src/arch/ppc64/include/arch/header.ld | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/arch/mips/include/arch/header.ld b/src/arch/mips/include/arch/header.ld index 665013294c..7f832eb51c 100644 --- a/src/arch/mips/include/arch/header.ld +++ b/src/arch/mips/include/arch/header.ld @@ -19,7 +19,7 @@ PHDRS to_load PT_LOAD; } -#ifdef __BOOTBLOCK__ +#if ENV_BOOTBLOCK ENTRY(_start) #else ENTRY(stage_entry) diff --git a/src/arch/ppc64/include/arch/header.ld b/src/arch/ppc64/include/arch/header.ld index 349fd5165c..badeefdf49 100644 --- a/src/arch/ppc64/include/arch/header.ld +++ b/src/arch/ppc64/include/arch/header.ld @@ -19,7 +19,7 @@ PHDRS to_load PT_LOAD; } -#ifdef __BOOTBLOCK__ +#if ENV_BOOTBLOCK ENTRY(_start) #else ENTRY(stage_entry) -- cgit v1.2.3