]> Pileus Git - ~andy/linux/blobdiff - scripts/bloat-o-meter
Merge remote-tracking branch 'regulator/topic/constraints' into regulator-linus
[~andy/linux] / scripts / bloat-o-meter
index 855198c9dedbedce3083cf651b61142da399134f..549d0ab8c66204ec8db65de3d48ce619f7dee925 100755 (executable)
@@ -19,7 +19,8 @@ def getsizes(file):
         size, type, name = l[:-1].split()
         if type in "tTdDbBrR":
             # strip generated symbols
-            if name[:6] == "__mod_": continue
+            if name.startswith("__mod_"): continue
+            if name == "linux_banner": continue
             # statics and some other optimizations adds random .NUMBER
             name = re.sub(r'\.[0-9]+', '', name)
             sym[name] = sym.get(name, 0) + int(size, 16)