[temp] comment out unused boot fn
This commit is contained in:
parent
f25ace0a80
commit
ffde65fb81
|
@ -241,14 +241,14 @@ enum KernelInitError {
|
||||||
CapabilityCreationFailed,
|
CapabilityCreationFailed,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[link_section = ".text.boot"]
|
// #[link_section = ".text.boot"]
|
||||||
fn try_init_kernel() -> Result<(), KernelInitError> {
|
// fn try_init_kernel() -> Result<(), KernelInitError> {
|
||||||
let root_capnode_cap = create_root_capnode();
|
// let root_capnode_cap = create_root_capnode();
|
||||||
if root_capnode_cap.is_err() {
|
// if root_capnode_cap.is_err() {
|
||||||
return Err(KernelInitError::CapabilityCreationFailed);
|
// return Err(KernelInitError::CapabilityCreationFailed);
|
||||||
}
|
// }
|
||||||
Ok(())
|
// Ok(())
|
||||||
}
|
// }
|
||||||
|
|
||||||
const CONFIG_ROOT_CAPNODE_SIZE_BITS: usize = 12;
|
const CONFIG_ROOT_CAPNODE_SIZE_BITS: usize = 12;
|
||||||
const WORD_BITS: usize = 64;
|
const WORD_BITS: usize = 64;
|
||||||
|
|
Loading…
Reference in New Issue