Tool/software:
I'm trying to find a place where to change the kernel command line parameters given from u-boot. I want to disable the console showing on HDMI. Where can I do that? I already tried to add vt.global_cursor_default=0 to devicetree bootargs, but it didn't help
cat /proc/cmdline console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 mtdparts=spi-nand0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),256k(ospi.env.backup),98048k@32m(ospi.rootfs),256k@130816k(ospi.phypattern);omap2-nand.0:2m(NAND.tiboot3),2m(NAND.tispl),2m(NAND.tiboot3.backup),4m(NAND.u-boot),256k(NAND.u-boot-env),256k(NAND.u-boot-env.backup),-(NAND.file-system) root=PARTUUID=3b7d27bd-02 rw rootfstype=ext4 rootwait
bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 vt.global_cursor_default=0";
JHi