From f271dd97622b656c1c013d181ea615c671cc2438 Mon Sep 17 00:00:00 2001 From: "Lee, Chun-Yi" Date: Sat, 27 Oct 2012 11:23:22 +0800 Subject: systemd: mount the EFI variable filesystem MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add efivarfs to the mount_table in mount-setup.c, so the EFI variable filesystem will be mounted when systemd executed. The EFI variable filesystem will merge in v3.7 or v3.8 linux kernel. Cc: Kay Sievers Cc: Lennart Poettering Cc: Mantas Mikulėnas Cc: Zbigniew Jędrzejewski-Szmek Cc: Matt Fleming Cc: Jeremy Kerr Cc: Matthew Garrett Signed-off-by: Lee, Chun-Yi --- src/core/kmod-setup.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/core/kmod-setup.c') diff --git a/src/core/kmod-setup.c b/src/core/kmod-setup.c index cc2a2d94b2..ce8a8e7d38 100644 --- a/src/core/kmod-setup.c +++ b/src/core/kmod-setup.c @@ -31,9 +31,10 @@ #include "kmod-setup.h" static const char * const kmod_table[] = { - "autofs4", "/sys/class/misc/autofs", - "ipv6", "/sys/module/ipv6", - "unix", "/proc/net/unix" + "autofs4", "/sys/class/misc/autofs", + "ipv6", "/sys/module/ipv6", + "efivarfs", "/sys/firmware/efi/efivars", + "unix", "/proc/net/unix" }; #pragma GCC diagnostic push -- cgit v1.2.3-54-g00ecf