From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 22FCB138359 for ; Fri, 28 Aug 2020 20:18:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F2FEAE0A99; Fri, 28 Aug 2020 20:18:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DBB4DE0A99 for ; Fri, 28 Aug 2020 20:18:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 92AD6340ADB for ; Fri, 28 Aug 2020 20:18:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AD56533F for ; Fri, 28 Aug 2020 20:18:46 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1598632559.a2b6a16119837df4a803effaefe8ef0be08fe396.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/initrd.defaults defaults/linuxrc X-VCS-Directories: defaults/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: a2b6a16119837df4a803effaefe8ef0be08fe396 X-VCS-Branch: master Date: Fri, 28 Aug 2020 20:18:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 935d81d3-80be-4136-bcc8-cec5eb03891c X-Archives-Hash: 4e55f6916013f4cb5cf705407cd08aa1 commit: a2b6a16119837df4a803effaefe8ef0be08fe396 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri Aug 28 13:22:30 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Fri Aug 28 16:35:59 2020 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=a2b6a161 defaults/linuxrc: Log udevd debug output into /run/initramfs/udevd.log Signed-off-by: Thomas Deutschmann gentoo.org> defaults/initrd.defaults | 1 + defaults/linuxrc | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/defaults/initrd.defaults b/defaults/initrd.defaults index e310f19..fa71ecb 100644 --- a/defaults/initrd.defaults +++ b/defaults/initrd.defaults @@ -95,6 +95,7 @@ GK_SSHD_LOCKFILE='/tmp/remote-rescueshell.lock' GK_SSHD_PIDFILE='/var/run/dropbear.pid' GK_SSHD_PORT=22 GK_SSHD_WAIT= +GK_UDEV_LOG='/run/initramfs/udevd.log' GK_UDEV_TIMEOUT=120 GK_USERINTERACTION_DISABLED_STATEFILE='/tmp/user-interaction.disabled' diff --git a/defaults/linuxrc b/defaults/linuxrc index a4ed811..1a4ddac 100644 --- a/defaults/linuxrc +++ b/defaults/linuxrc @@ -568,7 +568,7 @@ good_msg 'Activating udev ...' udevd_cmd="run udevd --resolve-names=never" if is_debug then - udevd_cmd="${udevd_cmd} --debug > /tmp/udev.debug 2>&1 &" + udevd_cmd="${udevd_cmd} --debug > ${GK_UDEV_LOG} 2>&1 &" else udevd_cmd="${udevd_cmd} --daemon" fi