dwrobel/kernel-rpi

@dwrobel could you build packages for EPEL9_4?

I forget to reply: thanks a lot!

As for RPi5: I gave that a go yesterday and needed to make one small adjustment. In config.txt on the boot partition I needed to comment out / remove [rp4] so that the following lines take effect (which are required to get a working display/gpu).

With that done it seems to work perfectly for me.

@treba Thank you for the feedback.

I needed to comment out / remove [rp4]

Could you please confirm if the following would also works for you (I would prefer not to break rpi3):

--- config.txt.orig     2024-10-25 17:21:18.000000000 +0200
+++ config.txt  2024-11-18 11:35:03.554249245 +0100
@@ -29,6 +29,8 @@
 # Gadget mode
 # dtoverlay=dwc2

+# Model filters: https://www.raspberrypi.com/documentation/computers/config_txt.html#model-filters
+# Note: Pi 400 and Compute Module 4* also sees [pi4] contents
 [pi4]
 # Automatically load overlays for detected cameras
 camera_auto_detect=1
@@ -45,3 +47,18 @@

 disable_overscan=1

+[pi5]
+# Automatically load overlays for detected cameras
+camera_auto_detect=1
+
+# Automatically load overlays for detected DSI displays
+display_auto_detect=1
+
+# Enable DRM VC4 V3D driver
+dtoverlay=vc4-kms-v3d
+
+# Allows the default turbo-mode clock to be increased from 1.5GHz to 1.8GHz
+# Based on https://www.raspberrypi.com/documentation/computers/config_txt.html#arm_boost-raspberry-pi-4-only
+arm_boost=1
+
+disable_overscan=1

Yep, can confirm that it works as expected.

I can confirm that, with F41 and additional part [pi5] in config.txt file, it works just file with RPi5.
Thank you @dwrobel

1 Like

@dwrobel For Fedora 42, would you consider adding the [rpi5] section by default, so the images work OOTB (in case you haven’t done that already - in which case the related part could be removed from Howto/RaspberryPi - RPM Fusion)? For me that works perfectly fine and I use a single SD-card for both the 4 and 5 (I only use them for testing, so one at a time is enough).

would you consider adding the [rpi5] section

Yes, it will be part of the F42 image.

1 Like