Re: [PATCH 2/6] boot: android: Add image_android_get_version()

2024-06-11 Thread Mattijs Korpershoek
Hi Igor, Thank you for the review. On lun., juin 10, 2024 at 11:20, Igor Opaniuk wrote: > Hi Mattijs, > > On Thu, Jun 6, 2024 at 2:24 PM Mattijs Korpershoek > wrote: >> >> When reading a boot image header, we may need to retrieve the header >> version. >> >> Add a helper function for it. >> >>

Re: [PATCH 2/6] boot: android: Add image_android_get_version()

2024-06-10 Thread Igor Opaniuk
Hi Mattijs, On Thu, Jun 6, 2024 at 2:24 PM Mattijs Korpershoek wrote: > > When reading a boot image header, we may need to retrieve the header > version. > > Add a helper function for it. > > Signed-off-by: Mattijs Korpershoek > --- > boot/image-android.c | 7 ++- > include/image.h | 7

[PATCH 2/6] boot: android: Add image_android_get_version()

2024-06-06 Thread Mattijs Korpershoek
When reading a boot image header, we may need to retrieve the header version. Add a helper function for it. Signed-off-by: Mattijs Korpershoek --- boot/image-android.c | 7 ++- include/image.h | 7 +++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/boot/image-androi