kernel: export customized symbols (#58)
This commit is contained in:
10
scripts/abi_gki_all.py
Normal file
10
scripts/abi_gki_all.py
Normal 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"))
|
||||
Reference in New Issue
Block a user