Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Feb 2015 16:04:09 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r278460 - head/sys/conf
Message-ID:  <201502091604.t19G49Yh017650@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Mon Feb  9 16:04:08 2015
New Revision: 278460
URL: https://svnweb.freebsd.org/changeset/base/278460

Log:
  We need to create /boot/dtb since some use cases don't create a full
  root with BSD.root.mtree, so it often times will not exist. Rather
  than force the latter for an installkernel, just create the directory
  with a comment about why.
  
  Submitted by: Guy Yur

Modified:
  head/sys/conf/dtb.mk

Modified: head/sys/conf/dtb.mk
==============================================================================
--- head/sys/conf/dtb.mk	Mon Feb  9 16:04:01 2015	(r278459)
+++ head/sys/conf/dtb.mk	Mon Feb  9 16:04:08 2015	(r278460)
@@ -67,6 +67,10 @@ CLEANFILES+=${_dts:R:S/$/.dtb/}
 realinstall: _dtbinstall
 .ORDER: beforeinstall _kmodinstall
 _dtbinstall:
+# Need to create this because installkernel doens't invoke mtree with BSD.root.mtree
+# to make sure the tree is setup properly. This may break ownership of ${DTBDIR}
+# for no-root build.
+	mkdir -p ${DESTDIR}${DTBDIR}
 .for _dtb in ${DTB}
 	${INSTALL} -o ${DTBOWN} -g ${DTBGRP} -m ${DTBMODE} \
 	    ${_INSTALLFLAGS} ${_dtb} ${DESTDIR}${DTBDIR}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502091604.t19G49Yh017650>