[U-Boot] [PATCH v2 0/2] Enable command bmp on Raspberry Pi boards

2018-12-31 Thread Adam Heinrich
Hello, This enables the bmp command (with gzip support enabled) on all Raspberry Pi boards. Changes in v2: - added a commit fixing the int-to-pointer-cast warning on aarch64 Adam Heinrich (2): cmd: bmp: Make integer-to-pointer cast platform independent rpi: Enable command bmp cmd/bmp.c

[U-Boot] [PATCH v2 1/2] cmd: bmp: Make integer-to-pointer cast platform, independent

2018-12-31 Thread Adam Heinrich
This patch fixes the int-to-pointer-cast warning on aarch64. Signed-off-by: Adam Heinrich --- cmd/bmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/bmp.c b/cmd/bmp.c index b8af784590..00f0256a30 100644 --- a/cmd/bmp.c +++ b/cmd/bmp.c @@ -57,7 +57,7 @@ struct

[U-Boot] [PATCH v2 2/2] rpi: Enable command bmp

2018-12-31 Thread Adam Heinrich
This patch enables the bmp command (with gzip support enabled) on all Raspberry Pi boards. The value of CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (required by CONFIG_VIDEO_BMP_GZIP) is set to match resolution of the "official" 7 inch LCD. Signed-off-by: Adam Heinrich Cc: Alexander Graf --

[U-Boot] [PATCH] rpi: Enable command bmp

2018-11-12 Thread Adam Heinrich
This patch enables the bmp command (with gzip support enabled) on all Raspberry Pi boards. The value of CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (required by CONFIG_VIDEO_BMP_GZIP) is set to match resolution of the "official" 7 inch LCD. Signed-off-by: Adam Heinrich Cc: Alexander Graf --