-
Notifications
You must be signed in to change notification settings - Fork 332
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
Introduce support for overriding system's DeviceTree #3346
Conversation
86b7fd9
to
17c3f63
Compare
6909357
to
41f063a
Compare
@andersson You resolved some conversations but didn't push, maybe you forgot? |
41f063a
to
cc0f184
Compare
@DaanDeMeyer no I didn't push, I was waiting for your confirmation on the install_type1() rework. I marked them as resolved as they where trivial and I wanted to de-clutter the PR view. Perhaps I'm using Github wrong? I've updated and pushed a new version now. Thank you. |
cc0f184
to
04e0307
Compare
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.
Missing documentation in man page
c75e898
to
36bc2fd
Compare
While experimenting with OS images on development boards where either the bootloader doesn't load a Flattened DeviceTree Blob, or if one wants to replace the one provided by the bootloader with a specific/new one for development/experimentation/testing purposes, it's convenient to use the OS-loaders ability to load a specific DeviceTree blob. Add a new option to mkosi, to cause a specified DeviceTree blob to be baked into the UKI, or copied into /boot and added to the systemd loader entry. As different distributions store the dtb files in different locations the requested file is searched for in the locations spotted in Debian, Fedora, Arch Linux packages (both from distro and kernel build system - as these differs as well). Resolves systemd#2439 Based on initial effort by Manuel Traut. Signed-off-by: Bjorn Andersson <[email protected]>
36bc2fd
to
caa0ecc
Compare
While experimenting with OS images on development boards where either the bootloader doesn't load a Flattened DeviceTree Blob, or if one wants to replace the one provided by the bootloader with a specific/new one for development/experimentation/testing purposes, it's convenient to use the OS-loaders ability to load a specific DeviceTree blob.
Add a new option to mkosi, to cause a specified DeviceTree blob to be baked into the UKI, or copied into /boot and added to the systemd loader entry.
As different distributions store the dtb files in different locations the requested file is searched for in the locations spotted in Debian, Fedora, Arch Linux packages (both from distro and kernel build system - as these differs as well).
Resolves #2439
Based on initial effort by Manuel Traut.