annotate scripts/findglobals.sh @ 884:ac9991f66d0d

Add firmware field to modinfo output.
author idunham@lavabit.com
date Sat, 27 Apr 2013 00:57:11 -0500
parents a3268a1c055e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
880
a3268a1c055e Quick sniff test to find leaked global variables.
Rob Landley <rob@landley.net>
parents:
diff changeset
1 #!/bin/bash
a3268a1c055e Quick sniff test to find leaked global variables.
Rob Landley <rob@landley.net>
parents:
diff changeset
2
a3268a1c055e Quick sniff test to find leaked global variables.
Rob Landley <rob@landley.net>
parents:
diff changeset
3 # Quick and dirty check to see if anybody's leaked global variables.
a3268a1c055e Quick sniff test to find leaked global variables.
Rob Landley <rob@landley.net>
parents:
diff changeset
4 # We should have this, toy_list, toybuf, and toys.
a3268a1c055e Quick sniff test to find leaked global variables.
Rob Landley <rob@landley.net>
parents:
diff changeset
5
a3268a1c055e Quick sniff test to find leaked global variables.
Rob Landley <rob@landley.net>
parents:
diff changeset
6 nm toybox_unstripped | grep '[0-9A-Fa-f]* [BCDGRS]' | cut -d ' ' -f 3