How to pass kernel parameter from uboot ?
I want to pass the some parameters to kernel command line.
drm.edid_firmware=edid/1280x800.binI tried to use "bootargs" environment of uboot.
env set bootargs "drm.edid_firmware=edid/1280x800.bin"But, Not working as I expect.
I couldn't find my parameter in kernel command line.
below is dmesg log.
Kernel command line: root=PARTUUID=491f6117-415d-4f53-88c9-6e0de54deac6 rootwait rw console=ttySTM0,115200below is /proc/cmdline log.
root@stm32mp15:~# cat /proc/cmdline
root=PARTUUID=491f6117-415d-4f53-88c9-6e0de54deac6 rootwait rw console=ttySTM0,115200How to pass the kernel command line parameters on uboot?
thanks in advance.
