uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
15
pkgs/development/compilers/gcc/update-mcfgthread-patches.sh
Executable file
15
pkgs/development/compilers/gcc/update-mcfgthread-patches.sh
Executable file
|
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/env nix-shell
|
||||
#! nix-shell -i bash -p curl
|
||||
|
||||
# We use this script to download local copies instead of using
|
||||
# fetchpatch because lmhouse/MINGW-packages-dev is constantly rebased
|
||||
# against msys2/MINGW-packages-dev and won't have stable commit hashes.
|
||||
|
||||
name=Added-mcf-thread-model-support-from-mcfgthread.patch
|
||||
source=https://raw.githubusercontent.com/lhmouse/MINGW-packages-dev/master/mingw-w64-gcc-git
|
||||
dest=$(dirname "$0")
|
||||
|
||||
for majorVersion in 6 7 8 9 10; do
|
||||
curl "$source/9000-gcc-$majorVersion-branch-$name" \
|
||||
> "$dest/$majorVersion/$name"
|
||||
done
|
||||
Loading…
Add table
Add a link
Reference in a new issue