From patchwork Fri Mar 28 20:56:15 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Gomez X-Patchwork-Id: 14032436 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 BCEAA3C0C for ; Fri, 28 Mar 2025 20:56:33 +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=1743195393; cv=none; b=Zm2XhXxwcSUHiouFPeRmX+0krmQMKTOx7QYKfBDm++MhWVBRJkGEwj2GQuFSvr4Y2uVlQ+zao7hz9/d+j/ecyBmsORPsiBjx/NwE29Ac93JGUjOEqHQhUolypQWfu1dNPRWEtfxw4YLQd+ZaVJhS10hNya0eJnljM0lRMWhy5+c= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1743195393; c=relaxed/simple; bh=/yRuVlMJJvZTjFdJdUrgNhLMFHHQ3djFIcR5s8Wdmyk=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=LGPow9hj/B89GOyS6TtlBYNum6ufc4bzmJ7WMT/G4rRWb9uct18LIhgYsDJc31itJp3QyZpZVIFGhXr/f4DfgQFF3LIss/qnKgIXIgNPgK5Ac3HYy4+n8LwdmTOlwfdSjIEk68DTImvgUgtWcyBPSY+KubSU8ZKTWBSTpIbiuNA= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=gQAbQTdE; 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="gQAbQTdE" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6BE73C4CEE9; Fri, 28 Mar 2025 20:56:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1743195393; bh=/yRuVlMJJvZTjFdJdUrgNhLMFHHQ3djFIcR5s8Wdmyk=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=gQAbQTdE0pplqAX7Jn01tRNgLIiHSlCs2/gkGPGs+2875olQ1YGSXM3jZsdeb5tZm Gf58rd1iwrUEJDcjdUWRVY9NaID0TvbLkqqsjag/pQZnB50CTgggphLoT/hLEofwb6 Q4Q0ci2zjh90kCGR26G6tPpqk8wAnqrF9Cd8wWeghw1ISnbbIHOsVzQgmgHniGACrS 19n7J43tg8LgJjjK9hrHKw756scu5hKvt10wNcffCeyAcy5GrBiR3y7OKLkYcb4O4b FJ/kweQHmqbLh8toUhsu+lY9s8CsdhimjmQScaqBFiAYlTJUisL4qO7g5VH6VzJIRk lYkT6TI8+Rr/g== From: Daniel Gomez Date: Fri, 28 Mar 2025 20:56:15 +0000 Subject: [PATCH RFC 2/6] scripts/kconfig/kconfig.Makefile: extend simple-targets Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Message-Id: <20250328-kconfig-env-with-ansible-v1-2-3231c0272457@samsung.com> References: <20250328-kconfig-env-with-ansible-v1-0-3231c0272457@samsung.com> In-Reply-To: <20250328-kconfig-env-with-ansible-v1-0-3231c0272457@samsung.com> To: Luis Chamberlain Cc: kdevops@lists.linux.dev, Daniel Gomez , Daniel Gomez X-Mailer: b4 0.14.2 From: Daniel Gomez Add oldconfig and olddefconfig targets. Signed-off-by: Daniel Gomez --- scripts/kconfig/Makefile | 3 +++ scripts/kconfig/kconfig.Makefile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index e3694365bf98281a00fb56d76d3400d236776476..7cef3498e4c9e751c05190fb3da7507587d9ad84 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile @@ -69,6 +69,9 @@ help: @echo "allyesconfig - enables all bells and whistles" @echo "allnoconfig - disables all bells and whistles" @echo "randconfig - random configuration" + @echo "oldconfig - update a configuration using provided .config as base" + @echo "olddefconfig - Same as oldconfig but sets new symbosl to their default" + @echo "defconfig-* - If you have files in the defconfig directory use default config from there" .PHONY: clean diff --git a/scripts/kconfig/kconfig.Makefile b/scripts/kconfig/kconfig.Makefile index e227ea4233a7e790e90f38c1817c745a0c805132..cc24c7ff3e1c23487aec767075c69fdf3876b39d 100644 --- a/scripts/kconfig/kconfig.Makefile +++ b/scripts/kconfig/kconfig.Makefile @@ -51,7 +51,7 @@ $(KCONFIG_DIR)/conf: # More are supported, however we only list the ones tested on this top # level Makefile. -simple-targets := allnoconfig allyesconfig alldefconfig randconfig +simple-targets := allnoconfig allyesconfig alldefconfig randconfig oldconfig olddefconfig PHONY += $(simple-targets) $(simple-targets): $(KCONFIG_DIR)/conf Kconfig