svn commit: r355119 - head/sys/conf

Ed Maste emaste at FreeBSD.org
Tue Nov 26 20:46:20 UTC 2019


Author: emaste
Date: Tue Nov 26 20:46:20 2019
New Revision: 355119
URL: https://svnweb.freebsd.org/changeset/base/355119

Log:
  stop building arm LINT-V5 kernel
  
  r354290 removed arm.arm from universe, but arm.arm kernels were still
  found and built during the kernel stage.  r354934 tagged armv5 kernel
  configs as NO_UNIVERSE, but LINT-V5 remained.  Stop building it as well.
  Leave the clean rule in place for now so folks don't end up with a stale
  LINT-V5.
  
  Reviewed by:	imp
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D22560

Modified:
  head/sys/conf/makeLINT.mk

Modified: head/sys/conf/makeLINT.mk
==============================================================================
--- head/sys/conf/makeLINT.mk	Tue Nov 26 19:04:19 2019	(r355118)
+++ head/sys/conf/makeLINT.mk	Tue Nov 26 20:46:20 2019	(r355119)
@@ -12,6 +12,8 @@ clean:
 	rm -f LINT-NOINET LINT-NOINET6 LINT-NOIP
 .endif
 .if ${TARGET} == "arm"
+	# LINT-V5 removed 2019-11-26.  The clean rule is left here temporarily
+	# to avoid having stale copies left behind.
 	rm -f LINT-V5 LINT-V7
 .endif
 .if ${TARGET} == "powerpc"
@@ -54,8 +56,6 @@ LINT: ${NOTES} ${MAKELINT_SED}
 	echo "nodevice netmap"		>> ${.TARGET}-NOIP
 .endif
 .if ${TARGET} == "arm"
-	cat ${NOTES} ${.CURDIR}/NOTES.armv5 | sed -E -n -f ${MAKELINT_SED} > \
-	    ${.TARGET}-V5
 	cat ${NOTES} ${.CURDIR}/NOTES.armv7 | sed -E -n -f ${MAKELINT_SED} > \
 	    ${.TARGET}-V7
 	rm ${.TARGET}


More information about the svn-src-all mailing list