-
Notifications
You must be signed in to change notification settings - Fork 130
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
Update release on provisioning-raspberry-pi4.adoc #697
Conversation
the release var will start to drift from what the stable OS is. I also found dnf4 and dnf5 differ in how they handle the download arguments. I have not worked out how to get dnf5 to reliably download packages for a non native OS.
I ran into the same issue, and tried changing the command to what I thought was the equivalent dnf5 command: That command results in the following: /tmp/RPi4boot/ $ ls
bcm283x-firmware-20241118-1.545e5aa.fc41.aarch64.rpm
bcm283x-overlays-20241118-1.545e5aa.fc41.aarch64.rpm
uboot-images-armv8-2024.10-1.fc41.noarch.rpm Whereas using
So it looks like my dnf5 command wasn't downloading dependencies... not sure if there's a way to do that in dnf5? For now I'll just use the dnf4 command, but I suppose the docs could be updated to use dnf5 and list all the dependencies, though that seems exceptionally fragile. So for now I would say making this change is the correct one. |
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.
Thanks! It would be good to figure out the changes needed to make this work with dnf5 as well.
I can open a PR with the correct command for Since the current default version in Fedora is |
based on feedback and testing
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.
LGTM
the release environment variable has begun to drift from what the stable OS is.
I also found dnf4 and dnf5 differ in how they handle the download arguments.
I have not worked out how to get dnf5 to reliably download packages on non native (aarch64) OS.