Re: [U-Boot] [PATCH] image: android: Fix possible build errors

2019-10-17 Thread Tom Rini
On Fri, Aug 09, 2019 at 03:31:29PM +0300, Sam Protsenko wrote: > As android_image.h uses types like u32, we need to include corresponding > headers in place. Otherwise the user will be forced to include those in > C file, or next build error can occur: > > include/android_image.h:32:5:

[U-Boot] [PATCH] image: android: Fix possible build errors

2019-08-09 Thread Sam Protsenko
As android_image.h uses types like u32, we need to include corresponding headers in place. Otherwise the user will be forced to include those in C file, or next build error can occur: include/android_image.h:32:5: error: unknown type name 'u32' u32 kernel_size; /* size in bytes */