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,37 @@
diff --git a/src/common/common/DefinesFile.cpp b/src/common/common/DefinesFile.cpp
index 6ad803d..022797a 100644
--- a/src/common/common/DefinesFile.cpp
+++ b/src/common/common/DefinesFile.cpp
@@ -36,6 +36,17 @@
#include <unistd.h>
#endif
+namespace {
+ bool fileCanBeStated(const std::string &file)
+ {
+ struct stat buf;
+ memset(&buf, 0, sizeof(buf));
+ int result = stat(file.c_str(), &buf );
+
+ return result == 0;
+ }
+}
+
std::string S3D::getHomeDir()
{
#ifdef _WIN32
@@ -74,12 +85,12 @@ bool S3D::dirMake(const std::string &file)
bool S3D::fileExists(const std::string &file)
{
- return (S3D::fileModTime(file) != 0);
+ return fileCanBeStated(file);
}
bool S3D::dirExists(const std::string &file)
{
- return (S3D::fileModTime(file) != 0);
+ return fileCanBeStated(file);
}
time_t S3D::fileModTime(const std::string &file)