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:
Anton Arapov 2021-04-03 12:58:10 +02:00 committed by Alan Daniels
commit 56de2bcd43
30691 changed files with 3076956 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "b43-fwcutter";
version = "019";
src = fetchurl {
url = "https://bues.ch/b43/fwcutter/b43-fwcutter-${version}.tar.bz2";
sha256 = "1ki1f5fy3yrw843r697f8mqqdz0pbsbqnvg4yzkhibpn1lqqbsnn";
};
patches = [ ./no-root-install.patch ];
makeFlags = [
"PREFIX=$(out)"
"CC=${stdenv.cc.targetPrefix}cc"
];
meta = {
description = "Firmware extractor for cards supported by the b43 kernel module";
homepage = "http://wireless.kernel.org/en/users/Drivers/b43";
license = lib.licenses.free;
platforms = lib.platforms.linux;
};
}

View file

@ -0,0 +1,18 @@
diff -Naur b43-fwcutter-015-orig/Makefile b43-fwcutter-015/Makefile
--- b43-fwcutter-015-orig/Makefile 2011-08-21 08:17:01.000000000 -0400
+++ b43-fwcutter-015/Makefile 2012-07-13 17:57:53.002154557 -0400
@@ -51,10 +51,10 @@
$(QUIET_CC) $(CFLAGS) -o $(BIN) $(call OBJS,$(SRCS)) $(LDFLAGS)
install: all
- install -d -o 0 -g 0 -m 755 $(PREFIX)/bin/
- install -o 0 -g 0 -m 755 $(BIN) $(PREFIX)/bin/
- install -d -o 0 -g 0 -m 755 $(PREFIX)/man/man1/
- install -o 0 -g 0 -m 644 $(BIN).1 $(PREFIX)/man/man1/
+ install -d -m 755 $(PREFIX)/bin/
+ install -m 755 $(BIN) $(PREFIX)/bin/
+ install -d -m 755 $(PREFIX)/man/man1/
+ install -m 644 $(BIN).1 $(PREFIX)/man/man1/
clean:
-rm -Rf obj dep *.orig *.rej *~