Added packages for radeon-r600 and radeon-r700 firmware.
svn path=/nixpkgs/trunk/; revision=27783
This commit is contained in:
19
pkgs/os-specific/linux/firmware/radeon-r600/default.nix
Normal file
19
pkgs/os-specific/linux/firmware/radeon-r600/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "radeon-r600-firmware-2009-12-09";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://people.freedesktop.org/~agd5f/radeon_ucode/R600_rlc.bin";
|
||||
sha256 = "11bxpivxycigv0ffbck33y9czgira3g8py33840zxzwcwbi59yps";
|
||||
};
|
||||
|
||||
unpackPhase = "true";
|
||||
installPhase = "install -D $src $out/radeon/R600_rlc.bin";
|
||||
|
||||
meta = {
|
||||
description = "Firmware for the RADEON r600 chipset";
|
||||
homepage = "http://people.freedesktop.org/~agd5f/radeon_ucode";
|
||||
license = "GPL";
|
||||
};
|
||||
}
|
||||
19
pkgs/os-specific/linux/firmware/radeon-r700/default.nix
Normal file
19
pkgs/os-specific/linux/firmware/radeon-r700/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "radeon-r700-firmware-2009-12-09";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://people.freedesktop.org/~agd5f/radeon_ucode/R700_rlc.bin";
|
||||
sha256 = "1lbgrlbhqijizg16z0g0qa6ggznpdy844cawnwdp1b0fkwhrbkga";
|
||||
};
|
||||
|
||||
unpackPhase = "true";
|
||||
installPhase = "install -D $src $out/radeon/R700_rlc.bin";
|
||||
|
||||
meta = {
|
||||
description = "Firmware for the RADEON r700 chipset";
|
||||
homepage = "http://people.freedesktop.org/~agd5f/radeon_ucode";
|
||||
license = "GPL";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user