From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E69161862A for ; Mon, 28 Jul 2025 00:18:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753661885; cv=none; b=dli6UZTwWUFKRKALOMj0BesiBMU+LaP2vzVN7CTqa2zh6pHlSBevEkQBOjr67xHcP9rPEHcidQuMSNuMRFB+LD/mezO/LynrIyzDi8KYP+fKtMYgl3Oa3SYwHlPdJCm7VUnVUxnyJdG/DiXRRotB8JWNBLNyR9vH5nAQmQ7r32g= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1753661885; c=relaxed/simple; bh=cc+jobu2Q9EfZ5I6pqLF7fX6+3iVE4re9TvphY0d4DE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=dCnkU/u/9KndgXGAhYuL9MfG4piaBZzkEGFpojCUo9ukhZ477px6dtxlgxSAEmVJsHGkGvxZC4O6MbxAu9HAD18Jg7UwCmPVrXsKLXY3r2wBGrM3g+T0XmqA0n9ZMci8Er7XGyox0inDUNUIdcsqUG/c1tkwB0zJHaM1AnWhZMQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=kernel.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=c/tIVLKF; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=kernel.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="c/tIVLKF" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From: Reply-To:Content-Type:Content-ID:Content-Description; bh=V5V80Yy8xHS14FlbF967sTRktdIPFxznElj4gvVlgIA=; b=c/tIVLKFnFT5NkbkeryBp60wPd /DMdyEGERuNiN3+YYc+xSY/dkSq8DcyYXhjO4ADux5VDfjkez9yhlfLH06mO/OEkM/OEg6nA4m8Be CAJv40VF43fR2dM2ZyLdr/WnR20F8ltopnhfBQWq+aNiJapNb6/6yiYueWYKKkc5lzCuxGHZSPsdZ 59pMa3LBcsWZNTiB71nYX6E9Xx/mQoEoXQLnbB2zVmtstbck6Fy0FlWvWtU7IIepH7sw/WTfe/la8 8gppVf7q1894tvBYTU250vRRxheS60HHb/suEeBRzym457hpRQOyDPiOO0ANnC2mM2lOu/p6FcjGj p1CjULuA==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1ugBZ4-0000000DNWT-280Z; Mon, 28 Jul 2025 00:18:02 +0000 From: Luis Chamberlain To: Chuck Lever , Daniel Gomez , kdevops@lists.linux.dev Cc: Luis Chamberlain Subject: [PATCH 18/40] bootlinux: fix making 9p default if using libvirt Date: Sun, 27 Jul 2025 17:17:37 -0700 Message-ID: <20250728001800.3188617-19-mcgrof@kernel.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250728001800.3188617-1-mcgrof@kernel.org> References: <20250728001800.3188617-1-mcgrof@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Luis Chamberlain Commit a5092b07fe ("Kconfig: Convert the 9p option to a choice menu") enhanced the semantics to use a choice instead of just bools to determine how we are going to build the kernel. But it ended up making the target option to build the kernel and clone it the default even if you are using libvirt. Fix this so that we only select the target if we're not using libvirt. This upkeeps previous behaviour and expectations. Fixes: a5092b07fe ("Kconfig: Convert the 9p option to a choice menu") Signed-off-by: Luis Chamberlain --- workflows/linux/Kconfig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/workflows/linux/Kconfig b/workflows/linux/Kconfig index e198005c..27cba0a9 100644 --- a/workflows/linux/Kconfig +++ b/workflows/linux/Kconfig @@ -36,7 +36,8 @@ endif # HAVE_SUPPORTS_PURE_IOMAP choice prompt "Kernel build location" - default BOOTLINUX_TARGETS + default BOOTLINUX_TARGETS if !LIBVIRT || GUESTFS_LACKS_9P + default BOOTLINUX_9P if LIBVIRT && !GUESTFS_LACKS_9P help Choose where you want to compile the test kernel. The help for the choices below explain how each alternative works. -- 2.47.2