From owner-svn-src-projects@FreeBSD.ORG Sat Mar 17 09:00:52 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 613A1106566B; Sat, 17 Mar 2012 09:00:52 +0000 (UTC) (envelope-from pawel@dawidek.net) Received: from mail.dawidek.net (60.wheelsystems.com [83.12.187.60]) by mx1.freebsd.org (Postfix) with ESMTP id CAB2B8FC1B; Sat, 17 Mar 2012 09:00:51 +0000 (UTC) Received: from localhost (89-73-195-149.dynamic.chello.pl [89.73.195.149]) by mail.dawidek.net (Postfix) with ESMTPSA id 4761C37E; Sat, 17 Mar 2012 10:00:50 +0100 (CET) Date: Sat, 17 Mar 2012 09:59:26 +0100 From: Pawel Jakub Dawidek To: Grzegorz Bernacki Message-ID: <20120317085926.GE1340@garage.freebsd.pl> References: <201203170331.q2H3VBou048384@svn.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="JcvBIhDvR6w3jUPA" Content-Disposition: inline In-Reply-To: <201203170331.q2H3VBou048384@svn.freebsd.org> X-OS: FreeBSD 10.0-CURRENT amd64 User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-src-projects@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r233075 - projects/nand/include X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Mar 2012 09:00:52 -0000 --JcvBIhDvR6w3jUPA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Mar 17, 2012 at 03:31:11AM +0000, Grzegorz Bernacki wrote: > Author: gber > Date: Sat Mar 17 03:31:11 2012 > New Revision: 233075 > URL: http://svn.freebsd.org/changeset/base/233075 >=20 > Log: > Install header files required by NANDFS > =20 > Obtained from: Semihalf > Supported by: FreeBSD Foundation, Juniper Networks >=20 > Modified: > projects/nand/include/Makefile >=20 > Modified: projects/nand/include/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- projects/nand/include/Makefile Sat Mar 17 03:28:37 2012 (r233074) > +++ projects/nand/include/Makefile Sat Mar 17 03:31:11 2012 (r233075) > @@ -43,7 +43,7 @@ LSUBDIRS=3D cam/ata cam/scsi \ > dev/ic dev/iicbus ${_dev_ieee488} dev/io dev/lmc dev/mfi dev/ofw \ > dev/pbio ${_dev_powermac_nvram} dev/ppbus dev/smbus \ > dev/speaker dev/usb dev/utopia dev/vkbd dev/wi \ > - fs/devfs fs/fdescfs fs/fifofs fs/msdosfs fs/nfs fs/ntfs fs/nullfs \ > + fs/devfs fs/fdescfs fs/msdosfs fs/nandfs fs/nfs fs/ntfs fs/nullfs \ You added nandfs, but removed fifofs. > ${_fs_nwfs} fs/portalfs fs/procfs fs/smbfs fs/udf fs/unionfs \ > geom/cache geom/concat geom/eli geom/gate geom/journal geom/label \ > geom/mirror geom/mountver geom/multipath geom/nop \ > @@ -157,7 +157,7 @@ copies: > done > .endif > .endfor > -.for i in ${LDIRS} ${LSUBDIRS:Ndev/acpica:Ndev/bktr} ${LSUBSUBDIRS} > +.for i in ${LDIRS} ${LSUBDIRS:Ndev/acpica:Ndev/bktr:Ndev/nand} ${LSUBSUB= DIRS} > cd ${.CURDIR}/../sys; \ > ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \ > ${DESTDIR}${INCLUDEDIR}/$i > @@ -168,6 +168,13 @@ copies: > cd ${.CURDIR}/../sys/dev/bktr; \ > ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \ > ${DESTDIR}${INCLUDEDIR}/dev/bktr > +.if ${MK_NAND} !=3D "no" > + cd ${.CURDIR}/../sys/dev/nand; \ > + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nandsim.h \ > + ${DESTDIR}${INCLUDEDIR}/dev/nand; \ > + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nand_cdev.h \ > + ${DESTDIR}${INCLUDEDIR}/dev/nand > +.endif > cd ${.CURDIR}/../sys/contrib/altq/altq; \ > ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ > ${DESTDIR}${INCLUDEDIR}/altq > @@ -224,7 +231,7 @@ symlinks: > ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ > done > .endfor > -.for i in ${LSUBDIRS:Ndev/acpica:Ndev/bktr} > +.for i in ${LSUBDIRS:Ndev/acpica:Ndev/bktr:Ndev/nand} > cd ${.CURDIR}/../sys/$i; \ > for h in *.h; do \ > ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ > @@ -240,6 +247,13 @@ symlinks: > ln -fs ../../../../sys/dev/bktr/$$h \ > ${DESTDIR}${INCLUDEDIR}/dev/bktr; \ > done > +.if ${MK_NAND} !=3D "no" > + cd ${.CURDIR}/../sys/dev/nand; \ > + for h in nandsim.h nand_cdev.h; do \ > + ln -fs ../../../../sys/dev/nand/$$h \ > + ${DESTDIR}${INCLUDEDIR}/dev/nand; \ > + done > +.endif > .for i in ${LSUBSUBDIRS} > cd ${.CURDIR}/../sys/$i; \ > for h in *.h; do \ --=20 Pawel Jakub Dawidek http://www.wheelsystems.com FreeBSD committer http://www.FreeBSD.org Am I Evil? Yes, I Am! http://tupytaj.pl --JcvBIhDvR6w3jUPA Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.18 (FreeBSD) iEYEARECAAYFAk9kUm4ACgkQForvXbEpPzSEbgCfX1O993JGTrvDqxYwoX3xacOM ONsAn0LVF+wuWI3DX+nzoX100gOM7DNT =p46t -----END PGP SIGNATURE----- --JcvBIhDvR6w3jUPA--