From 59c2e87fd70918b9c78ccd6d55d11f94364cb175 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Mon, 22 Oct 2012 06:21:30 +0000 Subject: (start_udev) fix detecting if udev is already running Spot by Colin, broken since commit r4817 June 5 2012: "(start_udev) do not start udev twice in debug mode" --- perl-install/install/NEWS | 1 + perl-install/install/install2.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install/install') diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 2fe2ea166..c0200dee6 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,4 @@ +- fix detecting if udev is already running - include FIRMWARE packages from Cards+ in detected graphical drivers, to install radeon-firmware during install (#6438, #7641) - properly generate stage2 with a usrmove-esque fs layout diff --git a/perl-install/install/install2.pm b/perl-install/install/install2.pm index 6717a089e..220398ecd 100644 --- a/perl-install/install/install2.pm +++ b/perl-install/install/install2.pm @@ -293,7 +293,7 @@ sub exitInstall { #-###################################################################################### sub start_udev() { - return if -e "/dev/zero"; + return if fuzzy_pidofs('udevd'); # Ensure /run is mounted mkdir("/run", 0755); -- cgit v1.2.1