svn commit: r239107 - head/sys/conf

Brooks Davis brooks at FreeBSD.org
Mon Aug 6 21:24:44 UTC 2012


Author: brooks
Date: Mon Aug  6 21:24:43 2012
New Revision: 239107
URL: http://svn.freebsd.org/changeset/base/239107

Log:
  MFP4 change 214967:
  	Make the process of embedding MDROOT images less perilous by
  	makeing the target that links kernel and embedding the image
  	depend on the image.  This means, if the image doesn't exist you
  	find out before you try to boot from it and that if you change
  	the image you don't have to touch some random source file to
  	cause a rebuild.
  
  	Don't hide that we're embedding the image.

Modified:
  head/sys/conf/kern.post.mk

Modified: head/sys/conf/kern.post.mk
==============================================================================
--- head/sys/conf/kern.post.mk	Mon Aug  6 21:02:40 2012	(r239106)
+++ head/sys/conf/kern.post.mk	Mon Aug  6 21:24:43 2012	(r239107)
@@ -121,7 +121,7 @@ gdbinit:
 .endif
 .endif
 
-${FULLKERNEL}: ${SYSTEM_DEP} vers.o
+${FULLKERNEL}: ${SYSTEM_DEP} vers.o ${MFS_IMAGE}
 	@rm -f ${.TARGET}
 	@echo linking ${.TARGET}
 	${SYSTEM_LD}
@@ -133,7 +133,7 @@ ${FULLKERNEL}: ${SYSTEM_DEP} vers.o
 .endif
 	${SYSTEM_LD_TAIL}
 .if defined(MFS_IMAGE)
-	@sh ${S}/tools/embed_mfs.sh ${FULLKERNEL} ${MFS_IMAGE}
+	sh ${S}/tools/embed_mfs.sh ${FULLKERNEL} ${MFS_IMAGE}
 .endif
 
 .if !exists(${.OBJDIR}/.depend)


More information about the svn-src-head mailing list