for u-boot
$ wget –c http://git.freescale.com/git/cgit.cgi/imx/uboot-imx.git/snapshot/uboot-imx-rel_imx_4.1.15_2.0.0_ga.t...
$ tar -xf uboot-imx-rel_imx_4.1.15_2.0.0_ga.tar.gz
$ cd uboot-imx-rel_imx_4.1.15_2.0.0_ga
$ make $mx6qpsabreauto_config
$ make
no other than this config I did.
I'd like to have u-boot from within HDMI console (setenv stdout vga just hangs)
# Enabling HDMI comsole
setenv panel HDMI
setenv stdout serial,vga
setenv stderr serial,vga
saveenv
# To tell U-Boot to accept console input from a USB keyboard, run the following commands:
setenv stdin serial,usbkbd
saveenv
# To make U-Boot detect the USB keyboard on boot, run the following commands:
setenv preboot "usb start"
saveenv
as you asked: I am asking if you have enabled HDMI support inside U-Boot,
I think that's what I'm missing...
How can I enable HDMI support inside U-Boot?