mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	The beginning of a set of Rust modules that showcase how Rust modules look like and how to use the abstracted kernel features. It also includes an example of a Rust host program with several modules. These samples also double as tests in the CI. Reviewed-by: Kees Cook <keescook@chromium.org> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Co-developed-by: Alex Gaynor <alex.gaynor@gmail.com> Signed-off-by: Alex Gaynor <alex.gaynor@gmail.com> Co-developed-by: Finn Behrens <me@kloenk.de> Signed-off-by: Finn Behrens <me@kloenk.de> Co-developed-by: Wedson Almeida Filho <wedsonaf@google.com> Signed-off-by: Wedson Almeida Filho <wedsonaf@google.com> Co-developed-by: Milan Landaverde <milan@mdaverde.com> Signed-off-by: Milan Landaverde <milan@mdaverde.com> Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			566 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			566 B
		
	
	
	
		
			Text
		
	
	
	
	
	
# SPDX-License-Identifier: GPL-2.0
 | 
						|
 | 
						|
menuconfig SAMPLES_RUST
 | 
						|
	bool "Rust samples"
 | 
						|
	depends on RUST
 | 
						|
	help
 | 
						|
	  You can build sample Rust kernel code here.
 | 
						|
 | 
						|
	  If unsure, say N.
 | 
						|
 | 
						|
if SAMPLES_RUST
 | 
						|
 | 
						|
config SAMPLE_RUST_MINIMAL
 | 
						|
	tristate "Minimal"
 | 
						|
	help
 | 
						|
	  This option builds the Rust minimal module sample.
 | 
						|
 | 
						|
	  To compile this as a module, choose M here:
 | 
						|
	  the module will be called rust_minimal.
 | 
						|
 | 
						|
	  If unsure, say N.
 | 
						|
 | 
						|
config SAMPLE_RUST_HOSTPROGS
 | 
						|
	bool "Host programs"
 | 
						|
	help
 | 
						|
	  This option builds the Rust host program samples.
 | 
						|
 | 
						|
	  If unsure, say N.
 | 
						|
 | 
						|
endif # SAMPLES_RUST
 |