creating alarm/odroid-x-hdmi for easy install of xorg settings to specify the separate framebuffer that the HDMI uses

This commit is contained in:
Mike Brown 2012-11-24 13:09:41 -05:00
parent 4e43969f33
commit 539049eeb9
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,16 @@
buildarch=4
pkgname=('odroid-x-hdmi')
pkgver=20121124
pkgrel=1
pkgdesc="xorg.conf for HDMI output on the HardKernel ODROID-X"
arch=('armv7h')
url="http://www.archlinuxarm.org/platforms/armv7/odroid-x"
license=('GPL')
depends=('xf86-video-fbdev' 'xorg-server' 'xorg-xinit' 'xorg-utils' 'xorg-server-utils')
source=(xorg.conf)
md5sums=('a7b2918356666a3804ada8e9ef5c460d')
build() {
mkdir -p "$pkgdir/etc/X11/"
install -m644 "$srcdir/xorg.conf" "$pkgdir/etc/X11/"
}

View file

@ -0,0 +1,10 @@
Section "Device"
identifier "HDMI"
Driver "fbdev"
Option "fbdev" "/dev/fb1"
EndSection
Section "Screen"
identifier "Default Screen"
Device "HDMI"
EndSection