Adding 'glib' as buildInput to webkit (its configure script wanteed it).
[nixpkgs-libre.git] / pkgs / misc / uboot / default.nix
blob5c38f1d053bb37dbc09f50869c08d878f99af91c
1 {stdenv, fetchurl, unzip}:
3 # We should enable this check once we have the cross target system information
4 # assert stdenv.system == "armv5tel-linux" || crossConfig == "armv5tel-linux";
6 # All this file is made for the Marvell Sheevaplug
7    
8 stdenv.mkDerivation {
9   name = "uboot-sheevaplug-3.4.19";
10    
11   src = fetchurl {
12     url = "ftp://ftp.denx.de/pub/u-boot/u-boot-1.1.4.tar.bz2";
13     sha256 = "19vp4rlikz7h72pqsjhgz7nmgjy4c6vabvxkw67wni70vy5ddy8s";
14   };
16   srcAddon = fetchurl {
17     url = "http://www.plugcomputer.org/data/uboot/u-boot-3.4.19.zip";
18     sha256 = "1wag1l6agr8dbnnfaw6bgcrwynwwgry4ihb3gp438699wmkmy91k";
19   };
21   postUnpack = ''
22     mv u-boot-1.1.4 u-boot-3.4.19
23     unzip -o $srcAddon
24     sourceRoot=u-boot-3.4.19
25   '';
27   patches = [ ./gas220.patch ];
29   # Remove the cross compiler prefix, and add reiserfs support
30   configurePhase = ''
31     make mrproper
32     make rd88f6281Sheevaplug_config NBOOT=1 LE=1
33     sed -i /CROSS_COMPILE/d include/config.mk
34   '';
36   buildPhase = ''
37     unset src
38     if test -z "$crossConfig"; then
39         make clean all
40     else
41         make clean all ARCH=arm CROSS_COMPILE=$crossConfig-
42     fi
43   '';
45   buildNativeInputs = [ unzip ];
47   dontStrip = true;
48   NIX_STRIP_DEBUG = false;
50   installPhase = ''
51     ensureDir $out
52     cp u-boot-rd88f6281Sheevaplug_400db_nand.bin $out
53     cp u-boot u-boot.map $out
55     ensureDir $out/bin
56     cp tools/{envcrc,mkimage} $out/bin
57   '';