mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-03 18:10:13 +00:00
f80ebb2fe1
Move this test out so it can have its own file. Rename the test to use a cedit_ prefix. This allows us to drop the check for CONFIG_CMD_CEDIT in the test. Also we don't need driver model objects for this test, so drop them. Signed-off-by: Simon Glass <sjg@chromium.org>
14 lines
351 B
Makefile
14 lines
351 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright 2021 Google LLC
|
|
|
|
obj-$(CONFIG_BOOTSTD) += bootdev.o bootstd_common.o bootflow.o bootmeth.o
|
|
obj-$(CONFIG_FIT) += image.o
|
|
|
|
obj-$(CONFIG_EXPO) += expo.o
|
|
obj-$(CONFIG_CEDIT) += cedit.o
|
|
|
|
ifdef CONFIG_OF_LIVE
|
|
obj-$(CONFIG_BOOTMETH_VBE_SIMPLE) += vbe_simple.o
|
|
endif
|
|
obj-$(CONFIG_BOOTMETH_VBE) += vbe_fixup.o
|