Now that the tmpfiles.d code is more tested, actually call it from init.d. It assumes that /run is already available when it runs. Please note it runs TWICE. - During sysinit, ideally just after /dev/shm is created, but before udev has started. After udev is also acceptable, but not ideal. - During boot, ideally just after localmount has completed. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
DIR=	${INITDIR}
 | 
						|
SRCS=	bootmisc.in fsck.in hostname.in local.in localmount.in netmount.in \
 | 
						|
	root.in savecache.in swap.in swapfiles.in \
 | 
						|
	tmpfilesd.boot.in tmpfilesd.sysinit.in \
 | 
						|
	swclock.in sysctl.in urandom.in ${SRCS-${OS}}
 | 
						|
BIN=	${OBJS}
 | 
						|
 | 
						|
# Build our old net foo or not
 | 
						|
ifeq (${MKNET},)
 | 
						|
SRCS+= network.in staticroute.in
 | 
						|
endif
 | 
						|
 | 
						|
ifeq (${MKNET},oldnet)
 | 
						|
INSTALLAFTER=	_installafter_net.lo
 | 
						|
SRCS+= net.lo.in
 | 
						|
endif
 | 
						|
 | 
						|
MK=	../mk
 | 
						|
include ${MK}/os.mk
 | 
						|
 | 
						|
NET_LO-FreeBSD=	net.lo0
 | 
						|
# Generic BSD scripts
 | 
						|
SRCS-FreeBSD=	hostid.in moused.in newsyslog.in pf.in rarpd.in rc-enabled.in \
 | 
						|
		rpcbind.in savecore.in syslogd.in
 | 
						|
# These are FreeBSD specific
 | 
						|
SRCS-FreeBSD+=	adjkerntz.in devd.in dumpon.in encswap.in ipfw.in \
 | 
						|
		mixer.in nscd.in powerd.in syscons.in
 | 
						|
 | 
						|
NET_LO-Linux=	net.lo
 | 
						|
SRCS-Linux=	devfs.in dmesg.in hwclock.in consolefont.in keymaps.in \
 | 
						|
		killprocs.in modules.in mount-ro.in mtab.in numlock.in \
 | 
						|
		procfs.in sysfs.in termencoding.in
 | 
						|
 | 
						|
NET_LO-NetBSD=	net.lo0
 | 
						|
# Generic BSD scripts
 | 
						|
SRCS-NetBSD=	hostid.in moused.in newsyslog.in pf.in rarpd.in rc-enabled.in \
 | 
						|
		rpcbind.in savecore.in syslogd.in
 | 
						|
# These are NetBSD specific
 | 
						|
SRCS-NetBSD+=	devdb.in swap-blk.in ttys.in wscons.in
 | 
						|
 | 
						|
%.in: %${SFX}
 | 
						|
	sed ${SED_REPLACE} ${SED_EXTRA} $< > $@
 | 
						|
 | 
						|
include ${MK}/scripts.mk
 | 
						|
 | 
						|
_installafter_: realinstall
 | 
						|
 | 
						|
_installafter_net.lo: realinstall
 | 
						|
	${INSTALL} -m ${BINMODE} net.lo ${DESTDIR}/${INITDIR}/${NET_LO-${OS}}
 |