mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
2d82e6227e
Move the fiddly bits of the efivar layer into its only remaining user, efivarfs, and confine its use to that particular module. All other uses of the EFI variable store have no need for this additional layer of complexity, given that they either only read variables, or read and write variables into a separate GUIDed namespace, and cannot be used to manipulate EFI variables that are covered by the EFI spec and/or affect the boot flow. Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
9 lines
173 B
Makefile
9 lines
173 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the efivarfs filesystem
|
|
#
|
|
|
|
obj-$(CONFIG_EFIVAR_FS) += efivarfs.o
|
|
|
|
efivarfs-objs := inode.o file.o super.o vars.o
|