Title: [9835] scripts/send-email: send-email: update uImage filter, and scrub .text offsets too
Revision
9835
Author
vapier
Date
2011-04-14 15:36:34 -0400 (Thu, 14 Apr 2011)

Log Message

send-email: update uImage filter, and scrub .text offsets too

Modified Paths


Diff

Modified: scripts/send-email (9834 => 9835)


--- scripts/send-email	2011-04-14 06:04:44 UTC (rev 9834)
+++ scripts/send-email	2011-04-14 19:36:34 UTC (rev 9835)
@@ -35,13 +35,18 @@
 
 if [ -n "${logs}" ] ; then
 	# remove any known datestamps
-	uimage_logs=$(grep -l 'Kernel: arch/blackfin/boot/vmImage is ready' ${logs} || :)
+	uimage_logs=$(grep -l '^Image Type:.*Blackfin Linux Kernel Image' ${logs} || :)
 	if [ -n "${uimage_logs}" ] ; then
 		sed -i -r \
 			-e '/^(Image Name|Created|Data Size|Entry Point):/{s|:.*|:\t<filtered>|}' \
 			${uimage_logs}
 	fi
 
+	# remove random text offsets in Section mismatch warnings
+	sed -i \
+		-e '/^WARNING:.*Section mismatch/s:[.]o[(][.]text[+]0x[0-9a-f]*[)]:.o:' \
+		${logs}
+
 	# if we're just getting the same failure, don't bother notifying
 	changed=""
 	for l in ${logs} ; do
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to