Hi, after update to the kodi 18 builds ( I tried back to .05) Kodi uses wrong Colors, Blue Things are Green on my acer projector, I tried to modify the boot.ini to use RGB Colorspace, but it didn't change, on kodi 17 I never has this strange thing.
My Boot,ini looks:
Code
#------------------------------------------------------------------------------------------------------
#
# boot.ini
#
# WARNING DO NOT MODIFY THIS FILE! ALL CHANGES WILL BE LOST WITH THE NEXT UPDATE!
# Set your own settings in config.ini
#
#------------------------------------------------------------------------------------------------------
ODROIDC2-UBOOT-CONFIG
setenv bootrootfs "BOOT_IMAGE=KERNEL boot=UUID=0612-3140 disk=UUID=5b649ca3-f9e7-422a-bd1a-eb4d7a91107f"
setenv condev "ttyS0,115200"
setenv hdmimode "1080p60hz"
setenv hdmioutput "1"
setenv hdmi_forcergb "1" # Enabled
setenv vpu "1"
setenv libreelec "quiet"
setenv hdmi_cec "1"
setenv maxcpus "4"
setenv max_freq "1536"
setenv rtc_shield "0"
setenv kernel_addr 0x11000000
setenv dtb_addr 0x1000000
setenv uenv_addr 0x13000000
fatload mmc 0:1 ${kernel_addr} KERNEL
fatload mmc 0:1 ${dtb_addr} meson64_odroidc2.dtb
if fatload mmc 0:1 ${uenv_addr} config.ini; then env import -t ${uenv_addr} $filesize; fi
fdt addr ${dtb_addr}
fdt resize
setenv odroidp1 "no_console_suspend logo=osd1,loaded,0x3f800000,${hdmimode} vout=${hdmimode},enable hdmimode=${hdmimode} cvbsmode=nocvbs"
setenv odroidp2 "mac=${ethaddr} consoleblank=0 max_freq=${max_freq} maxcpus=${maxcpus}"
setenv odroid "${odroidp1} ${odroidp2}"
if test "${hdmi_cec}" = "1"; then setenv cec "hdmitx=cec17"; fi
if test "${vpu}" = "0"; then fdt rm /mesonstream; fdt rm /vdec; fdt rm /ppmgr; fi
if test "${hdmioutput}" = "0"; then fdt rm /mesonfb; fi
if test "${rtc_shield}" = "0"; then fdt set "/i2c@c1108500/pcf8563@51" status disabled; fi
if test "${hdmi_forcergb}" = "1"; then setenv hdmitx "${hdmitx},forcergb"; fi
setenv bootargs "console=${condev} ${bootrootfs} ${odroid} ${cec} ${libreelec} ${hdmitx}"
booti ${kernel_addr} - ${dtb_addr}
Display More