mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-08 13:44:01 +08:00
74ce1896c6
We need to add "clean-files" in Makfiles to clean up DT blobs, but we often miss to do so. Since there are no source files that end with .dtb or .dtb.S, so we can clean-up those files from the top-level Makefile. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Rob Herring <robh@kernel.org>
13 lines
346 B
Makefile
13 lines
346 B
Makefile
dtb-$(CONFIG_DT_XLP_EVP) += xlp_evp.dtb
|
|
dtb-$(CONFIG_DT_XLP_SVP) += xlp_svp.dtb
|
|
dtb-$(CONFIG_DT_XLP_FVP) += xlp_fvp.dtb
|
|
dtb-$(CONFIG_DT_XLP_GVP) += xlp_gvp.dtb
|
|
dtb-$(CONFIG_DT_XLP_RVP) += xlp_rvp.dtb
|
|
|
|
obj-y += $(patsubst %.dtb, %.dtb.o, $(dtb-y))
|
|
|
|
# Force kbuild to make empty built-in.o if necessary
|
|
obj- += dummy.o
|
|
|
|
always := $(dtb-y)
|