-
Notifications
You must be signed in to change notification settings - Fork 259
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
ARM 32-bit device-tree reorganization #1678
ARM 32-bit device-tree reorganization #1678
Conversation
Oops! This patch needs a v2 |
The 32-bit ARM device trees in the Linux kernel were reorganized in a manner similar to how the 64-bit ARM device trees have always been organized: by placing them in vendor+family subdirectories. Therefore update the KERNEL_DEVICETREE definitions to match. Signed-off-by: Trevor Woerner <[email protected]>
a3bbf21
to
0d838c6
Compare
Okay, ready. |
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 for taking care of those boards!
I would like to hear if there are someone out there still using the machines!
Doesn't this break older kernel builds? Older as in 6.1? |
@angolini I am still actively using the Olimex board: olinuxino-maxi (from 3rdparty) |
@thochstein hmm... it does. It's frustrating that a single yocto branch includes pre- and post- dts directory cleanup versions. Is there a way to provide version-specific KERNEL_DEVICETREE variables? Applying this patch fixes 6.6 builds and breaks 6.1 builds. |
I prefer fixing the issue in the LTS kernel recipe instead of delaying it. |
I suggest we fix the old kernel recipes instead of reworking the device tree path, to avoid future issues. So when kernel 6.1 is removed the code goes away with it. |
The 32-bit ARM device trees in the Linux kernel were reorganized in a manner similar to how the 64-bit ARM device trees have always been organized: by placing them in vendor+family subdirectories. Therefore update the KERNEL_DEVICETREE definitions to match.