-
Notifications
You must be signed in to change notification settings - Fork 164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initial raspberrypi5 support #4441
base: master
Are you sure you want to change the base?
Conversation
- enable booting from sd card - u-boot has no pci support for rpi5 yet, so the usb/ethernet ports are not enabled. - there is no hdmi output yet, only uart. Signed-off-by: Dimitrios Poulios <[email protected]>
- enable raspberrypi5 console in grub config - use the devicetree provided by the firmware (and not the one provided by the kernel) to ensure the ethernet mac address is set correctly Signed-off-by: Dimitrios Poulios <[email protected]>
@@ -8,7 +8,9 @@ SHELL ["/bin/bash", "-eo", "pipefail", "-c"] | |||
ENV VERSION v2024.10-rc2 | |||
ENV SOURCE_URL https://github.com/u-boot/u-boot/archive/${VERSION}.tar.gz | |||
ENV RASPBERRY_FIRMWARE_BLOBS_VERSION 1.20211007 | |||
ENV RASPBERRY_FIRMWARE_BLOBS_VERSION2 1.20240306 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we use some more descriptive names, please?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably, it would be better to get all the files from the newer version, but then I guess we should test on all raspberry devices to ensure that everything is ok.
@@ -8,7 +8,9 @@ SHELL ["/bin/bash", "-eo", "pipefail", "-c"] | |||
ENV VERSION v2024.10-rc2 | |||
ENV SOURCE_URL https://github.com/u-boot/u-boot/archive/${VERSION}.tar.gz | |||
ENV RASPBERRY_FIRMWARE_BLOBS_VERSION 1.20211007 | |||
ENV RASPBERRY_FIRMWARE_BLOBS_VERSION2 1.20240306 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dpoulios I think we can use the newest firmware for RPi model 4 as well, right? So you can just update the version on RASPBERRY_FIRMWARE_BLOBS_VERSION...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I will do it this way and test on rpi4 & rpi5
Initial support for rpi5: