You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[0.2.0] Rewrite the whole library
* Rewrite libbootimg to use "blobs" concept - kernel, initrd,
second stage and DTB are all objects of same type, which
enabled me to make functions shorter (they don't have to deal
with each of them individualy).
* Move image size and config related functions to bbootimg.c - they
should not be in the library.
* Document all library functions
* Clean-up the API
[0.1.7] Fix libbootimg_load_config_line() for lines without whitespace
* Until now, -c "name=nothing" would result in name argument
being set to "othing" and libbootimg wouldn't check last letter
of argument name, means that "namz = nothing" would set name
value.