From: Dan Riegsecker <1baldgeek@gmail.com> Date: Fri, 24 Aug 2018 14:08:04 +0000 (-0400) Subject: mx6sabre_common: Allow the videoargs to be passed to bootargs X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a9c45f15b276fe927d110d0ecea17c8a2b2d1619;p=bsp%2Fu-boot.git mx6sabre_common: Allow the videoargs to be passed to bootargs The NULL after "rootwait rw" was not allowing the videoargs to be passed to the bootargs via the mmcargs. Signed-off-by: Dan Riegsecker <1baldgeek@gmail.com> Signed-off-by: Otavio Salvador --- diff --git a/include/configs/mx6sabre_common.h b/include/configs/mx6sabre_common.h index 3b583b28ae..439bbadd74 100644 --- a/include/configs/mx6sabre_common.h +++ b/include/configs/mx6sabre_common.h @@ -109,7 +109,7 @@ "setexpr fb $fb + 1; " \ "done\0" \ "mmcargs=setenv bootargs console=${console},${baudrate} " \ - "root=PARTUUID=${uuid} rootwait rw\0" \ + "root=PARTUUID=${uuid} rootwait rw " \ VIDEO_ARGS "\0" \ "loadbootscript=" \ "fatload mmc ${mmcdev}:${mmcpart} ${loadaddr} ${script};\0" \