summaryrefslogtreecommitdiffstats
path: root/fs/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2014-07-07 18:15:17 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2014-07-16 10:46:18 +0200
commitef4f9d77b72c2349e7dfcdb2de9f60ed758e1888 (patch)
tree8a8423588e5357db71b8887a44fefabe7389a1e1 /fs/Makefile
parentd6e62b225b89c4dcc715b839eefbde1254f67be7 (diff)
downloadbarebox-ef4f9d77b72c2349e7dfcdb2de9f60ed758e1888.tar.gz
barebox-ef4f9d77b72c2349e7dfcdb2de9f60ed758e1888.tar.xz
fs: implement EFI variable filesystem driver
This implements a filesystem for accessing EFI variables. It is compatible to the Linux Kernel efivarfs filesystem. Currently the variables can only be accessed readonly. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'fs/Makefile')
-rw-r--r--fs/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/Makefile b/fs/Makefile
index f02785176c..f5aae91a60 100644
--- a/fs/Makefile
+++ b/fs/Makefile
@@ -12,3 +12,4 @@ obj-$(CONFIG_FS_NFS) += nfs.o parseopt.o
obj-$(CONFIG_FS_BPKFS) += bpkfs.o
obj-$(CONFIG_FS_UIMAGEFS) += uimagefs.o
obj-$(CONFIG_FS_EFI) += efi.o
+obj-$(CONFIG_FS_EFIVARFS) += efivarfs.o