nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #78216 from samueldr/u-boot/update/2020.01

uboot: 2019.10 -> 2020.01

authored by

Samuel Dionne-Riel and committed by
GitHub
90441b4b deb6770e

+12 -23
+10 -22
pkgs/misc/uboot/default.nix
··· 6 6 }: 7 7 8 8 let 9 - defaultVersion = "2019.10"; 9 + defaultVersion = "2020.01"; 10 10 defaultSrc = fetchurl { 11 11 url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${defaultVersion}.tar.bz2"; 12 - sha256 = "053hcrwwlacqh2niisn0zas95zkbffw5aw5sdhixs8lmfdq60vcd"; 12 + sha256 = "1w9ml4jl15q6ixpdqzspxjnl7d3rgxd7f99ms1xv5c8869h3qida"; 13 13 }; 14 14 buildUBoot = { 15 15 version ? null ··· 28 28 29 29 src = if src == null then defaultSrc else src; 30 30 31 - patches = [ 32 - # Submitted upstream: https://patchwork.ozlabs.org/patch/1203693/ 33 - (fetchpatch { 34 - url = https://github.com/dezgeg/u-boot/commit/extlinux-path-length-2018-03.patch; 35 - sha256 = "07jafdnxvqv8lz256qy29agjc2k1zj5ad4k28r1w5qkhwj4ixmf8"; 36 - }) 37 - # Submitted upstream: https://patchwork.ozlabs.org/patch/1203678/ 38 - (fetchpatch { 39 - name = "rockchip-allow-loading-larger-kernels.patch"; 40 - url = "https://marc.info/?l=u-boot&m=157537843004298&q=raw"; 41 - sha256 = "0l3l88cc9xkxkraql82pfgpx6nqn4dj7cvfaagh5pzfwkxyw0n3p"; 42 - }) 43 - ] ++ extraPatches; 31 + patches = extraPatches; 44 32 45 33 postPatch = '' 46 34 patchShebangs tools ··· 41 53 dtc 42 54 flex 43 55 openssl 44 - (buildPackages.python2.withPackages (p: [ p.libfdt ])) 56 + (buildPackages.python3.withPackages (p: [ p.libfdt ])) 45 57 swig 46 58 ]; 47 59 depsBuildBuild = [ buildPackages.stdenv.cc ]; ··· 112 124 filesToInstall = ["u-boot-sunxi-with-spl.bin"]; 113 125 }; 114 126 127 + ubootAmx335xEVM = buildUBoot { 128 + defconfig = "am335x_evm_defconfig"; 129 + extraMeta.platforms = ["armv7l-linux"]; 130 + filesToInstall = ["MLO" "u-boot.img"]; 131 + }; 132 + 115 133 ubootBananaPi = buildUBoot { 116 134 defconfig = "Bananapi_defconfig"; 117 135 extraMeta.platforms = ["armv7l-linux"]; ··· 135 141 extraMeta.platforms = ["aarch64-linux"]; 136 142 BL31 = "${armTrustedFirmwareAllwinner}/bl31.bin"; 137 143 filesToInstall = ["u-boot-sunxi-with-spl.bin"]; 138 - }; 139 - 140 - ubootBeagleboneBlack = buildUBoot { 141 - defconfig = "am335x_boneblack_defconfig"; 142 - extraMeta.platforms = ["armv7l-linux"]; 143 - filesToInstall = ["MLO" "u-boot.img"]; 144 144 }; 145 145 146 146 # http://git.denx.de/?p=u-boot.git;a=blob;f=board/solidrun/clearfog/README;hb=refs/heads/master
+1
pkgs/top-level/aliases.nix
··· 442 442 transmission_remote_gtk = transmission-remote-gtk; # added 2018-01-06 443 443 truecrypt = veracrypt; # added 2018-10-24 444 444 tshark = wireshark-cli; # added 2018-04-25 445 + ubootBeagleboneBlack = ubootAmx335xEVM; # added 2020-01-21 445 446 ucsFonts = ucs-fonts; # added 2016-07-15 446 447 ultrastardx-beta = ultrastardx; # added 2017-08-12 447 448 usb_modeswitch = usb-modeswitch; # added 2016-05-10
+1 -1
pkgs/top-level/all-packages.nix
··· 17145 17145 ubootBananaPi 17146 17146 ubootBananaPim3 17147 17147 ubootBananaPim64 17148 - ubootBeagleboneBlack 17148 + ubootAmx335xEVM 17149 17149 ubootClearfog 17150 17150 ubootGuruplug 17151 17151 ubootJetsonTK1