After installing Fedora 33 Minimal on my Pi4, I tried some tweaks where most of which worked
# /boot/config.txt
# Disable the PWR LED
dtparam=pwr_led_trigger=none
dtparam=pwr_led_activelow=off
# Disable the Activity LED
dtparam=act_led_trigger=none
dtparam=act_led_activelow=off
# /boot/efi/config.txt
# Enable boot without HDMI connected
hdmi_force_hotplug=1
But the command bellow doesn’t work
# /boot/config.txt
# Disable Ethernet LEDs. Pi4: 4, Pi3: 14
dtparam=eth_led0=4
dtparam=eth_led1=4
The output of the command sudo lshw -class network
shows driverversion=5.9.13-200.fc33.aarch64
. I installed Centos 8 Stream on my Pi and it runs version “2 something” of the same driver, and that version support all the dtparam
above.
*-network
description: Ethernet interface
physical id: 3
logical name: eth0
serial: dc:a6:32:d5:e5:d6
size: 1Gbit/s
capacity: 1Gbit/s
capabilities: ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=bcmgenet driverversion=5.9.13-200.fc33.aarch64 duplex=full ip=192.168.1.20 link=yes multicast=yes port=MII speed=1Gbit/s
Why do you guys think that a newer version wouldn’t support that? I know that things change, but that’s a cosmetic thing that wouldn’t affect the operation of the hardware.
Where (which github repo) can I suggest a patch for the driver?
ps: I know Pi4 isn’t officially supported by Fedora 33 yet.