mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-07 15:04:17 +00:00
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>
9 lines
287 B
Makefile
9 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/
|