mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
d0e6d34d7c
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 <trini@ti.com> Reviewed-by: Wolfgang Denk <wd@denx.de>
13 lines
205 B
Makefile
13 lines
205 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
ifeq ($(CONFIG_SKIP_LOWLEVEL_INIT),)
|
|
obj-y := mux.o
|
|
endif
|
|
|
|
obj-y += board.o
|