forked from luck/tmp_suning_uos_patched
f96182e959
Currently, the 'firmware' directory only contains a single Makefile to embed extra firmware into the kernel. Move it to the more relevant place. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10 lines
287 B
Makefile
10 lines
287 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Makefile for the Linux firmware loader
|
|
|
|
obj-$(CONFIG_FW_LOADER_USER_HELPER) += fallback_table.o
|
|
obj-$(CONFIG_FW_LOADER) += firmware_class.o
|
|
firmware_class-objs := main.o
|
|
firmware_class-$(CONFIG_FW_LOADER_USER_HELPER) += fallback.o
|
|
|
|
obj-y += builtin/
|