nv-enable-hard-coded-kernel-boot-display-mode.sh has a bug

Hi,
I want to tell you that nv-enable-hard-coded-kernel-boot-display-mode.sh script has a bug.
It’s meant to put some properties to dtb file, but it puts one property - the first item, currently clock-frequency only.

current codes as follows

for prop_val in "${properties[@]}"; do
	property="$(echo "${properties[$i]}" | cut -f1 -d:)"
	value="$(echo "${properties[$i]}" | cut -f2 -d:)"
	fdtput -p -t i "${dtb_file}" "${fbcon_node}" "${property}" "${value}"
done

should be

for prop_val in "${properties[@]}"; do
	property="$(echo "${prop_val}" | cut -f1 -d:)"
	value="$(echo "${prop_val}" | cut -f2 -d:)"
	fdtput -p -t i "${dtb_file}" "${fbcon_node}" "${property}" "${value}"
done

to update all properties on this script.

Cheers!

Many thanks for the reminder!
This one would be fixed in next release.