I recently bought an Asrock Beebox N3150 and have the following problem. My Samsung TV has a very slow startup and when I use my Harmony remote to start both the TV and Beebox, the Beebox is faster then the TV and Libreelec v7.0.2 does not seem to get the correct EDID string each first boot. So I see a black screen (No signal). When I connect to Libreelec with VNC, I see that the resolution is 1024x768p, which my TV does not seem to understand. After I reboot Libreelec with the TV on, everything works fine. But I would like not to have to do that.
I already followed the procedure described here:
Configuring a Custom xorg.conf - OpenELEC
Since I could not find extlinux.conf, I changed syslinux.cfg to:
DEFAULT linux
PROMPT 0
LABEL linux
KERNEL /KERNEL
APPEND boot=LABEL=System disk=LABEL=Storage quiet initrd=/edid.cpio drm_kms_helper.edid_firmware=HDMI-A-3:edid/edid.bin video=HDMI-A-3:D
And above combined with what I found here:
Forcing a resolution when no TV is connected -
Phoronix Forums
this is my current xorg.conf file:
Section "ServerLayout"
Identifier "Default Layout"
Screen "Screen0"
EndSection
Section "Monitor"
Identifier "Samsung"
Option "enable" "true"
HorizSync 26 - 81
VertRefresh 24 - 75
ModeLine "1920x1080@24" 74.16 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync
ModeLine "1920x1080@25" 74.25 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync
ModeLine "1920x1080@30" 89.01 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync
ModeLine "1920x1080@50" 148.50 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync
ModeLine "1920x1080@60" 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync
Option "ExactModeTimingsDVI" "true"
EndSection
Section "Monitor"
Identifier "none"
Option "Ignore" "true"
EndSection
Section "Device"
Identifier "Device0"
Driver "intel"
VendorName "INTEL Corporation"
Option "monitor-HDMI1" "none"
Option "monitor-HDMI2" "none"
Option "monitor-HDMI3" "Samsung"
Option "ModeDebug" "true"
EndSection
Section "Extensions"
# fixes tearing
Option "Composite" "Disable"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Samsung"
Option "ConnectedMonitor" "Samsung"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "[email protected]" "1920x1080@24p" "1920x1080@60p"
EndSubSection
EndSection
Display More
Does someone know how I can force Libreelec to a resolution my TV understands even if my TV is off when Libreelec is started?