sanitycheck: Recognize native IP stack specific sections

Without these, test case will fail miserably.

Change-Id: Ib46d167b8782c33362ac6edb9d8c50abc25908c0
Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
Tomasz Bursztyka 2016-06-20 12:09:37 +02:00 committed by Jukka Rissanen
commit 11f572c9e1

View file

@ -466,7 +466,8 @@ class SizeCalculator:
"_k_msgq_area", "_k_mbox_area", "_k_pipe_area"] "_k_msgq_area", "_k_mbox_area", "_k_pipe_area"]
# These get copied into RAM only on non-XIP # These get copied into RAM only on non-XIP
ro_sections = ["text", "ctors", "init_array", "reset", ro_sections = ["text", "ctors", "init_array", "reset",
"rodata", "devconfig"] "rodata", "devconfig",
"net_if", "net_l2", "net_nbr"]
def __init__(self, filename, extra_sections): def __init__(self, filename, extra_sections):
"""Constructor """Constructor