From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 415602E736F for ; Tue, 16 Jun 2026 01:04:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781571855; cv=none; b=Ay8mkajMXJLT7gCzErJQIuq4s2kXh9+oCM0WWAEwmLvA/+0GUHAjTj4q6Zl939MlM0GZ1yMdXASsAV4gHgm4+QjA8sxlAs+m2nBIu6Z9hbxnombxQCQ7PUBtHH60qQTfBAqIDDLSF0Kj+VJvtjZNpvJnLv1zeNquo3PCzMvtjyw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1781571855; c=relaxed/simple; bh=RGZW/C+26vqqn3ruZWP/r3Hs4olvCP2a9oJyKIGASlc=; h=Date:From:To:Cc:Subject:Message-Id:Mime-Version:Content-Type; b=VWDZMCBTIdTqFE6TJ1LUr/leQ9LTSOlgrgUDOsgoJvU4IQ/rgT+s5xQgkXNuJ+xmAALylUMo8vYbPUoha3KBewnXpVulaRppcHok9ty5j2rrpceHuIEmSKtNrSYC5fNE6FxTKAMnllA1PSJd4YRATLjofeVaUghihyb0Zn8pnAc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=KPReiF7L; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="KPReiF7L" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CB7D61F000E9; Tue, 16 Jun 2026 01:04:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1781571853; bh=j6gFfGqMq608Gwd4xPNNC6f4fc/DMTPwwKD0C/ugOUE=; h=Date:From:To:Cc:Subject; b=KPReiF7LvchtLueupm9GAZolCKNLpahjbehu2l/Y10Y5cpLWIPjUSHG0Tx0eX/263 SFNwi8IlOs498DKx7UKRgoTEYRYLhyE+BLhO2q51g+zHCyZSwx0tRMGjOh85hGI/RS q7O1GqKtRy6GKRqLh7NwOMqGbHiEibod6l3n9BKYn+1YPN3S7lALTSz1mTfsxPrRLL 5I+loTwwro7zDthFgiJnmZubtAIhAqtHcoaaIHuoQCImX3tUFpAA1YCM+Da5YUpaOA NnlCmNsxgfoAkkS6/tiXzppq4mURnekwRAQvHKJsCBSXUZAGd8yXwvo7BHMbR9voUC 0TB0YrvYNRBTA== Date: Tue, 16 Jun 2026 10:04:10 +0900 From: Masami Hiramatsu (Google) To: Linus Torvalds Cc: Breno Leitao , Steven Rostedt , Masami Hiramatsu , linux-kernel@vger.kernel.org Subject: [GIT PULL] bootconfig: Updates for v7.2 Message-Id: <20260616100410.15eeb0784bd6213c1c5f09bf@kernel.org> X-Mailer: Sylpheed 3.8.0beta1 (GTK+ 2.24.33; x86_64-pc-linux-gnu) Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hi Linus, Bootconfig updates for v7.2 - bootconfig: Render kernel subtree as cmdline string at build time . bootconfig: move xbc_snprint_cmdline() to lib/bootconfig.c. Move the xbc_snprint_cmdline() function and its buffer from main.c to the shared lib/bootconfig.c parser library so it can be reused by userspace tools. . tools/bootconfig: render kernel.* subtree as cmdline string with -C. Add a new -C option to print the kernel.* subtree as a flat command-line string at build time, allowing early parameter injection without runtime parsing. Please pull the latest bootconfig-v7.2 tree, which can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git bootconfig-v7.2 Tag SHA1: 4819844d8718664356a18a5c07efdce598dfbdf9 Head SHA1: 4135542de6c42bc366a651d0b2d82ea72ac199fc Breno Leitao (2): bootconfig: move xbc_snprint_cmdline() to lib/bootconfig.c tools/bootconfig: render kernel.* subtree as cmdline string with -C ---- include/linux/bootconfig.h | 3 +++ init/main.c | 45 ---------------------------------- lib/bootconfig.c | 56 +++++++++++++++++++++++++++++++++++++++++++ tools/bootconfig/main.c | 60 +++++++++++++++++++++++++++++++++++++++------- 4 files changed, 111 insertions(+), 53 deletions(-) -- Masami Hiramatsu (Google)