lint tests can now describe what they do (for the benefit of
authorPatrick Georgi <patrick@georgi-clan.de>
Thu, 18 Nov 2010 15:07:06 +0000 (15:07 +0000)
committerPatrick Georgi <patrick.georgi@coresystems.de>
Thu, 18 Nov 2010 15:07:06 +0000 (15:07 +0000)
make lint users)

Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Acked-by: Patrick Georgi <patrick@georgi-clan.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6092 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

util/lint/lint-001-no-global-config-in-romstage

index 3bb71f809fb519631ebaf065531cdd148382ef72..b48b8b47cfa071c359b2491480bf740a1fa385c6 100644 (file)
@@ -1,4 +1,5 @@
 #!/bin/sh
+# DESCR: Check that no symbols #defined in any romstage.c is used elsewhere
 DEFINES=`grep "#define" src/mainboard/*/*/romstage.c |sed 's,.*#define[\t ]\([^\t ]*\)[\t ].*,\1,' | grep -v "(" | sort -u`
 SCANBUCKET=`mktemp`
 LC_ALL=C export LC_ALL