strat9_kernel/hardware/
mod.rs1pub mod ec;
7pub mod nic;
8pub mod pci_client;
9pub mod storage;
10pub mod thermal;
11pub mod timer;
12pub mod usb;
13pub mod video;
14pub mod virtio;
15
16pub fn init() {
18 ec::init();
19 crate::arch::x86_64::speaker::beep_phase(7); thermal::init();
21 crate::arch::x86_64::speaker::beep_phase(8); nic::init();
23 crate::arch::x86_64::speaker::beep_phase(9); storage::init();
25 crate::arch::x86_64::speaker::beep_phase(10); timer::init();
27 crate::arch::x86_64::speaker::beep_phase(11); usb::init();
29 crate::arch::x86_64::speaker::beep_phase(12); virtio::gpu::init();
31 crate::arch::x86_64::speaker::beep_phase(13); video::framebuffer::init();
33 crate::arch::x86_64::speaker::beep_phase(14); }