radeon-ucode: initial release. Needed for r6xx/r7xx KMS.

This commit is contained in:
Fredrik Rinnestam 2010-03-21 15:40:36 +01:00
parent 1633bf34af
commit 7e1efdf90a
3 changed files with 22 additions and 0 deletions

5
radeon-ucode/.footprint Normal file
View File

@ -0,0 +1,5 @@
drwxr-xr-x root/root lib/
drwxr-xr-x root/root lib/firmware/
drwxr-xr-x root/root lib/firmware/radeon/
-rw-r--r-- root/root lib/firmware/radeon/R600_rlc.bin
-rw-r--r-- root/root lib/firmware/radeon/R700_rlc.bin

2
radeon-ucode/.md5sum Normal file
View File

@ -0,0 +1,2 @@
f74a5163948bde215be6b689ca24afde R600_rlc.bin
411b41ca3117ca88dbd9689a57f09a89 R700_rlc.bin

15
radeon-ucode/Pkgfile Normal file
View File

@ -0,0 +1,15 @@
# Description: Needed userspace firmware for radeon r6xx and r7xx KMS.
# URL: http://people.freedesktop.org/~agd5f/radeon_ucode/.
# Maintainer: Fredrik Rinnestam, fredrik at rinnestam dot se
# Depends on:
name=radeon-ucode
version=1.0
release=1
source=(http://people.freedesktop.org/~agd5f/radeon_ucode/R600_rlc.bin \
http://people.freedesktop.org/~agd5f/radeon_ucode/R700_rlc.bin)
build() {
mkdir -p $PKG/lib/firmware/radeon
cp R{6,7}00_rlc.bin $PKG/lib/firmware/radeon/
}