Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7b6b3e5066a1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8be733e9c0ee
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 8, 2019

  1. u-boot: 2019.04 -> 2019.10

    samueldr committed Oct 8, 2019
    Copy the full SHA
    9e141fc View commit details

Commits on Oct 9, 2019

  1. Copy the full SHA
    c5b7f9f View commit details

Commits on Oct 15, 2019

  1. Merge pull request #70793 from samueldr/feature/u-boot-2019.10

    u-boot: 2019.04 -> 2019.10
    globin authored Oct 15, 2019
    Copy the full SHA
    8be733e View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/misc/uboot/default.nix
6 changes: 3 additions & 3 deletions pkgs/misc/uboot/default.nix
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
}:

let
buildUBoot = { version ? "2019.04"
buildUBoot = { version ? "2019.10"
, filesToInstall
, installDir ? "$out"
, defconfig
@@ -20,7 +20,7 @@ let

src = fetchurl {
url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${version}.tar.bz2";
sha256 = "1vwv4bgbl7fjcm073zrphn17hnz5h5h778f88ivdsgbb2lnpgdvn";
sha256 = "053hcrwwlacqh2niisn0zas95zkbffw5aw5sdhixs8lmfdq60vcd";
};

patches = [
@@ -82,7 +82,7 @@ let
homepage = http://www.denx.de/wiki/U-Boot/;
description = "Boot loader for embedded systems";
license = licenses.gpl2;
maintainers = [ maintainers.dezgeg ];
maintainers = with maintainers; [ dezgeg samueldr ];
} // extraMeta;
} // removeAttrs args [ "extraMeta" ]);