268 | egrep -v 'spellin1:' \
269 | egrep -v '^adding:' \
270 | egrep -v "^echo 'msgid" \
271 | egrep -v '^echo ' \
272 | egrep -v '\.c:$' \
273 | egrep -v '^Adding file:' \
274 | egrep -v 'CLASSPATH=' \
275 | egrep -v '\/var\/mail\/:saved' \
276 | egrep -v -- '-DUTS_VERSION=' \
277 | egrep -v '^Running Mkbootstrap' \
278 | egrep -v '^Applet length read:' \
279 | egrep -v 'bytes written:' \
280 | egrep -v '^File:SolarisAuthApplet.bin' \
281 | egrep -v -i 'jibversion' \
282 | egrep -v '^Output size:' \
283 | egrep -v '^Solo size statistics:' \
284 | egrep -v '^Using ROM API Version' \
285 | egrep -v '^Zero Signature length:' \
286 | egrep -v '^Note \(probably harmless\):' \
287 | egrep -v '::' \
288 | egrep -v -- '-xcache' \
289 | egrep -v '^\+' \
290 | egrep -v '^cc1: note: -fwritable-strings' \
291 | egrep -v 'svccfg-native -s svc:/' \
292 | sort | uniq >$SRC/${NOISE}.out
293 if [ ! -f $SRC/${NOISE}.ref ]; then
294 cp $SRC/${NOISE}.out $SRC/${NOISE}.ref
295 fi
296 echo "\n==== Build noise differences ($LABEL) ====\n" \
297 >>$mail_msg_file
298 diff $SRC/${NOISE}.ref $SRC/${NOISE}.out >>$mail_msg_file
299 fi
300
301 #
302 # Re-sign selected binaries using signing server
303 # (gatekeeper builds only)
304 #
305 if [ -n "$CODESIGN_USER" -a "$this_build_ok" = "y" ]; then
306 echo "\n==== Signing proto area at `date` ====\n" >> $LOGFILE
307 signing_file="${TMPDIR}/signing"
308 rm -f ${signing_file}
309 export CODESIGN_USER
310 signproto $SRC/tools/codesign/creds 2>&1 | \
|
268 | egrep -v 'spellin1:' \
269 | egrep -v '^adding:' \
270 | egrep -v "^echo 'msgid" \
271 | egrep -v '^echo ' \
272 | egrep -v '\.c:$' \
273 | egrep -v '^Adding file:' \
274 | egrep -v 'CLASSPATH=' \
275 | egrep -v '\/var\/mail\/:saved' \
276 | egrep -v -- '-DUTS_VERSION=' \
277 | egrep -v '^Running Mkbootstrap' \
278 | egrep -v '^Applet length read:' \
279 | egrep -v 'bytes written:' \
280 | egrep -v '^File:SolarisAuthApplet.bin' \
281 | egrep -v -i 'jibversion' \
282 | egrep -v '^Output size:' \
283 | egrep -v '^Solo size statistics:' \
284 | egrep -v '^Using ROM API Version' \
285 | egrep -v '^Zero Signature length:' \
286 | egrep -v '^Note \(probably harmless\):' \
287 | egrep -v '::' \
288 | egrep -v '^\+' \
289 | egrep -v 'svccfg-native -s svc:/' \
290 | sort | uniq >$SRC/${NOISE}.out
291 if [ ! -f $SRC/${NOISE}.ref ]; then
292 cp $SRC/${NOISE}.out $SRC/${NOISE}.ref
293 fi
294 echo "\n==== Build noise differences ($LABEL) ====\n" \
295 >>$mail_msg_file
296 diff $SRC/${NOISE}.ref $SRC/${NOISE}.out >>$mail_msg_file
297 fi
298
299 #
300 # Re-sign selected binaries using signing server
301 # (gatekeeper builds only)
302 #
303 if [ -n "$CODESIGN_USER" -a "$this_build_ok" = "y" ]; then
304 echo "\n==== Signing proto area at `date` ====\n" >> $LOGFILE
305 signing_file="${TMPDIR}/signing"
306 rm -f ${signing_file}
307 export CODESIGN_USER
308 signproto $SRC/tools/codesign/creds 2>&1 | \
|