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 C1B00138334 for ; Mon, 15 Jul 2019 22:39:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FC69E0830; Mon, 15 Jul 2019 22:39:36 +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 663E3E0830 for ; Mon, 15 Jul 2019 22:39:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 516E3347C4E for ; Mon, 15 Jul 2019 22:39:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4061B6DB for ; Mon, 15 Jul 2019 22:39:32 +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: <1563219263.55a0c13d2bc83f1d23191c16a666f0feedf3f461.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/linuxrc X-VCS-Directories: defaults/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 55a0c13d2bc83f1d23191c16a666f0feedf3f461 X-VCS-Branch: master Date: Mon, 15 Jul 2019 22:39:32 +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: 5f2bf775-56bb-4c66-bafa-e82b7e3826c9 X-Archives-Hash: 6409e503250c74c8749dc744b450742f commit: 55a0c13d2bc83f1d23191c16a666f0feedf3f461 Author: Thomas Deutschmann gentoo org> AuthorDate: Mon Jul 15 19:34:23 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Mon Jul 15 19:34:23 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=55a0c13d linuxrc: Set got_good_root=1 when we got root via LABEL|UUID|PARTUUID Signed-off-by: Thomas Deutschmann gentoo.org> defaults/linuxrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/defaults/linuxrc b/defaults/linuxrc index 01f8328..83b7572 100644 --- a/defaults/linuxrc +++ b/defaults/linuxrc @@ -628,8 +628,10 @@ do if [ ${retval} -eq 0 ] && [ -n "${ROOT_DEV}" ] then + got_good_root=1 good_msg "Detected real_root=${ROOT_DEV}" REAL_ROOT="${ROOT_DEV}" + break else prompt_user "REAL_ROOT" "root block device" got_good_root=0