Where would I look for a list of what network chips are supported in any given kernel? I’m looking to build my first computer designed from the ground up for Linux and want to be sure that the Ethernet port and WiFi chip will work without needing to do anything special.

  • Rustmilian@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    2 months ago

    The kernel driver for the RTL8852CE wireless card is driver rtw8852ce. This means that the driver is mainline, so it should work out of the box. Going to the git log for this particular driver, we can see it’s initial work was as added back in 2022-03-10, therefore it’s safe to assume that any Kernel released after that point will work. However, seeing that the latest fix was made in 2024-02-01, I highly recommend using any kernel after that date for the best experience. That said, go to releases and take a look at the chart; according to the chart and the previous information, you should be good with any Linux Kernel 6.1+. Heading back to the main page, the drivers you should be looking at are LTS (longterm) 6.1.87 and above, while I recommend stable 6.8.7+ for the lastest patches made to this driver.

    I recommend using hw-probe and running :

    sudo -E hw-probe -all -upload -max -check-extended -dump-acpi -decode-acpi 
    

    For a full and complete probe of the system.