-
Notifications
You must be signed in to change notification settings - Fork 464
rpi-base: filter None values from DTB boot files #1402
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
base: master
Are you sure you want to change the base?
Conversation
|
I don't really know Python, so not sure what it's about the version I've installed that caused this. It would be great if (after review) it could also be back-ported to the |
Thanks for this. I would like to understand why this happened in the first place. Could you dump the environment and check the value there? Also, a fix need to firstly land in master (and you can follow up with a cherry pick PR in other branches). |
|
Note to self: a colleague suggested return ' '.join(x for x in (transform(dtb) for dtb in alldtbs.split(' ') if dtb) if x is not None) would be more idiomatic |
|
I'll rerun the build without the patch when I'm at my desk, but my hunch is that the whitespaces in |
|
Error I saw was: I don't know enough about BitBake to know how to dump more... |
|
Just checking if there's an update on this, I'd like to get off my fork if possible. |
|
Doesn't this affect the master branch? |
I imagine it does. What was the question in relation to? |
|
Unless there is a fix specific to a maintained branch, we require fixes to first be pushed against master and only afterward backported (via an additional PR) to a stable branch. Do you think you could do that? |
The patch should still apply against master, but I can resubmit. |
aafd2f4 to
a3ac358
Compare
|
Rebased. |
|
Is there anything I can do to help get this merged? |
Please make a change and rebase on top of latest master branch so the CI state can reset |
0ab7232 to
bd065ef
Compare
|
Rebased once more. |
|
Rebased once more against master. How can I help get this merged? |
|
Apologies, previous commit was incorrectly rebased and had other patches in it; this one should be correct. |
|
Just pinging to see if there is anything I could help to get this merged. I'd love to avoid having to maintain my own branch. Alternative I suppose is to find the right Python version that doesn't exhibit this behaviour on my host system, and close the PR. |
|
Is there anything I can do to help progress this? I'd prefer to not have to maintain my own fork if at all possible. |
I will schedule it for CI over weekend. |
Did CI pass? |
there is a merge commit, please rebase so the merge commit is not there. There is a CI test which is failing due to that |
Filter None values from DTB boot files, to avoid errors expanding IMAGE_BOOT_FILES Signed-off-by: Luke Howard <[email protected]>
|
Damn GitHub making merge commits by default from UI. Fixed. |
|
GitHub is saying all checks have passed – can you let me know how we might go forward getting this merged into master and then into scarthgap? Do you require separate pull requests for version branches? |
It would help me assess this a bit more if you can dump KERNEL_DEVICETREE variable when it fails. I would like to document exact situation where this can happen and ofcouse the patch makes the function robust so perhaps we are fine there. |
|
Well, this is mysterious. I added some debugging ( So at this point I'm not quite sure what to do. Perhaps there was something in an earlier set of overlays that tripped it up (I recently removed all but the required entries). So I suppose we can close this in case I can duplicate it again? |
Filter
Nonevalues from DTB boot files, to avoid errors expandingIMAGE_BOOT_FILES