From d0e6d34d7cca00cb61707826b52837cc7c43da46 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Wed, 9 Apr 2014 08:25:57 -0400 Subject: am335x: Switch to CONFIG_SKIP_LOWLEVEL_INIT from guarding SPL or NOR_BOOT In the case of SPL or NOR_BOOT (no SPL involved) we need to include certain code in the build. Use !CONFIG_SKIP_LOWLEVEL_INIT rather than CONFIG_SPL_BUILD || CONFIG_NOR_BOOT to make the code clearer, and to make supporting XIP QSPI boot clearer in the code. Signed-off-by: Tom Rini Reviewed-by: Wolfgang Denk --- board/silica/pengwyn/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'board/silica') diff --git a/board/silica/pengwyn/Makefile b/board/silica/pengwyn/Makefile index c8b4f9a280..804ac379db 100644 --- a/board/silica/pengwyn/Makefile +++ b/board/silica/pengwyn/Makefile @@ -6,7 +6,7 @@ # SPDX-License-Identifier: GPL-2.0+ # -ifeq ($(CONFIG_SPL_BUILD)$(CONFIG_NOR_BOOT),y) +ifeq ($(CONFIG_SKIP_LOWLEVEL_INIT),) obj-y := mux.o endif -- cgit v1.2.1