11.10 and force hdmi
#1
I got some serious issues (since i consider myself a linux newbie) with my new setup
MSI-H57M-ED65
with I5-661 CPU
OS lxde ubuntu 11.10

Cant force to start X with default 1920x1080 when my amplituner is connected to hdmi but OFF
any chance to get some support with that?

here is my xorg.conf

Code:
Section "ServerLayout"
Identifier "Default Layout"
Screen "TV"
EndSection

Section "Device"
    Identifier     "Intel HD Graphics"
    Driver         "intel"
    VendorName     "INTEL Corporation"
    BusID          "PCI:0:2:0"
    Option         "monitor-VGA1" "none"
    Option         "monitor-DP1" "none"
    Option         "monitor-HDMI1" "none"
    Option         "monitor-HDMI2" "none"
    Option         "monitor-HDMI3" "HCG"
    Option         "monitor-DP2" "none"
    Option         "monitor-DP3" "none"
    Option         "ModeDebug" "true"
    Option         "UseDisplayDevice" "HCG"
    Option         "ConnectedMonitor" "HCG"
    Option         "UseEDID" "FALSE"
EndSection

Section "Monitor"
   Identifier "HCG"
   VendorName "HarmanKardon"
#   Option "enable" "true"
  HorizSync   14.0 - 70.0
  VertRefresh 24.0 - 62.0
  Option      "DPMS" "true"
  Modeline    "1920x1080@24p"     74.230 1920 2560 2604 2752 1080 1084 1089 1125 +hsync +vsync
  Modeline    "1920x1080@50p"    148.500 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync
  Modeline    "[email protected]" 148.352 1920 1960 2016 2200 1080 1082 1088 1125 +hsync +vsync
  Modeline    "1920x1080@60p"    148.500 1920 2008 2056 2200 1080 1084 1089 1125 +hsync +vsync

EndSection

Section "Monitor"
Identifier "none"
Option "Ignore" "true"
EndSection

Section "Screen"
    Identifier     "TV"
    Device         "Intel HD Graphics"
    Monitor        "HCG"
    Option         "ColorRange" "Full"
    Option         "ColorSpace" "RGB"
    DefaultDepth  24
    SubSection     "Display"
    Depth       24
    Modes     "1920x1080@50p" "[email protected]" "1920x1080@24p" "1920x1080@60p"
    EndSubSection
EndSection

Section "Extensions"
    Option         "Composite" "false"
EndSection
Reply
#2
I had that problem a long time ago. I believe the trick was to dump the edid of your system when turned on through nvidia settings. below is my xorg.conf that I use today (You will likely need to modify it). I always keep it handy for the next time there is a re-install. Hopefully it's helpful, I am sure there is extra stuff in my xorg but am a firm believer in do not mess with what works!

Update : I see you are not running a nvidia card so you will have to look elsewhere on how to dump your edid

Kevin

Quote:xbmc@XBMCLive:/var/log$ cat /etc/X11/xorg.conf
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig: version 260.19.29 ([email protected]) Wed Dec 8 12:28:55 PST 2010

Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"
# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "kbd"
EndSection

Section "Monitor"
Identifier "Monitor0"
VendorName "Unknown"
ModelName "Unknown"
HorizSync 28.0 - 33.0
VertRefresh 43.0 - 72.0
Option "DPMS"
EndSection

Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Option "UseDisplayDevice" "DFP-1"
Option "ConnectedMonitor" "DFP-1"
Option "CustomEDID" "DFP-1:/home/xbmc/.DFP-0.edid.bin"
Option "HWCursor" "false"
EndSection

Section "Screen"
Option "FlatPanelProperties" "Scaling = Native"
Option "HWCursor" "Off"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
Option "NoLogo" "True"
Option "DynamicTwinView" "False"
Option "metamodes" "DFP-1: 1920x1080_60_0 +0+0; DFP-0: 1920x1080_24 +0+0"
SubSection "Display"
Depth 24
EndSubSection
EndSection

Section "Extensions"
Option "Composite" "Disable"
EndSection
Reply
#3
trick with EDID works for nvidia driver
intel Clarksdale doesnt support it Sad
Reply

Logout Mark Read Team Forum Stats Members Help
11.10 and force hdmi0