ax-runtime 0.8.0

Runtime library of ArceOS
1
2
3
4
5
6
7
8
9
10
11
cfg_if::cfg_if! {
    if #[cfg(feature = "fs")] {
        mod block;

        pub(crate) fn init(bootargs: Option<&str>) {
            block::init(bootargs);
        }
    } else {
        pub(crate) fn init(_bootargs: Option<&str>) {}
    }
}