From: Daniel Schultz Date: Wed, 22 May 2024 07:21:00 +0000 (-0700) Subject: include: extension_board: Increase overlay file name size X-Git-Url: http://git.dujemihanovic.xyz/img/static/gitweb.css?a=commitdiff_plain;h=38cf6819ca32d61f495c574a5695ee5e0cedc16d;p=u-boot.git include: extension_board: Increase overlay file name size Upstream overlays like the ARM64 TI k3-am625-beagleplay-csi2-tevi-ov5640.dtso can easily have more then 32 characters. Increase the overlay length to 64 characters to apply overlays with longer names. Signed-off-by: Daniel Schultz Acked-by: Kory Maincent --- diff --git a/include/extension_board.h b/include/extension_board.h index 87d404c007..22e4104bc5 100644 --- a/include/extension_board.h +++ b/include/extension_board.h @@ -14,7 +14,7 @@ struct extension { char name[32]; char owner[32]; char version[32]; - char overlay[32]; + char overlay[64]; char other[32]; };