From patchwork Thu Mar 13 21:00:08 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 14015909 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 D6E4C1F0E40 for ; Thu, 13 Mar 2025 21:00:12 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741899612; cv=none; b=SUWp8hBuYrPAaVRTviJZtQZP+RhgkvA1jm2evWA/bw1iVUqVzFJdtAgEpZSJ8OtD1CCZESDAxJsnflUcNFHtP7j6Go8/xPlfIGPz499fqkdRTNdMmhTwQlZHNg5VT4cNxpe0uU1jBS0t3r3L9H6gPJ1YjZVUpuK+DY1WIq/0U2s= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741899612; c=relaxed/simple; bh=U+WrFIfBpY8Ff/LF1kAgSK/p2HExfOzsqoAxYEHsS6o=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=l497zi6z2Fc/KQceXuH74nLCucJtYm9c4szKVdH2NvwCEUXSTM9NRw6RRWQGNcUmtTmk7lX0FgvrJ3s3aO+UpGK+O7O3aepKbWcTtYZ80+mM233xhvkv7GsNF4LulHzlkO+SyAUgopLIaAckVoQ7rrb5yFi2Si0G1h4n78DZhq8= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=bne7a2Pf; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="bne7a2Pf" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F3028C4CEDD; Thu, 13 Mar 2025 21:00:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1741899612; bh=U+WrFIfBpY8Ff/LF1kAgSK/p2HExfOzsqoAxYEHsS6o=; h=From:To:Cc:Subject:Date:From; b=bne7a2PfcT2xxlBMcm43vAYzE7f06h9sI3plukcPnc3wQgGsa4KEVjBA0liAwMg9c QovhyUSNfuQlj5PYQc6t/XPgwIZptKo+S510YQezx0DOhE5M35UfC7MTJhlDvu08Ym ROpefdWTjDPN5kclvrHVz4M5cEzy+swgYvzou/JDAXZqoiSOg6fQ8AVaTZmU59uzrl kAm59Se4YXPYkAcaR2XYMUjTk5oq5gzS2vqovM6UElBAg6KAHu13shR8WS8yDR9f0F p4CquXx/r5OlaA8CJHtJNeB8ZtjX4NYyQMmY4o50f7VD5xx5sqwNhEyYei2pD7RWB5 iSxIR0poGHgqg== From: cel@kernel.org To: Daniel Gomez Cc: , Chuck Lever Subject: [PATCH v2 0/2] Add defaults refs for linux-stable-rc Date: Thu, 13 Mar 2025 17:00:08 -0400 Message-ID: <20250313210010.1633624-1-cel@kernel.org> X-Mailer: git-send-email 2.48.1 Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Chuck Lever This series goes with the addition of linux-stable-rc to the set of repos handled by the local /mirror. Changes since RFC: - Follow suggestions from Daniel Gomez - Squash in typo fixes Chuck Lever (2): linux-mirror: Enable choice of clone protocol for stable-rc tree Add the stable release candidate repo to the Linux git repos menu Makefile.linux-mirror | 1 + kconfigs/Kconfig.defaults | 12 ++++ kconfigs/Kconfig.mirror | 41 ++++++++++++++ kconfigs/workflows/Kconfig.bootlinux | 4 ++ scripts/gen-refs-default.Makefile | 4 +- scripts/gen-refs-user.Makefile | 20 ++++++- workflows/linux/Kconfig | 9 +++ workflows/linux/Kconfig.stable_rc | 31 ++++++++++ .../linux/refs/default/Kconfig.stable_rc | 56 +++++++++++++++++++ workflows/linux/refs/static/stable_rc.yaml | 30 ++++++++++ 10 files changed, 203 insertions(+), 5 deletions(-) create mode 100644 workflows/linux/Kconfig.stable_rc create mode 100644 workflows/linux/refs/default/Kconfig.stable_rc create mode 100644 workflows/linux/refs/static/stable_rc.yaml Reviewed-by: Luis Chamberlain Reviewed-by: Daniel Gomez