From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C5D64C19F2D for ; Tue, 2 Aug 2022 01:55:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235801AbiHBBzd (ORCPT ); Mon, 1 Aug 2022 21:55:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38628 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235740AbiHBByy (ORCPT ); Mon, 1 Aug 2022 21:54:54 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4756C491C5; Mon, 1 Aug 2022 18:53:28 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id B362AB81910; Tue, 2 Aug 2022 01:53:26 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3072AC433C1; Tue, 2 Aug 2022 01:53:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1659405205; bh=PsjJEscwfqiEIk6jnESsddoju9xgCRns2EXUi58QroI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=CuZWVJhICWqRc9EDLzclZryn6L/AoqP8sC8+o/riXbBmNujCAKm8wb1YIRxojmXH2 7U94MjeHsW2ujQyzyJQGn+Ws+8qkw0Up8iAGw7OSMIVDmbbIYpRuMV1HdatOXWPEe1 ki3Yzb76aBRIk2/oK0aVPbcpJMIpCUQBqTtWf3z6L3zgl4rTiChYFPwBl42WuN2VI6 V1yKS64H5gsaauWDTVIC6o3IzZLm64089oz+/n9jt7eK+4K+hS+UkiP+V4XBe99aoE ZinuOFDk7TL1lfrXtUr1OYK/ELeQBV3WET+0m+D+SSAR+HQEtPjLvVqdQIeU76BccT db/wmZ/mZQ4Hg== From: Miguel Ojeda To: Linus Torvalds , Greg Kroah-Hartman Cc: rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org, Jarkko Sakkinen , Miguel Ojeda , Wedson Almeida Filho , Alex Gaynor Subject: [PATCH v8 25/31] configs: add `rust` config Date: Tue, 2 Aug 2022 03:50:12 +0200 Message-Id: <20220802015052.10452-26-ojeda@kernel.org> In-Reply-To: <20220802015052.10452-1-ojeda@kernel.org> References: <20220802015052.10452-1-ojeda@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: rust-for-linux@vger.kernel.org From: Wedson Almeida Filho This allows us to enable Rust while creating a configuration file, for example, we can run `make defconfig rust.config` from the command line to create the default configuration plus enable Rust. Co-developed-by: Alex Gaynor Signed-off-by: Alex Gaynor Signed-off-by: Wedson Almeida Filho Co-developed-by: Miguel Ojeda Signed-off-by: Miguel Ojeda --- kernel/configs/rust.config | 1 + 1 file changed, 1 insertion(+) create mode 100644 kernel/configs/rust.config diff --git a/kernel/configs/rust.config b/kernel/configs/rust.config new file mode 100644 index 000000000000..38a7c5362c9c --- /dev/null +++ b/kernel/configs/rust.config @@ -0,0 +1 @@ +CONFIG_RUST=y -- 2.37.1