1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-26 08:55:18 +03:00

mount-setup: don't need to mount /sys/fs/pstore if there is no ENABLE_PSTORE

(cherry picked from commit 5e5fce3e91)
(cherry picked from commit 613994c10b)
(cherry picked from commit 46a7e30cb9)
This commit is contained in:
jcg 2022-12-09 20:45:39 +08:00 committed by Luca Boccassi
parent a62fc7d66c
commit 0e96d07e8c

View File

@ -102,8 +102,10 @@ static const MountPoint mount_table[] = {
cg_is_legacy_wanted, MNT_IN_CONTAINER },
{ "cgroup", "/sys/fs/cgroup/systemd", "cgroup", "none,name=systemd", MS_NOSUID|MS_NOEXEC|MS_NODEV,
cg_is_legacy_wanted, MNT_FATAL|MNT_IN_CONTAINER },
#if ENABLE_PSTORE
{ "pstore", "/sys/fs/pstore", "pstore", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
NULL, MNT_NONE },
#endif
#if ENABLE_EFI
{ "efivarfs", "/sys/firmware/efi/efivars", "efivarfs", NULL, MS_NOSUID|MS_NOEXEC|MS_NODEV,
is_efi_boot, MNT_NONE },