mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
88ca8e2695
In some cases we do not want to enable partition support in SPL. Add an option to allow this. Signed-off-by: Simon Glass <sjg@chromium.org>
13 lines
459 B
Makefile
13 lines
459 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#ccflags-y += -DET_DEBUG -DDEBUG
|
|
|
|
obj-$(CONFIG_$(SPL_TPL_)PARTITIONS) += part.o
|
|
obj-$(CONFIG_$(SPL_)MAC_PARTITION) += part_mac.o
|
|
obj-$(CONFIG_$(SPL_)DOS_PARTITION) += part_dos.o
|
|
obj-$(CONFIG_$(SPL_)ISO_PARTITION) += part_iso.o
|
|
obj-$(CONFIG_$(SPL_)AMIGA_PARTITION) += part_amiga.o
|
|
obj-$(CONFIG_$(SPL_)EFI_PARTITION) += part_efi.o
|