scripts: logging: include pinned rodata in database
This adds "pinned.rodata" into the string database so this will work with pinned rodata section. Signed-off-by: Daniel Leung <daniel.leung@intel.com>
This commit is contained in:
parent
9b9001956f
commit
0c32256b00
1 changed files with 6 additions and 1 deletions
|
@ -32,7 +32,12 @@ logger = logging.getLogger(os.path.basename(sys.argv[0]))
|
|||
|
||||
|
||||
# Sections that contains static strings
|
||||
STATIC_STRING_SECTIONS = ['rodata', '.rodata', 'log_strings_sections']
|
||||
STATIC_STRING_SECTIONS = [
|
||||
'rodata',
|
||||
'.rodata',
|
||||
'pinned.rodata',
|
||||
'log_strings_sections'
|
||||
]
|
||||
|
||||
|
||||
def parse_args():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue