Skip to content

Commit 84a769c

Browse files
committed
systemd: 249.5 -> 249.7
1 parent e06734e commit 84a769c

21 files changed

Lines changed: 60 additions & 789 deletions

pkgs/os-specific/linux/systemd/0001-Start-device-units-for-uninitialised-encrypted-devic.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From d4ea219a35a09fe02bc9e47e8530644cb4fc4146 Mon Sep 17 00:00:00 2001
1+
From 93b2d29de784c68d1b4d70d7f214b19432aec6a8 Mon Sep 17 00:00:00 2001
22
From: Eelco Dolstra <eelco.dolstra@logicblox.com>
33
Date: Tue, 8 Jan 2013 15:46:30 +0100
4-
Subject: [PATCH 01/21] Start device units for uninitialised encrypted devices
4+
Subject: [PATCH 01/19] Start device units for uninitialised encrypted devices
55

66
This is necessary because the NixOS service that initialises the
77
filesystem depends on the appearance of the device unit. Also, this
@@ -28,5 +28,5 @@ index 25b8a590a6..d18999ea87 100644
2828
SUBSYSTEM=="block", ENV{ID_PART_GPT_AUTO_ROOT}=="1", ENV{ID_FS_TYPE}!="crypto_LUKS", SYMLINK+="gpt-auto-root"
2929
SUBSYSTEM=="block", ENV{ID_PART_GPT_AUTO_ROOT}=="1", ENV{ID_FS_TYPE}=="crypto_LUKS", SYMLINK+="gpt-auto-root-luks"
3030
--
31-
2.33.0
31+
2.33.1
3232

pkgs/os-specific/linux/systemd/0002-Don-t-try-to-unmount-nix-or-nix-store.patch

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From 67abd8f22f70d9348bc9d8e0e93dde4d325627ba Mon Sep 17 00:00:00 2001
1+
From 41edb381df0326e216b3c569d2cd5764591267d9 Mon Sep 17 00:00:00 2001
22
From: Eelco Dolstra <eelco.dolstra@logicblox.com>
33
Date: Fri, 12 Apr 2013 13:16:57 +0200
4-
Subject: [PATCH 02/21] Don't try to unmount /nix or /nix/store
4+
Subject: [PATCH 02/19] Don't try to unmount /nix or /nix/store
55

66
They'll still be remounted read-only.
77

@@ -25,10 +25,10 @@ index f683f05981..5a04c2c2a6 100644
2525
"/etc"))
2626
return true;
2727
diff --git a/src/shutdown/umount.c b/src/shutdown/umount.c
28-
index c2a26242c0..9936398f32 100644
28+
index 1f945b7875..6df9d383ba 100644
2929
--- a/src/shutdown/umount.c
3030
+++ b/src/shutdown/umount.c
31-
@@ -496,6 +496,8 @@ static int delete_md(MountPoint *m) {
31+
@@ -508,6 +508,8 @@ static int delete_md(MountPoint *m) {
3232

3333
static bool nonunmountable_path(const char *path) {
3434
return path_equal(path, "/")
@@ -38,5 +38,5 @@ index c2a26242c0..9936398f32 100644
3838
|| path_equal(path, "/usr")
3939
#endif
4040
--
41-
2.33.0
41+
2.33.1
4242

pkgs/os-specific/linux/systemd/0003-Fix-NixOS-containers.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From 37c9471f59bd57223014a4a645b5f96a71d78787 Mon Sep 17 00:00:00 2001
1+
From 43620479f6bfbbc4c3eed28947e0676c817acb7c Mon Sep 17 00:00:00 2001
22
From: Eelco Dolstra <eelco.dolstra@logicblox.com>
33
Date: Wed, 16 Apr 2014 10:59:28 +0200
4-
Subject: [PATCH 03/21] Fix NixOS containers
4+
Subject: [PATCH 03/19] Fix NixOS containers
55

66
In NixOS containers, the init script is bind-mounted into the
77
container, so checking early whether it exists will fail.
@@ -30,5 +30,5 @@ index 575b9da447..438ca294db 100644
3030

3131
} else {
3232
--
33-
2.33.0
33+
2.33.1
3434

pkgs/os-specific/linux/systemd/0004-Look-for-fsck-in-the-right-place.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From 987d6f94dac8e1a75615fd9ddcfb0eb1c2c4c349 Mon Sep 17 00:00:00 2001
1+
From a08ed6697974d7f7dabe60d42bbc9e31a10f7e23 Mon Sep 17 00:00:00 2001
22
From: Eelco Dolstra <eelco.dolstra@logicblox.com>
33
Date: Thu, 1 May 2014 14:10:10 +0200
4-
Subject: [PATCH 04/21] Look for fsck in the right place
4+
Subject: [PATCH 04/19] Look for fsck in the right place
55

66
---
77
src/fsck/fsck.c | 2 +-
@@ -21,5 +21,5 @@ index cd7adfaeb9..68cebdd158 100644
2121
cmdline[i++] = "-T";
2222

2323
--
24-
2.33.0
24+
2.33.1
2525

pkgs/os-specific/linux/systemd/0005-Add-some-NixOS-specific-unit-directories.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From da4f855044b2babe052ce303cca1de736cf952cd Mon Sep 17 00:00:00 2001
1+
From ddcfae6de8c460903c5db8c536ffeb5771e976f8 Mon Sep 17 00:00:00 2001
22
From: Eelco Dolstra <eelco.dolstra@logicblox.com>
33
Date: Fri, 19 Dec 2014 14:46:17 +0100
4-
Subject: [PATCH 05/21] Add some NixOS-specific unit directories
4+
Subject: [PATCH 05/19] Add some NixOS-specific unit directories
55

66
Look in `/nix/var/nix/profiles/default/lib/systemd/{system,user}` for
77
units provided by packages installed into the default profile via
@@ -122,5 +122,5 @@ index fc0f8c34fa..162432e77f 100644
122122

123123
systemd_sleep_dir=${root_prefix}/lib/systemd/system-sleep
124124
--
125-
2.33.0
125+
2.33.1
126126

pkgs/os-specific/linux/systemd/0006-Get-rid-of-a-useless-message-in-user-sessions.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From c06abdb631527f56a626b739340d1b275349612c Mon Sep 17 00:00:00 2001
1+
From b39b8871bcaa07280d6b0cf2226b1a3be31232b8 Mon Sep 17 00:00:00 2001
22
From: Eelco Dolstra <eelco.dolstra@logicblox.com>
33
Date: Mon, 11 May 2015 15:39:38 +0200
4-
Subject: [PATCH 06/21] Get rid of a useless message in user sessions
4+
Subject: [PATCH 06/19] Get rid of a useless message in user sessions
55

66
Namely lots of variants of
77

@@ -27,5 +27,5 @@ index 34891a8754..b9b4789720 100644
2727
/* If stopping a unit fails continuously we might enter a stop loop here, hence stop acting on the
2828
* service being unnecessary after a while. */
2929
--
30-
2.33.0
30+
2.33.1
3131

pkgs/os-specific/linux/systemd/0007-hostnamed-localed-timedated-disable-methods-that-cha.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From 207c69466cdd164c42ed1901deb06f57b12f4363 Mon Sep 17 00:00:00 2001
1+
From 566208aea81057789218b959f4d0e898eec54fc9 Mon Sep 17 00:00:00 2001
22
From: Gabriel Ebner <gebner@gebner.org>
33
Date: Sun, 6 Dec 2015 14:26:36 +0100
4-
Subject: [PATCH 07/21] hostnamed, localed, timedated: disable methods that
4+
Subject: [PATCH 07/19] hostnamed, localed, timedated: disable methods that
55
change system settings.
66

77
---
@@ -104,5 +104,5 @@ index 66b454269d..0a8fe25d0f 100644
104104
if (r < 0)
105105
return r;
106106
--
107-
2.33.0
107+
2.33.1
108108

pkgs/os-specific/linux/systemd/0008-Fix-hwdb-paths.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From 3ca3855259c3015615983587063fa159cfa7e93c Mon Sep 17 00:00:00 2001
1+
From 3b9983969de2a86929768f6362ed41c20dd13bd3 Mon Sep 17 00:00:00 2001
22
From: Nikolay Amiantov <ab@fmap.me>
33
Date: Thu, 7 Jul 2016 02:47:13 +0300
4-
Subject: [PATCH 08/21] Fix hwdb paths
4+
Subject: [PATCH 08/19] Fix hwdb paths
55

66
Patch by vcunat.
77
---
@@ -24,5 +24,5 @@ index 5ddc2211e6..ee621eec46 100644
2424
+ "/etc/udev/hwdb.bin\0"
2525
+
2626
--
27-
2.33.0
27+
2.33.1
2828

pkgs/os-specific/linux/systemd/0009-Change-usr-share-zoneinfo-to-etc-zoneinfo.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From 717226ad0dc37ceb6c667c1f56396848978b6e83 Mon Sep 17 00:00:00 2001
1+
From b5966b6abb9696798618367cab33d1fed317734f Mon Sep 17 00:00:00 2001
22
From: Nikolay Amiantov <ab@fmap.me>
33
Date: Tue, 11 Oct 2016 13:12:08 +0300
4-
Subject: [PATCH 09/21] Change /usr/share/zoneinfo to /etc/zoneinfo
4+
Subject: [PATCH 09/19] Change /usr/share/zoneinfo to /etc/zoneinfo
55

66
NixOS uses this path.
77
---
@@ -137,5 +137,5 @@ index 0a8fe25d0f..2f02b9a520 100644
137137
return -ENOMEM;
138138

139139
--
140-
2.33.0
140+
2.33.1
141141

pkgs/os-specific/linux/systemd/0010-localectl-use-etc-X11-xkb-for-list-x11.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
From 75d12cf65073458f091899d673c613dfc43f60c0 Mon Sep 17 00:00:00 2001
1+
From f4e9304560ad42eeb8d42be583cc55eb2e5b4bb1 Mon Sep 17 00:00:00 2001
22
From: Imuli <i@imu.li>
33
Date: Wed, 19 Oct 2016 08:46:47 -0400
4-
Subject: [PATCH 10/21] localectl: use /etc/X11/xkb for list-x11-*
4+
Subject: [PATCH 10/19] localectl: use /etc/X11/xkb for list-x11-*
55

66
NixOS has an option to link the xkb data files to /etc/X11, but not to
77
/usr/share/X11.
@@ -23,5 +23,5 @@ index 548ac8eb2c..5e372f1566 100644
2323
return log_error_errno(errno, "Failed to open keyboard mapping list. %m");
2424

2525
--
26-
2.33.0
26+
2.33.1
2727

0 commit comments

Comments
 (0)