]> git.pld-linux.org Git - packages/systemd.git/blob - systemd-configfs.patch
up to 254.12
[packages/systemd.git] / systemd-configfs.patch
1 --- systemd-stable-254/units/meson.build.orig   2023-08-03 00:34:19.694943339 +0200
2 +++ systemd-stable-254/units/meson.build        2023-08-03 00:37:00.467127234 +0200
3 @@ -208,6 +208,7 @@
4            'file' : 'sys-kernel-config.mount',
5            'symlinks' : ['sysinit.target.wants/'],
6          },
7 +        { 'file' : 'sys-kernel-config.service' },
8          {
9            'file' : 'sys-kernel-debug.mount',
10            'symlinks' : ['sysinit.target.wants/'],
11 diff -durN -x '*.orig' systemd-208.orig/units/sys-kernel-config.mount systemd-208/units/sys-kernel-config.mount
12 --- systemd-208.orig/units/sys-kernel-config.mount      2013-08-13 22:02:52.000000000 +0200
13 +++ systemd-208/units/sys-kernel-config.mount   2014-01-10 10:22:04.000000000 +0100
14 @@ -10,8 +10,9 @@ Description=Configuration File System
15  Documentation=https://docs.kernel.org/filesystems/configfs.html
16  Documentation=https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
17  DefaultDependencies=no
18 -ConditionPathExists=/sys/kernel/config
19  ConditionCapability=CAP_SYS_RAWIO
20 +Wants=sys-kernel-config.service
21 +After=systemd-modules-load.service sys-kernel-config.service
22  Before=sysinit.target
23  
24  # These dependencies are used to make certain that the module is fully
25 diff -durN -x '*.orig' systemd-208.orig/units/sys-kernel-config.service systemd-208/units/sys-kernel-config.service
26 --- systemd-208.orig/units/sys-kernel-config.service    1970-01-01 01:00:00.000000000 +0100
27 +++ systemd-208/units/sys-kernel-config.service 2014-01-10 10:22:04.000000000 +0100
28 @@ -0,0 +1,8 @@
29 +[Unit]
30 +Description=Load the configfs module for /sys/kernel/config mount
31 +ConditionPathExists=!/sys/kernel/config
32 +DefaultDependencies=no
33 +
34 +[Service]
35 +Type=oneshot
36 +ExecStart=/sbin/modprobe -b configfs
This page took 0.592465 seconds and 4 git commands to generate.