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,39 @@
{ fetchgit, lib, stdenv, pkg-config, libnsl, libtirpc, autoreconfHook
, useSystemd ? true, systemd }:
stdenv.mkDerivation {
pname = "rpcbind";
version = "1.2.6";
src = fetchgit {
url = "git://git.linux-nfs.org/projects/steved/rpcbind.git";
rev = "c0c89b3bf2bdf304a5fe3cab626334e0cdaf1ef2";
sha256 = "sha256-aidETIZaQYzC3liDGM915wyBWpMrn4OudxEcFS/Iucw=";
};
patches = [
./sunrpc.patch
];
buildInputs = [ libnsl libtirpc ]
++ lib.optional useSystemd systemd;
configureFlags = [
"--with-systemdsystemunitdir=${if useSystemd then "${placeholder "out"}/etc/systemd/system" else "no"}"
"--enable-warmstarts"
"--with-rpcuser=rpc"
];
nativeBuildInputs = [ autoreconfHook pkg-config ];
meta = with lib; {
description = "ONC RPC portmapper";
license = licenses.bsd3;
platforms = platforms.unix;
homepage = "https://linux-nfs.org/";
maintainers = with maintainers; [ abbradar ];
longDescription = ''
Universal addresses to RPC program number mapper.
'';
};
}

View file

@ -0,0 +1,29 @@
http://projects.archlinux.org/svntogit/packages.git/tree/trunk/rpcbind-sunrpc.patch?h=packages/rpcbind
Lookup "sunrpc" instead of "rpcbind" in /etc/services, since the former is the
official IANA name.
diff -ru3 rpcbind-0.2.3/src/rpcbind.c rpcbind-0.2.3.new/src/rpcbind.c
--- rpcbind-0.2.3/src/rpcbind.c 2015-04-27 17:07:43.000000000 +0300
+++ rpcbind-0.2.3.new/src/rpcbind.c 2015-05-18 16:29:24.938380694 +0300
@@ -132,7 +132,7 @@
char *udp_uaddr; /* Universal UDP address */
char *tcp_uaddr; /* Universal TCP address */
#endif
-static char servname[] = "rpcbind";
+static char servname[] = "sunrpc";
static char superuser[] = "superuser";
int main __P((int, char *[]));
diff -ru3 rpcbind-0.2.3/src/rpcinfo.c rpcbind-0.2.3.new/src/rpcinfo.c
--- rpcbind-0.2.3/src/rpcinfo.c 2015-04-27 17:07:43.000000000 +0300
+++ rpcbind-0.2.3.new/src/rpcinfo.c 2015-05-18 16:30:14.197025336 +0300
@@ -1842,7 +1842,7 @@
/* Get the address of the rpcbind */
memset (&hints, 0, sizeof hints);
- if ((getaddrinfo (host, "rpcbind", &hints, &res) != 0) &&
+ if ((getaddrinfo (host, "sunrpc", &hints, &res) != 0) &&
(getaddrinfo (host, "portmapper",&hints, &res) != 0))
{
rpc_createerr.cf_stat = RPC_N2AXLATEFAILURE;