mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
5c9dd72d83
Test the KUnit test managed overlay APIs. Confirm that platform devices are created and destroyed properly. This provides us confidence that the test managed APIs work correctly and can be relied upon to provide tests with fake platform devices and device nodes via overlays compiled into the kernel image. Cc: Rob Herring <robh@kernel.org> Cc: Saravana Kannan <saravanak@google.com> Cc: Daniel Latypov <dlatypov@google.com> Cc: Brendan Higgins <brendan.higgins@linux.dev> Reviewed-by: David Gow <davidgow@google.com> Cc: Rae Moar <rmoar@google.com> Reviewed-by: Rob Herring (Arm) <robh@kernel.org> Signed-off-by: Stephen Boyd <sboyd@kernel.org> Link: https://lore.kernel.org/r/20240718210513.3801024-5-sboyd@kernel.org
28 lines
899 B
Makefile
28 lines
899 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-y = base.o cpu.o device.o module.o platform.o property.o
|
|
obj-$(CONFIG_OF_KOBJ) += kobj.o
|
|
obj-$(CONFIG_OF_DYNAMIC) += dynamic.o
|
|
obj-$(CONFIG_OF_FLATTREE) += fdt.o empty_root.dtb.o
|
|
obj-$(CONFIG_OF_EARLY_FLATTREE) += fdt_address.o
|
|
obj-$(CONFIG_OF_PROMTREE) += pdt.o
|
|
obj-$(CONFIG_OF_ADDRESS) += address.o
|
|
obj-$(CONFIG_OF_IRQ) += irq.o
|
|
obj-$(CONFIG_OF_UNITTEST) += unittest.o
|
|
obj-$(CONFIG_OF_RESERVED_MEM) += of_reserved_mem.o
|
|
obj-$(CONFIG_OF_RESOLVE) += resolver.o
|
|
obj-$(CONFIG_OF_OVERLAY) += overlay.o
|
|
obj-$(CONFIG_OF_NUMA) += of_numa.o
|
|
|
|
ifdef CONFIG_KEXEC_FILE
|
|
ifdef CONFIG_OF_FLATTREE
|
|
obj-y += kexec.o
|
|
endif
|
|
endif
|
|
|
|
obj-$(CONFIG_KUNIT) += of_kunit_helpers.o
|
|
obj-$(CONFIG_OF_KUNIT_TEST) += of_test.o
|
|
obj-$(CONFIG_OF_OVERLAY_KUNIT_TEST) += overlay-test.o
|
|
overlay-test-y := overlay_test.o kunit_overlay_test.dtbo.o
|
|
|
|
obj-$(CONFIG_OF_UNITTEST) += unittest-data/
|