diff options
author | Fredrik Rinnestam <fredrik@rinnestam.se> | 2010-03-21 15:40:36 +0100 |
---|---|---|
committer | Fredrik Rinnestam <fredrik@rinnestam.se> | 2010-03-21 15:40:36 +0100 |
commit | 7e1efdf90aeaa44e2ec1fcdef0323c12c6ba6e33 (patch) | |
tree | 82534ffc5574e7a9d4449bfc3a918f16af2832f9 /radeon-ucode | |
parent | 1633bf34af227369711f70ec41c17981b08bc00f (diff) | |
download | opt-7e1efdf90aeaa44e2ec1fcdef0323c12c6ba6e33.tar.gz opt-7e1efdf90aeaa44e2ec1fcdef0323c12c6ba6e33.tar.xz |
radeon-ucode: initial release. Needed for r6xx/r7xx KMS.
Diffstat (limited to 'radeon-ucode')
-rw-r--r-- | radeon-ucode/.footprint | 5 | ||||
-rw-r--r-- | radeon-ucode/.md5sum | 2 | ||||
-rw-r--r-- | radeon-ucode/Pkgfile | 15 |
3 files changed, 22 insertions, 0 deletions
diff --git a/radeon-ucode/.footprint b/radeon-ucode/.footprint new file mode 100644 index 000000000..0888b78cc --- /dev/null +++ b/radeon-ucode/.footprint @@ -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 diff --git a/radeon-ucode/.md5sum b/radeon-ucode/.md5sum new file mode 100644 index 000000000..0a5a5ad85 --- /dev/null +++ b/radeon-ucode/.md5sum @@ -0,0 +1,2 @@ +f74a5163948bde215be6b689ca24afde R600_rlc.bin +411b41ca3117ca88dbd9689a57f09a89 R700_rlc.bin diff --git a/radeon-ucode/Pkgfile b/radeon-ucode/Pkgfile new file mode 100644 index 000000000..c562debd2 --- /dev/null +++ b/radeon-ucode/Pkgfile @@ -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/ +} |