From patchwork Fri Oct 11 01:01:11 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luis Chamberlain X-Patchwork-Id: 13831711 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 C88605228 for ; Fri, 11 Oct 2024 01:01:12 +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=1728608474; cv=none; b=MMjDqdTOD7swXu7V/R4orUJRudSZ6Qnv4oAoVddkajV+4MT/rQ6QYwyIMa75Enwg2c8xMQDTX48oHUXfkJrjewzI9d9hJKROxhUE9c6YBoaZMAG7lQMxTwK2eykavIopEAkHy4HrKzrHmmm7sLx6g7SABAaRibL6u93p5gyfirA= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728608474; c=relaxed/simple; bh=QaXbU8hqtY//ZpNEzzwvI6Ds3a3vxeuGcOwuLeySsYs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=TlP87ptEyaRP40SKzbmdXFAomYfZ3dnN4myXMGRJMnbh/718dtPpXltAJLs6CMHAVT76HyNTGCG1fiLxa1PhYZupUFOex5WCykM+Um3Aeu5bMC9h0RM179GbaVlURKD/wgb2PQIlXVQ02/CezIK2SYsvqyEEDVKImqUqZTMV9X4= 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=mVAbqkMH; 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="mVAbqkMH" 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=NJdSmSAbhFCgV3ZvTcLXDgptWF0sayd8MkaLTKrHRDE=; b=mVAbqkMH4CpNTC8yna2JmgBXyr sQq093lPDOcKaWAIWZe16D1gHbz4qGPvtNlE0NH9w6G/cFqVCl+u4wiJewUyXD0AIAkjF4jsmw5GR s08ADwpXhJnkdc4E5zUUpOUWX3g/28tbUD15kNQh8yOWanR75gUgZ4z7Xt3Ih0uYWXt1OzbctO2+5 bEuwulwui4bRenA64yaYtXF2bsdMagDjCOgXB+5JCFwUsk/4V3bQuHueEYHHtrJx9v6OiL/NvtyIU okQb/g96jBNqYIngYASJQ9/suWsGKrAvxA4BVURDDS4/aEXYSmxxkTl02dogukdn7ik+bYAiYGfH0 k0ShVgCA==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.98 #2 (Red Hat Linux)) id 1sz41o-0000000ErxQ-2B3I; Fri, 11 Oct 2024 01:01:12 +0000 From: Luis Chamberlain To: kdevops@lists.linux.dev, ross@kallisti.us Cc: mcgrof@kernel.org Subject: [PATCH kdevops 4/4] guestfs: make debian trixie default Date: Thu, 10 Oct 2024 18:01:11 -0700 Message-ID: <20241011010111.3543993-5-mcgrof@kernel.org> X-Mailer: git-send-email 2.46.0 In-Reply-To: <20241011010111.3543993-1-mcgrof@kernel.org> References: <20241011010111.3543993-1-mcgrof@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Sender: Luis Chamberlain kdevops relies on rolling distributions. We've been stuck with debian12 because that's what the virt-builder servers have and it's a bit old for our taste in kernel hacking the latest and greatest kernels. Since we are now boosting efforts on CI kernel hacking testing, we want to make bringup as fast as possible, and since the first thing we typically want is the *latest and greatest* we tend to sometimes upgrade a system on bringup. Even if we skip that, buster 12 default is still a bit... old... and so to help speed up bringup in both cases where we just want the latest debian testing *or* an updated system, make debian 13 trixie the default image now that we've fixed it. Tested with: make linux make fstests And we've been running tests on guests where the host is trixie and the guest is debian 12 (buster) but then due to the host having a local apt mirror, we rely on CONFIG_GUESTFS_COPY_SOURCES_FROM_HOST_TO_GUEST to do immediately do upgrades from debian 12 --> debian 13. And debian 13 has been tested for many of our workflows including the latest sysbench workflow. So all in all, debian trixie has been being tested for a while, it was just this painful upgrade process we've had to deal with for a long time. Signed-off-by: Luis Chamberlain --- kconfigs/Kconfig.guestfs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kconfigs/Kconfig.guestfs b/kconfigs/Kconfig.guestfs index da2f5e3961d7..a804c8fce2fd 100644 --- a/kconfigs/Kconfig.guestfs +++ b/kconfigs/Kconfig.guestfs @@ -83,7 +83,7 @@ if GUESTFS_DEBIAN choice prompt "Debian version" - default GUESTFS_DEBIAN_BUSTER + default GUESTFS_DEBIAN_TRIXIE config GUESTFS_DEBIAN_TRIXIE bool "Debian 13 - Trixie"