need conf/kern.post.mk review
Bjoern A. Zeeb
bzeeb-lists at lists.zabbadoz.net
Tue Jan 6 17:25:07 PST 2009
On Tue, 16 Dec 2008, Andrzej Tobola wrote:
Hi,
> If we are already on kern.port.mk what about the following patch
> which gives the posibility to instal to fs without chflags (e.g. nfs) ?
> I am using it from a long time as can be seen from time-stamps.
>
> --- /usr/src/sys/conf/kern.post.mk-OLD 2007-03-24 06:35:08.000000000 +0100
> +++ /usr/src/sys/conf/kern.post.mk 2007-11-24 23:52:03.000000000 +0100
> @@ -14,6 +14,12 @@
> .endif
> MKMODULESENV+= KERNBUILDDIR="${.CURDIR}"
>
> +.if defined(NO_FSCHG)
> +CHFLAGS= echo
> +.else
> +CHFLAGS= chflags -R noschg
> +.endif
> +
> .MAIN: all
>
> .for target in all clean cleandepend cleandir clobber depend install \
> @@ -208,11 +214,11 @@
> .if exists(${DESTDIR}${KODIR})
> -thiskernel=`sysctl -n kern.bootfile` ; \
> if [ ! "`dirname "$$thiskernel"`" -ef ${DESTDIR}${KODIR} ] ; then \
> - chflags -R noschg ${DESTDIR}${KODIR} ; \
> + ${CHFLAGS} ${DESTDIR}${KODIR} ; \
> rm -rf ${DESTDIR}${KODIR} ; \
> else \
> if [ -d ${DESTDIR}${KODIR}.old ] ; then \
> - chflags -R noschg ${DESTDIR}${KODIR}.old ; \
> + ${CHFLAGS} ${DESTDIR}${KODIR}.old ; \
> rm -rf ${DESTDIR}${KODIR}.old ; \
> fi ; \
> mv ${DESTDIR}${KODIR} ${DESTDIR}${KODIR}.old ; \
> @@ -231,7 +237,7 @@
>
>
> kernel-reinstall:
> - @-chflags -R noschg ${DESTDIR}${KODIR}
> + @-${CHFLAGS} ${DESTDIR}${KODIR}
> ${INSTALL} -p -m 555 -o root -g wheel ${KERNEL_KO} ${DESTDIR}${KODIR}
> .if defined(DEBUG) && !defined(INSTALL_NODEBUG)
> ${INSTALL} -p -m 555 -o root -g wheel ${KERNEL_KO}.symbols ${DESTDIR}${KODIR}
I cannot see why you would need any of those changes. All three places
do not care if they fail. the shell commands are using ; so the next
command is just executed and kernel-reinstall has a - which means that
a non-zero exist status is ignored.
/bz
--
Bjoern A. Zeeb The greatest risk is not taking one.
More information about the freebsd-current
mailing list