|
@@ -19,31 +19,33 @@ import re
|
|
|
import subprocess
|
|
|
import sys
|
|
|
|
|
|
-def run_headers_install(verbose, gen_dir, headers_install, prefix, h):
|
|
|
+def run_headers_install(verbose, gen_dir, headers_install, unifdef, prefix, h):
|
|
|
if not h.startswith(prefix):
|
|
|
print('error: expected prefix [%s] on header [%s]' % (prefix, h))
|
|
|
return False
|
|
|
|
|
|
out_h = os.path.join(gen_dir, h[len(prefix):])
|
|
|
(out_h_dirname, out_h_basename) = os.path.split(out_h)
|
|
|
- cmd = ["bash", headers_install, h, out_h]
|
|
|
+ env = os.environ.copy()
|
|
|
+ env["LOC_UNIFDEF"] = unifdef
|
|
|
+ cmd = ["sh", headers_install, h, out_h]
|
|
|
|
|
|
if verbose:
|
|
|
print('run_headers_install: cmd is %s' % cmd)
|
|
|
|
|
|
- result = subprocess.call(cmd)
|
|
|
+ result = subprocess.call(cmd, env=env)
|
|
|
|
|
|
if result != 0:
|
|
|
print('error: run_headers_install: cmd %s failed %d' % (cmd, result))
|
|
|
return False
|
|
|
return True
|
|
|
|
|
|
-def gen_display_headers(verbose, gen_dir, headers_install, display_include_uapi):
|
|
|
+def gen_display_headers(verbose, gen_dir, headers_install, unifdef, display_include_uapi):
|
|
|
error_count = 0
|
|
|
for h in display_include_uapi:
|
|
|
display_uapi_include_prefix = os.path.join(h.split('/include/uapi')[0], 'include', 'uapi') + os.sep
|
|
|
if not run_headers_install(
|
|
|
- verbose, gen_dir, headers_install,
|
|
|
+ verbose, gen_dir, headers_install, unifdef,
|
|
|
display_uapi_include_prefix, h): error_count += 1
|
|
|
return error_count
|
|
|
|
|
@@ -69,6 +71,10 @@ def main():
|
|
|
parser.add_argument(
|
|
|
'--headers_install', required=True,
|
|
|
help='The headers_install tool to process input headers.')
|
|
|
+ parser.add_argument(
|
|
|
+ '--unifdef',
|
|
|
+ required=True,
|
|
|
+ help='The unifdef tool used by headers_install.')
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
@@ -77,9 +83,10 @@ def main():
|
|
|
print('gen_dir [%s]' % args.gen_dir)
|
|
|
print('display_include_uapi [%s]' % args.display_include_uapi)
|
|
|
print('headers_install [%s]' % args.headers_install)
|
|
|
+ print('unifdef [%s]' % args.unifdef)
|
|
|
|
|
|
return gen_display_headers(args.verbose, args.gen_dir,
|
|
|
- args.headers_install, args.display_include_uapi)
|
|
|
+ args.headers_install, args.unifdef, args.display_include_uapi)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
sys.exit(main())
|