Message ID | 20200526205429.13818-1-agust@denx.de |
---|---|
State | Accepted |
Commit | 1099b2abef35c3c887f6afac1a8ef18c7924d5d2 |
Headers | show |
Series | [v2] colibri_imx6: fix video stdout in default environment | expand |
Hi Anatolij, On Tue, May 26, 2020 at 11:54 PM Anatolij Gustschin <agust at denx.de> wrote: > > After migration to DM 'vga' name is not longer supported, > change it to 'vidconsole' in the default environment. > > Signed-off-by: Anatolij Gustschin <agust at denx.de> > Cc: Igor Opaniuk <igor.opaniuk at toradex.com> > --- > Changes in v2: > - fix build error > > include/configs/colibri_imx6.h | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/include/configs/colibri_imx6.h b/include/configs/colibri_imx6.h > index 3d248ef4ef..af17a0a137 100644 > --- a/include/configs/colibri_imx6.h > +++ b/include/configs/colibri_imx6.h > @@ -156,7 +156,8 @@ > BOOTENV \ > "bootcmd=setenv fdtfile ${fdt_file}; run distro_bootcmd; " \ > "usb start ; " \ > - "setenv stdout serial,vga ; setenv stdin serial,usbkbd\0" \ > + "setenv stdout serial,vidconsole; " \ > + "setenv stdin serial,usbkbd\0" \ > "boot_file=zImage\0" \ > "console=ttymxc0\0" \ > "defargs=enable_wait_mode=off galcore.contiguousSize=50331648\0" \ > -- > 2.17.1 > Thanks for the patch. Acked-by: Igor Opaniuk <igor.opaniuk at toradex.com>
diff --git a/include/configs/colibri_imx6.h b/include/configs/colibri_imx6.h index 3d248ef4ef..af17a0a137 100644 --- a/include/configs/colibri_imx6.h +++ b/include/configs/colibri_imx6.h @@ -156,7 +156,8 @@ BOOTENV \ "bootcmd=setenv fdtfile ${fdt_file}; run distro_bootcmd; " \ "usb start ; " \ - "setenv stdout serial,vga ; setenv stdin serial,usbkbd\0" \ + "setenv stdout serial,vidconsole; " \ + "setenv stdin serial,usbkbd\0" \ "boot_file=zImage\0" \ "console=ttymxc0\0" \ "defargs=enable_wait_mode=off galcore.contiguousSize=50331648\0" \
After migration to DM 'vga' name is not longer supported, change it to 'vidconsole' in the default environment. Signed-off-by: Anatolij Gustschin <agust at denx.de> Cc: Igor Opaniuk <igor.opaniuk at toradex.com> --- Changes in v2: - fix build error include/configs/colibri_imx6.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)