Skip to content

Commit 6d29c92

Browse files
bpeckham64Gerrit - the friendly Code Review server
authored and
Gerrit - the friendly Code Review server
committedJun 25, 2021
Use environment variable to find unifdef tool
Tools used within the sandbox are now copied into the sandbox, see aosp/1531944. This caused the modified headers_install.sh, which is no longer installed, to point to a non-existent location. This change adds a level of indirection. The gen-headers_install.sh module no longer uses unifdef as a tool, but still modifies the headers_install.sh script, but not to point to a particular location, but to find the unifdef tool via an environment variable, LOC_UNIFDEF. Next, we modify qti_generate_kernel_headers_arm and qti_generate_kernel_headers_arm64 to need the unifdef tool (which is copied into the sandbox for these tools). We add a new --unifdef option to the kernel_headers.py script so that it can find the tool in the sandbox. The kernel_headers.py script sets the LOC_UNIFDEF environment variable before invoking the altered headers_install.sh script (also copied into the sandbox). Finally, we generate gen_headers_arm.bp and gen_headers_arm64.bp with all of these changes. Bug: 178500203 Change-Id: Ie3b8c36b7d60bd950c28bac566e04f43de78cf98 Signed-off-by: Mohammed Athar <[email protected]> Signed-off-by: Shadab Naseem <[email protected]> Signed-off-by: Srinivasarao P <[email protected]>

File tree

4 files changed

+35
-12
lines changed

4 files changed

+35
-12
lines changed
 

