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,23 @@
commit 02fd6c4355809e1bff7c66d478e88f30bedde13b
Author: Nicolas Berbiche <nicolas@normie.dev>
Date: Wed May 5 23:14:56 2021 -0400
fix libusb include for Linux
diff --git a/kinect_upload_fw/kinect_upload_fw.c b/kinect_upload_fw/kinect_upload_fw.c
index 1bd4102..351c94f 100644
--- a/kinect_upload_fw/kinect_upload_fw.c
+++ b/kinect_upload_fw/kinect_upload_fw.c
@@ -35,7 +35,12 @@
#include <stdlib.h>
#include <string.h>
#include <errno.h>
+
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(_WIN32)
#include <libusb.h>
+#else
+#include <libusb-1.0/libusb.h>
+#endif
#include "endian.h"