add main branch files

This commit is contained in:
樱檩殇雪
2025-03-17 02:38:37 +08:00
commit a6e3221bdc
360 changed files with 44453 additions and 0 deletions

10
scripts/abi_gki_all.py Normal file
View File

@@ -0,0 +1,10 @@
from xml.dom.minidom import parse
import xml.dom.minidom
import sys
DOMTree = xml.dom.minidom.parse(sys.argv[1])
symbols = DOMTree.getElementsByTagName("elf-symbol")
print("[abi_symbol_list]")
for symbol in symbols:
print(" " + symbol.getAttribute("name"))