[PATCH 3/4] Allow *.c as kernel space header files
Sebastian Huber
sebastian.huber at embedded-brains.de
Fri Aug 24 07:38:42 UTC 2018
This is a workaround for the FreeBSD kernel space source file
sys/opencrypto/xform.c
which includes a bunch of *.c files.
Update #3472.
---
builder.py | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/builder.py b/builder.py
index 78f592c7b..7f4e71705 100755
--- a/builder.py
+++ b/builder.py
@@ -210,10 +210,16 @@ def assertHeaderFile(path):
def assertSourceFile(path):
if path[-2] != '.' or (path[-1] != 'c' and path[-1] != 'S'):
- print("*** " + path + " does not end in .c")
+ print("*** " + path + " does not end in .c or .S")
print("*** Move it to a header file list")
sys.exit(2)
+def assertHeaderOrSourceFile(path):
+ if path[-2] != '.' or (path[-1] != 'h' and path[-1] != 'c'):
+ print("*** " + path + " does not end in .h or .c")
+ print("*** Move it to another list")
+ sys.exit(2)
+
def diffSource(dstLines, srcLines, src, dst):
global filesTotal, filesTotalLines, filesTotalInserts, filesTotalDeletes
#
@@ -664,7 +670,7 @@ class Module(object):
def addKernelSpaceHeaderFiles(self, files):
self.files += self.addFiles(files,
FreeBSDPathComposer(), FromFreeBSDToRTEMSHeaderConverter(),
- FromRTEMSToFreeBSDHeaderConverter(), assertHeaderFile)
+ FromRTEMSToFreeBSDHeaderConverter(), assertHeaderOrSourceFile)
def addUserSpaceHeaderFiles(self, files):
self.files += self.addFiles(files,
--
2.13.7
More information about the devel
mailing list