ANDROID: GKI: Fix symbol list wildcard

Update target dependencies for the vendor symbol list to
generate gki_module_unprotected.h with an extra _ for
the wildcard. This makes sure that all abi_gki_aarch64_<vendor>
files are being depend on but not abi_gki_aarch64.xml

Bug: 261722616
Bug: 232430739
Test: TH
Fixes: 0a903fe828 ("ANDROID: GKI: Header generation fix and
improvements")
Change-Id: Ic414492b1fcae14d41df234e73d0fd4601e33523
Signed-off-by: Ramji Jiyani <ramjiyani@google.com>
This commit is contained in:
Ramji Jiyani
2023-01-31 20:14:41 +00:00
committed by Treehugger Robot
parent f778eefc01
commit 2dcd9378ef

View File

@@ -175,7 +175,7 @@ $(obj)/gki_module_unprotected.h: $(ALL_KMI_SYMBOLS) \
$(ALL_KMI_SYMBOLS) $(ALL_KMI_SYMBOLS)
# Generate symbol list with union of all symbol list for arm64; empty for others # Generate symbol list with union of all symbol list for arm64; empty for others
$(ALL_KMI_SYMBOLS): $(if $(filter arm64,$(ARCH)),$(wildcard $(srctree)/android/abi_gki_aarch64*),) $(ALL_KMI_SYMBOLS): $(if $(filter arm64,$(ARCH)),$(wildcard $(srctree)/android/abi_gki_aarch64_*),)
$(if $(strip $^),cat $^ > $(ALL_KMI_SYMBOLS), echo "" > $(ALL_KMI_SYMBOLS)) $(if $(strip $^),cat $^ > $(ALL_KMI_SYMBOLS), echo "" > $(ALL_KMI_SYMBOLS))
$(obj)/gki_module_protected_exports.h: $(srctree)/android/abi_gki_protected_exports \ $(obj)/gki_module_protected_exports.h: $(srctree)/android/abi_gki_protected_exports \