mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-08 23:31:31 +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>
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/
|