mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-20 15:48:14 +01:00
Allow these functions to be compiled in when CONFIG_BOOTM is enabled, even if CONFIG_CMD_BOOTM is not. Signed-off-by: Simon Glass <sjg@chromium.org> Acked-by: Angelo Dureghello <angelo@kernel-space.org>
12 lines
310 B
Makefile
12 lines
310 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2011 The Chromium OS Authors.
|
|
#
|
|
# (C) Copyright 2002-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
obj-y += fdt_fixup.o interrupts.o sections.o
|
|
obj-$(CONFIG_PCI) += pci_io.o
|
|
obj-$(CONFIG_BOOTM) += bootm.o
|
|
obj-$(CONFIG_CMD_BOOTZ) += bootm.o
|