From mboxrd@z Thu Jan 1 00:00:00 1970 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 48426305066; Mon, 10 Nov 2025 09:51:52 +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=1762768312; cv=none; b=VSehuc2E1nJup8UrP4Sqbc6qwt5d4vNwQys98RwQBcDf2INJkgS1ZlixPJNB+x7lgry829LoMP4dG3a+9S16DibQHPB5Hoauc85hpMfBbFCIaF3mwL+r6DK8Ur47w+UAqgbdv7pSjneV0bSVdioLSLhLSCT6i/9V8saKwLgyxRA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762768312; c=relaxed/simple; bh=LLfvj6izedow/s0Vpg/NtksqMr3Iwp70wHryYY4a3fI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=XxhlvNB+s/ZwdF2Gn+s5n/uruhGMFm+GI3FusJWg2Mr8WaZviedPi5zLjbe9kaZZmpjUfIOdOSquWUSw+kh5ikElt+Bq6sQFCqH2i1oHMKyVwB57SMTIu9xdWJYPQuUKwezryT5gGavHV+cnU/NkavT9y7anWonyYX+pNoZiL6k= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=MaRbf9TH; 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="MaRbf9TH" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 322DCC19423; Mon, 10 Nov 2025 09:51:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1762768312; bh=LLfvj6izedow/s0Vpg/NtksqMr3Iwp70wHryYY4a3fI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=MaRbf9TH6j2t2zMJRTF/HbOqL+lOmkPTVIin7Ly9atiivN6MLwoH8Xe/oH+iR2ory Mu0FMBqqJrLZJLJJUVGCmgkUFcAP6CN/wXXQVYm91XsmylUIIdnRFfy2gJ1dh1mfeV qqJSeDuK1P8RouuvkwDGADKzyp4+EcOuNvaePjSynLzHHskbs9pwYm2nSpTymY9zwv mvVRp+2FZwhhFdt/ea7loguV/VJ/R9cEWDYeKcqAZkLR4hcLdcgEUpG4sr4rXpJZVr TSdZ1MI9an230G4Qo3BFLChgobBw6lrkfpi9mDetjEpe3q6uHINgTyWRL1qCTUa93b +r46ppbCxL7rg== From: Miguel Ojeda To: Miguel Ojeda , Alex Gaynor , Nathan Chancellor , Nicolas Schier Cc: Boqun Feng , Gary Guo , =?UTF-8?q?Bj=C3=B6rn=20Roy=20Baron?= , Benno Lossin , Andreas Hindborg , Alice Ryhl , Trevor Gross , Danilo Krummrich , rust-for-linux@vger.kernel.org, linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org, patches@lists.linux.dev Subject: [PATCH 12/18] rust: quote: add `README.md` Date: Mon, 10 Nov 2025 10:50:17 +0100 Message-ID: <20251110095025.1475896-13-ojeda@kernel.org> In-Reply-To: <20251110095025.1475896-1-ojeda@kernel.org> References: <20251110095025.1475896-1-ojeda@kernel.org> Precedence: bulk X-Mailing-List: rust-for-linux@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Originally, when the Rust upstream `alloc` standard library crate was vendored in commit 057b8d257107 ("rust: adapt `alloc` crate to the kernel"), a `README.md` file was added to explain the provenance and licensing of the source files. Thus do the same for the `quote` crate. Signed-off-by: Miguel Ojeda --- rust/quote/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 rust/quote/README.md diff --git a/rust/quote/README.md b/rust/quote/README.md new file mode 100644 index 000000000000..186123eff1cb --- /dev/null +++ b/rust/quote/README.md @@ -0,0 +1,12 @@ +# `quote` + +These source files come from the Rust `quote` crate, version 1.0.40 +(released 2025-03-12), hosted in the +repository, licensed under "Apache-2.0 OR MIT" and only modified to add +the SPDX license identifiers. + +For copyright details, please see: + + https://github.com/dtolnay/quote/blob/1.0.40/README.md#license + https://github.com/dtolnay/quote/blob/1.0.40/LICENSE-APACHE + https://github.com/dtolnay/quote/blob/1.0.40/LICENSE-MIT -- 2.51.2