Hello, here is my configuration for a J7F5M-VHE with ubuntulite 8.04. Due to my Philips flat TV (connected via HDMI), the screen resolution is only 1024x768 (not 1080i or 720p).
To transmit video via HDMI with a "CX700M2 UniChrome PRO II Graphics" chipset, you can use two possible drivers:
Openchrome:
Currently openchrome does not support mpeg2/4 hardware acceleration for the CX700. To gain an overview of supported features, see:
: HardwareCaveats
For a detailed installation guide have a look at:
: Compiling the source code
or especially for ubuntu use:
https://help.ubuntu.com/community/OpenChrome
Unichrome (my choice, because of HW-acceleration):
Go to
http://linux.via.com.tw/, select "Ubuntu 8.04 LTS" and "CX700M/VX700" and download the unichrome.83.40692 (Beta) driver (File: via-unichrome.83.40692.tar.gz).
Unzip and install the downloaded driver:
Quote:
tar xzf via-unichrome.83.40692.tar.gz
cd via-unichrome.83.40692
./vinstall
|
The installation script will override your /etc/X11/xorg.conf. You should change the file after the installation process, because the generated xorg.conf did not work in my case.
Important parts of my /etc/X11/xorg.conf (The monitor is configured to a Philips 32PF9830):
Code:
...
Section "Device"
Identifier "Generic Video Card"
VendorName "VIA Tech"
BoardName "via"
# unichrome
Driver "via"
# This is important to activate the HDMI output.
Option "ActiveDevice" "DVI"
# # openchrome
# Driver "openchrome"
# BusID "PCI:1:0:0"
# Option "VBEModes" "true"
# Option "DisableIRQ" "true"
# Option "EnableAGPDMA" "true"
EndSection
Section "Monitor"
Identifier "PHILIPS FTV"
VendorName "PHL"
DisplaySize 305 230
Option "DPMS"
HorizSync 28-50
VertRefresh 43-62
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Generic Video Card"
Monitor "PHILIPS FTV"
DefaultDepth 16
SubSection "Display"
Modes "1024x768"
Depth 16
EndSubSection
SubSection "Display"
Modes "1024x768"
Depth 24
EndSubSection
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection
Section "DRI"
Group 0
Mode 0666
EndSection
You can copy some additional modelines from the viax.conf file of the via-unichrome.83.40692 directory.
To get the audio over HDMI you need a /etc/asoundrc (my solution) or a .asoundrc (never tested) file in your home directory, containing :
Code:
pcm. !default {
type hw
card 0
device 1
}
And you should check your sound settings. Use the command alsamixer and activate "IEC958". This works only for alsa (because I use ubuntulite) not for the pulseaudio server under ubuntu. I do not know how to configure pulseaudio to use the digital audio. I tryed it via the sound/audio GUI of ubuntu, but it did not work. Maybe you are able to do so.
Good luck!