-
Notifications
You must be signed in to change notification settings - Fork 15
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
Add support for vendor-defined bootanimation #12
base: maru-0.6
Are you sure you want to change the base?
Conversation
Signed-off-by: Thomas Makin <[email protected]>
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.
I think the device makefile can override this field after including device-maru.mk
, and it doesn't need a commit. cc @pdsouza .
Yea but my concern was with setting other stuff with parsing order—if I wanted to override the rootfs AND bootanimation from the same makefile in another vendor repo, the order the makefile are executed in matters. This would eliminate that necessity, though I see your point there and it might just be better for me to work off a fork instead of adding an unnecessary conditional. |
I agree with @utzcoz. I suggest making sure you include |
@makinbacon21 Actually, I see your point about the ordering with the rootfs the way you're using the lazily set variable: you need to first set What we need here is the ability for you to override anything you need after including It would be ideal if we could export a variable like This shouldn't be a big change and I'll see if this works tonight when I have some time. Open to other ideas as well of course. |
@pdsouza I really like that idea--I was experimenting with something similar the other day when I was pondering ways to build rootfs as part of android build, but abandoned that project upon realizing it'd need sudo anyway, and giving build system root access is bad form. I think a |
OK, I think I have it working. See #13. I'll merge this into |
#13 has been merged into |
Allow external vendors to set bootanimation without being overwritten by maru--checks if maru version is set before setting
TARGET_BOOTANIMATION
.Signed-off-by: Thomas Makin [email protected]