Home
last modified time | relevance | path

Searched refs:module (Results 1 – 8 of 8) sorted by relevance

/DragonOS/docs/kernel/configuration/
H A Dconfig.md12 [[module.include]]
18 [[module.include]]
26 - **[[module.include]]:** 将模块加入到include列表中
38 [module]
42 [[module.include]]
48 [[module.features]]
55 - **\[module\]:** 当前模块
58 - **[[module.include]]:** 当前模块下所包含的模块,与kernel.config下的相同
59 - **[[module.features]]:** 当前模块下的feature
72 [module]
[all …]
/DragonOS/build-scripts/kernel_build/src/kconfig/
H A Dmod.rs61 fn dfs(module: &Module, r: &mut Vec<PathBuf>) { in dfs()
62 println!("{}", module.name()); in dfs()
64 let path_str = module.path().as_path().to_str().unwrap().to_string(); in dfs()
136 for module in include.as_array().unwrap().iter() { in include()
137 let name = module.get("name").unwrap().as_str().unwrap().to_string(); in include()
138 let path = PathBuf::from(module.get("path").unwrap().as_str().unwrap()); in include()
139 let enable = module.get("enable").unwrap().as_str().unwrap() == "y"; in include()
/DragonOS/kernel/crates/rbpf/
H A DCargo.toml43 cranelift-module = { version = "0.99", optional = true }
60 "dep:cranelift-module",
H A DREADME.md573 Note that when using this crate in `no_std` environments, the `jit` module
578 The `assembler` module is available, albeit with reduced debugging features. It
/DragonOS/kernel/crates/rbpf/src/
H A Dcranelift.rs37 module: JITModule, field
85 let mut module = JITModule::new(jit_builder); in new() localVariable
95 module, in new()
130 .module in compile_function()
134 let mut ctx = self.module.make_context(); in compile_function()
153 self.module.define_function(func_id, &mut ctx).unwrap(); in compile_function()
154 self.module.finalize_definitions().unwrap(); in compile_function()
155 self.module.clear_context(&mut ctx); in compile_function()
157 Ok(CraneliftProgram::new(self.module, func_id)) in compile_function()
193 .module in build_function_prelude()
[all …]
/DragonOS/kernel/src/arch/x86_64/init/
H A Dmultiboot2.rs194 for module in mb2_module_tag { in early_init_memory_blocks()
195 let start = PhysAddr::new(module.start_address() as usize); in early_init_memory_blocks()
196 let size = module.module_size() as usize; in early_init_memory_blocks()
/DragonOS/docs/community/ChangeLog/V0.1.x/
H A DV0.1.3.md442 refactor rtc module in rust (#118)
446 * refactor the rtc module by rust
H A DV0.1.9.md2218 * Modify the ahci module and delete the useless c code