Add Wi-Fi driver and control tools

Red Bear OS Team
This commit is contained in:
2026-04-16 12:45:07 +01:00
parent e565b6bceb
commit 54e63420ec
21 changed files with 5389 additions and 0 deletions
@@ -0,0 +1,11 @@
use std::path::PathBuf;
fn main() {
let linux_kpi_headers = PathBuf::from("../../linux-kpi/source/src/c_headers");
cc::Build::new()
.file("src/linux_port.c")
.include(linux_kpi_headers)
.warnings(true)
.compile("redbear_iwlwifi_linux_port");
}