💾 Archived View for tilde.pink › ~pickles › 2_cgdroot_with_firmware.gmi captured on 2023-01-29 at 04:40:20. Gemini links have been rewritten to link to archived content
⬅️ Previous capture (2022-01-08)
-=-=-=-=-=-=-
I built my NetBSD system with root filesystem encryption according to the guide on unitedbsd.coms forum, which was really straight-forward and works wonderfully well.
When I tried to boot the system on my laptop, though, the wifi wouldn't work. dmesg said the driver cannot load the firmware which my wifi card needs to operate, as do many. The firmware files where all in-place, so it took me a minute to figure it out.
The encrypted system uses an init image for the early boot, during which the wifi init takes place. The root disk gets unlocked later on, so the firmware files are not accessible at that time, so no firmware load, no wifi. :(
Reading around for a while I found the documentation to build your own cgdroot image.
Not a lot of steps to do, see the link below for the full documentation:
For my Intel centrino I need iwlwifi-6000g2a-5.ucode in my boot image.
To get that, I added it to /usr/src/distrib/amd64/ramdisks/ramdisk-cgdroot/list
COPY /libdata/firmware/if_iwn/iwlwifi-6000g2a-5.ucode libdata/firmware/if_iwn/iwlwifi-6000g2a-5.ucode
and for that copy to work the directory needs to exist in the image. For that I add to /usr/src/distrib/common/mtree.cgdroot
./libdata ./libdata/firmware ./libdata/firmware/if_iwn
Find a good place for both additions, I added them after the most work was done in each file.
Compile, copy, reboot, and afterwards my wifi worked. :)
I'm pretty sure this is not portable to architectures other than amd64, so the edit in distrib/common might not be the best idea if you use your sourcetree for other boxes. This is not ment to be a patch for upstream ;)
The full disk encryption guide on UnitedBSD
cgdroot documentation on NetBSD wiki
you can reply to my post on the fediverse or shoot me a mail
https://bsd.network/@pickles/107451138962021341
$Id: 2_cgdroot_with_firmware.gmi,v 1.3 2021/12/21 14:37:53 pickles Exp $