Author: oxygene Date: Thu Nov 18 16:07:06 2010 New Revision: 6092 URL: https://tracker.coreboot.org/trac/coreboot/changeset/6092
Log: lint tests can now describe what they do (for the benefit of make lint users)
Signed-off-by: Patrick Georgi patrick@georgi-clan.de Acked-by: Patrick Georgi patrick@georgi-clan.de
Modified: trunk/util/lint/lint-001-no-global-config-in-romstage
Modified: trunk/util/lint/lint-001-no-global-config-in-romstage ============================================================================== --- trunk/util/lint/lint-001-no-global-config-in-romstage Thu Nov 18 16:05:06 2010 (r6091) +++ trunk/util/lint/lint-001-no-global-config-in-romstage Thu Nov 18 16:07:06 2010 (r6092) @@ -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