From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.77) (envelope-from ) id 1SqnFc-0004ZC-AU for garchives@archives.gentoo.org; Mon, 16 Jul 2012 15:30:20 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8BF01E05FE; Mon, 16 Jul 2012 15:30:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 52FEEE05FE for ; Mon, 16 Jul 2012 15:30:10 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D5EDE1B401D for ; Mon, 16 Jul 2012 15:30:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 976C6E5434 for ; Mon, 16 Jul 2012 15:30:03 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1342450471.e015ab3fad7daa40a1d463af7ef5e69d34583cca.WilliamH@gentoo> Subject: [gentoo-commits] proj/udev-gentoo-scripts:master commit in: init.d/, conf.d/ X-VCS-Repository: proj/udev-gentoo-scripts X-VCS-Files: conf.d/udev init.d/udev X-VCS-Directories: init.d/ conf.d/ X-VCS-Committer: WilliamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: e015ab3fad7daa40a1d463af7ef5e69d34583cca X-VCS-Branch: master Date: Mon, 16 Jul 2012 15:30:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: a64416f4-91da-4795-9cbe-d25bfa840dbf X-Archives-Hash: ff6817ba83319c077edb11ee78d33921 commit: e015ab3fad7daa40a1d463af7ef5e69d34583cca Author: William Hubbs gentoo org> AuthorDate: Mon Jul 16 14:54:31 2012 +0000 Commit: William Hubbs gentoo org> CommitDate: Mon Jul 16 14:54:31 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/udev-gentoo-s= cripts.git;a=3Dcommit;h=3De015ab3f udev: remove code that waits for uevents to process According to discussions I have seen on the #udev irc channel, this should no longer be necessary. --- conf.d/udev | 4 ---- init.d/udev | 9 --------- 2 files changed, 0 insertions(+), 13 deletions(-) diff --git a/conf.d/udev b/conf.d/udev index 667cc8b..1dfdc79 100644 --- a/conf.d/udev +++ b/conf.d/udev @@ -13,10 +13,6 @@ =20 # Expert options: =20 -# Timeout in seconds to wait for processing of uevents at boot. -# There should be no need to change this. -#udev_settle_timeout=3D"60" - # Add extra command line options to udevd, use with care # udevd --help for possible values #udev_opts=3D"" diff --git a/init.d/udev b/init.d/udev index 9e8ff76..20b52d9 100644 --- a/init.d/udev +++ b/init.d/udev @@ -138,15 +138,6 @@ populate_dev() udevadm trigger --type=3Ddevices --action=3Dadd eend $? =20 - # we can speed up booting under these conditions: - # * using devtmpfs so kernel creates device nodes for us - # * only using kernel created device nodes at boot - # (in /etc/fstab and elsewhere) - # - ebegin "Waiting for uevents to be processed" - udevadm settle --timeout=3D${udev_settle_timeout} - eend $? - udevadm control --property=3Ddo_not_run_plug_service=3D return 0 }