From 0bc3d9097b248f7ef1f3003e469c933d76295ad5 Mon Sep 17 00:00:00 2001 From: Keith Rothman <537074+litghost@users.noreply.github.com> Date: Sun, 27 Jan 2019 07:04:09 -0800 Subject: [PATCH] Add INT_INTERFACE filtering. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com> --- utils/tilegrid_report.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/utils/tilegrid_report.py b/utils/tilegrid_report.py index 3c43f0ef..08f4d984 100755 --- a/utils/tilegrid_report.py +++ b/utils/tilegrid_report.py @@ -34,6 +34,11 @@ def main(): tile_type_info.get_sites()) == 0: continue + # INT_INTERFACE tiles likely don't contain configuration? Remove this + # if this ends up false. + if 'INT_INTERFACE' in tile_type: + continue + have_bits = 0 for tile_name, gridinfo in tiles: total_tile_count += 1