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,26 @@
diff --color -ur a/program/nikto.pl b/program/nikto.pl
--- a/program/nikto.pl 2021-01-30 12:05:54.915072538 +0100
+++ b/program/nikto.pl 2021-01-30 12:36:42.877729231 +0100
@@ -223,7 +223,8 @@
# Guess Nikto current directory
my $NIKTODIR = abs_path($0);
chomp($NIKTODIR);
- $NIKTODIR =~ s#[\\/]nikto.pl$##;
+ $NIKTODIR =~ s#[\\/]bin[\\/]\.nikto-wrapped$##;
+
# Guess user's home directory -- to support Windows
foreach my $var (split(/ /, "HOME USERPROFILE")) {
@@ -231,10 +232,10 @@
}
# Read the conf files in order (previous values are over-written with each, if multiple found)
- push(@CF,"$NIKTODIR/nikto.conf.default");
+ push(@CF,"$NIKTODIR/etc/nikto.conf.default");
push(@CF,"/etc/nikto.conf");
push(@CF,"$home/nikto.conf");
- push(@CF,"$NIKTODIR/nikto.conf");
+ push(@CF,"$NIKTODIR/etc/nikto.conf");
push(@CF,"nikto.conf");
push(@CF,"$VARIABLES{'configfile'}");