starry-kernel 0.7.1

A Linux-compatible OS kernel built on ArceOS unikernel
1
2
3
4
5
6
7
8
9
#[cfg(feature = "rk3588-pwm")]
mod rk3588;
#[cfg(all(feature = "sg2002", not(feature = "rk3588-pwm")))]
mod sg2002;

#[cfg(feature = "rk3588-pwm")]
pub(super) use rk3588::*;
#[cfg(all(feature = "sg2002", not(feature = "rk3588-pwm")))]
pub(super) use sg2002::*;