‎Android.bp

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ cc_binary_host {
99
genrule {
1010
name: "gen-headers_install.sh",
1111
srcs: ["scripts/headers_install.sh"],
12-
tools: ["unifdef"],
1312
out: ["headers_install.sh"],
14-
cmd: "sed 's+scripts/unifdef+$(location unifdef)+g' $(in) > $(out)",
13+
// (Ie3b8c36b7d60bd950c28bac566e04f43de78cf98,b/178500203)
14+
cmd: "sed 's+scripts/unifdef+$$LOC_UNIFDEF+g' $(in) > $(out)",
1515
}
1616

1717
cc_prebuilt_binary {

‎gen_headers_arm.bp

+5-1
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,10 @@ genrule {
10191019

10201020
genrule {
10211021
name: "qti_generate_kernel_headers_arm",
1022-
tools: ["headers_install.sh"],
1022+
tools: [
1023+
"headers_install.sh",
1024+
"unifdef",
1025+
],
10231026
tool_files: [
10241027
"kernel_headers.py",
10251028
"arch/arm/tools/syscallhdr.sh",
@@ -1044,6 +1047,7 @@ genrule {
10441047
"--arch_syscall_tool $(location arch/arm/tools/syscallhdr.sh) " +
10451048
"--arch_syscall_tbl $(location arch/arm/tools/syscall.tbl) " +
10461049
"--headers_install $(location headers_install.sh) " +
1050+
"--unifdef $(location unifdef) " +
10471051
"--include_uapi $(locations include/uapi/**/*.h)",
10481052
out: ["linux/version.h"] + gen_headers_out_arm,
10491053
}

‎gen_headers_arm64.bp

+5-1
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,10 @@ genrule {
10131013

10141014
genrule {
10151015
name: "qti_generate_kernel_headers_arm64",
1016-
tools: ["headers_install.sh"],
1016+
tools: [
1017+
"headers_install.sh",
1018+
"unifdef",
1019+
],
10171020
tool_files: [
10181021
"kernel_headers.py",
10191022
],
@@ -1035,6 +1038,7 @@ genrule {
10351038
"--new_gen_headers_bp $(location :qti_generate_gen_headers_arm64) " +
10361039
"--version_makefile $(location Makefile) " +
10371040
"--headers_install $(location headers_install.sh) " +
1041+
"--unifdef $(location unifdef) " +
10381042
"--include_uapi $(locations include/uapi/**/*.h)",
10391043
out: ["linux/version.h"] + gen_headers_out_arm64,
10401044
}

‎kernel_headers.py

+23-8
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ def gen_arch_headers(
310310
return error_count
311311

312312

313-
def run_headers_install(verbose, gen_dir, headers_install, prefix, h):
313+
def run_headers_install(verbose, gen_dir, headers_install, unifdef, prefix, h):
314314
"""Process a header through the headers_install script.
315315
316316
The headers_install script does some processing of a header so that it is
@@ -325,6 +325,7 @@ def run_headers_install(verbose, gen_dir, headers_install, prefix, h):
325325
verbose: Set True to print progress messages.
326326
gen_dir: Where to place the generated files.
327327
headers_install: The script that munges the header.
328+
unifdef: The unifdef tool used by headers_install.
328329
prefix: The prefix to strip from h to generate the output filename.
329330
h: The input header to process.
330331
Return:
@@ -344,7 +345,9 @@ def run_headers_install(verbose, gen_dir, headers_install, prefix, h):
344345
if verbose:
345346
print('run_headers_install: cmd is %s' % cmd)
346347

347-
result = subprocess.call(['sh', headers_install, h, out_h])
348+
env = os.environ.copy()
349+
env["LOC_UNIFDEF"] = unifdef
350+
result = subprocess.call(['sh', headers_install, h, out_h], env=env)
348351

349352
if result != 0:
350353
print('error: run_headers_install: cmd %s failed %d' % (cmd, result))
@@ -511,6 +514,7 @@ def gen_blueprints(
511514

512515
# Tools and tool files.
513516
headers_install_sh = 'headers_install.sh'
517+
unifdef = 'unifdef'
514518
kernel_headers_py = 'kernel_headers.py'
515519
arm_syscall_tool = 'arch/arm/tools/syscallhdr.sh'
516520

@@ -658,7 +662,10 @@ def gen_blueprints(
658662

659663
f.write('genrule {\n')
660664
f.write(' name: "qti_generate_kernel_headers_%s",\n' % header_arch)
661-
f.write(' tools: ["%s"],\n' % headers_install_sh)
665+
f.write(' tools: [\n')
666+
f.write(' "%s",\n' % headers_install_sh)
667+
f.write(' "%s",\n' % unifdef)
668+
f.write(' ],\n')
662669
f.write(' tool_files: [\n')
663670
f.write(' "%s",\n' % kernel_headers_py)
664671

@@ -692,6 +699,7 @@ def gen_blueprints(
692699
f.write(' "--arch_syscall_tbl $(location %s) " +\n' % arm_syscall_tbl)
693700

694701
f.write(' "--headers_install $(location %s) " +\n' % headers_install_sh)
702+
f.write(' "--unifdef $(location %s) " +\n' % unifdef)
695703
f.write(' "--include_uapi $(locations %s)",\n' % generic_src)
696704
f.write(' out: ["linux/version.h"] + gen_headers_out_%s,\n' % header_arch)
697705
f.write('}\n')
@@ -746,7 +754,7 @@ def headers_diff(old_file, new_file):
746754
def gen_headers(
747755
verbose, header_arch, gen_dir, arch_asm_kbuild, asm_generic_kbuild, module_dir,
748756
old_gen_headers_bp, new_gen_headers_bp, version_makefile,
749-
arch_syscall_tool, arch_syscall_tbl, headers_install, include_uapi,
757+
arch_syscall_tool, arch_syscall_tbl, headers_install, unifdef, include_uapi,
750758
arch_include_uapi, techpack_include_uapi):
751759
"""Generate the kernel headers.
752760
@@ -768,6 +776,7 @@ def gen_headers(
768776
arch_syscall_tool: The arch script that generates syscall headers.
769777
arch_syscall_tbl: The arch script that defines syscall vectors.
770778
headers_install: The headers_install tool to process input headers.
779+
unifdef: The unifdef tool used by headers_install.
771780
include_uapi: The list of include/uapi header files.
772781
arch_include_uapi: The list of arch/<arch>/include/uapi header files.
773782
Return:
@@ -795,20 +804,20 @@ def gen_headers(
795804

796805
for h in include_uapi:
797806
if not run_headers_install(
798-
verbose, gen_dir, headers_install,
807+
verbose, gen_dir, headers_install, unifdef,
799808
uapi_include_prefix, h):
800809
error_count += 1
801810

802811
for h in arch_include_uapi:
803812
if not run_headers_install(
804-
verbose, gen_dir, headers_install,
813+
verbose, gen_dir, headers_install, unifdef,
805814
arch_uapi_include_prefix, h):
806815
error_count += 1
807816

808817
for h in techpack_include_uapi:
809818
techpack_uapi_include_prefix = os.path.join(h.split('/include/uapi')[0], 'include', 'uapi') + os.sep
810819
if not run_headers_install(
811-
verbose, gen_dir, headers_install,
820+
verbose, gen_dir, headers_install, unifdef,
812821
techpack_uapi_include_prefix, h):
813822
error_count += 1
814823

@@ -935,6 +944,10 @@ def main():
935944
'--headers_install',
936945
required=True,
937946
help='The headers_install tool to process input headers.')
947+
parser_headers.add_argument(
948+
'--unifdef',
949+
required=True,
950+
help='The unifdef tool used by headers_install.')
938951
parser_headers.add_argument(
939952
'--include_uapi',
940953
required=True,
@@ -983,12 +996,14 @@ def main():
983996
print('arch_syscall_tool [%s]' % args.arch_syscall_tool)
984997
print('arch_syscall_tbl [%s]' % args.arch_syscall_tbl)
985998
print('headers_install [%s]' % args.headers_install)
999+
print('unifdef [%s]' % args.unifdef)
9861000

9871001
return gen_headers(
9881002
args.verbose, args.header_arch, args.gen_dir, args.arch_asm_kbuild,
9891003
args.asm_generic_kbuild, module_dir, args.old_gen_headers_bp, args.new_gen_headers_bp,
9901004
args.version_makefile, args.arch_syscall_tool, args.arch_syscall_tbl,
991-
args.headers_install, args.include_uapi, args.arch_include_uapi, args.techpack_include_uapi)
1005+
args.headers_install, args.unifdef, args.include_uapi, args.arch_include_uapi,
1006+
args.techpack_include_uapi)
9921007

9931008
print('error: unknown mode: %s' % args.mode)
9941009
return 1

0 commit comments

Comments
 (0)
Please sign in to comment.