forked from mirrors/nixpkgs
Added packages for radeon-r600 and radeon-r700 firmware.
svn path=/nixpkgs/trunk/; revision=27783
This commit is contained in:
parent
4cc476fa52
commit
05e489b24f
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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -5608,6 +5608,9 @@ let
|
||||||
|
|
||||||
radeontools = callPackage ../os-specific/linux/radeontools { };
|
radeontools = callPackage ../os-specific/linux/radeontools { };
|
||||||
|
|
||||||
|
radeonR700 = callPackage ../os-specific/linux/firmware/radeon-r700 { };
|
||||||
|
radeonR600 = callPackage ../os-specific/linux/firmware/radeon-r600 { };
|
||||||
|
|
||||||
rfkill = callPackage ../os-specific/linux/rfkill { };
|
rfkill = callPackage ../os-specific/linux/rfkill { };
|
||||||
|
|
||||||
rt2860fw = callPackage ../os-specific/linux/firmware/rt2860 { };
|
rt2860fw = callPackage ../os-specific/linux/firmware/rt2860 { };
|
||||||
|
|
Loading…
Reference in a new issue