Message ID | 20200526205214.13702-1-agust@denx.de |
---|---|
State | Accepted |
Commit | d8c37c63098ee6133739c94230dd4f283c481543 |
Headers | show |
Series | [v2] apalis_imx6: fix video stdout in default environment | expand |
Hi Anatolij, On Tue, May 26, 2020 at 11:52 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/apalis_imx6.h | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/include/configs/apalis_imx6.h b/include/configs/apalis_imx6.h > index 6f03058a78..c6c2f46a17 100644 > --- a/include/configs/apalis_imx6.h > +++ b/include/configs/apalis_imx6.h > @@ -173,7 +173,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 vmalloc=400M\0" \ > -- > 2.17.1 > Thanks for the patch. Acked-by: Igor Opaniuk <igor.opaniuk at toradex.com>
diff --git a/include/configs/apalis_imx6.h b/include/configs/apalis_imx6.h index 6f03058a78..c6c2f46a17 100644 --- a/include/configs/apalis_imx6.h +++ b/include/configs/apalis_imx6.h @@ -173,7 +173,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 vmalloc=400M\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/apalis_imx6.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)