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.60) (envelope-from <gentoo-commits+bounces-340808-garchives=archives.gentoo.org@lists.gentoo.org>) id 1QGMl7-00082J-GA for garchives@archives.gentoo.org; Sun, 01 May 2011 02:51:45 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 971891C077; Sun, 1 May 2011 02:49:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 647A81C081 for <gentoo-commits@lists.gentoo.org>; Sun, 1 May 2011 02:49:13 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1FA4F2AC022 for <gentoo-commits@lists.gentoo.org>; Sun, 1 May 2011 02:49:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 839AC80505 for <gentoo-commits@lists.gentoo.org>; Sun, 1 May 2011 02:49:12 +0000 (UTC) From: "William Hubbs" <williamh@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" <williamh@gentoo.org> Message-ID: <dfbe8f3755ef85683c4f3a0b13095bfc5efb67db.williamH@gentoo> Subject: [gentoo-commits] proj/livecd-tools:master commit in: init.d/ X-VCS-Repository: proj/livecd-tools X-VCS-Files: init.d/firmware X-VCS-Directories: init.d/ X-VCS-Committer: williamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: dfbe8f3755ef85683c4f3a0b13095bfc5efb67db Date: Sun, 1 May 2011 02:49:12 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: ed4b13137894ab356437ce341aedf023 commit: dfbe8f3755ef85683c4f3a0b13095bfc5efb67db Author: William Hubbs <williamh <AT> gentoo <DOT> org> AuthorDate: Wed Feb 16 18:47:25 2011 +0000 Commit: William Hubbs <williamh <AT> gentoo <DOT> org> CommitDate: Sun May 1 02:46:14 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/livecd-tools.= git;a=3Dcommit;h=3Ddfbe8f37 fix udevtrigger call The udevtrigger program has been replaced with udevadm. --- init.d/firmware | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/init.d/firmware b/init.d/firmware index d65d601..35919c2 100755 --- a/init.d/firmware +++ b/init.d/firmware @@ -18,5 +18,5 @@ einfo checking for firmware to unpack tar xjf /lib/firmware.tar.bz2 -C /lib/firmware eend 0 fi - [ -x /sbin/udevtrigger ] && /sbin/udevtrigger + [ -x /sbin/udevadm ] && /sbin/udevadm trigger }