this post was submitted on 28 Sep 2023
4 points (75.0% liked)
Operating System Development
308 readers
1 users here now
A place to discuss the world of operating system development. Open for all architectures.
Rules
- Keep all posts related to operating systems development.
- Keep conversations in english.
- Don't be a jerk. While we don't want to spoonfeed it's still important to stay nice.
Resources
- osdev wiki
- Operating System Development Discord
- Unrelated to this community.
Icon base by Lorc under CC BY 3.0 with modifications to add a gradient
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Well here's the AP scan code for the Intel WiFi driver: https://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-fixes.git/tree/net/wireless/scan.c
Go though the occurrences of
SSID
and decide whether you need to add some code to check it before continuing for each one.Then you can either compile a whole new kernel, or setup dkms to dynamically load the module in.
Thanks