1a8cd5ff9d
Initially, we were creating tmpfiles entries in the sysinit runlevel and again in the boot runlevel. Systemd runs the --create and --remove options in one service called systemd-tmpfiles-setup after the local file systems are mounted. Now we have a service called tmpfiles.setup which emulates this. This also closes the bug mentioned below, since we were originally writing to files that were on read-only file systems and that were not available. Reported-by: <devurandom@gmx.net> X-Gentoo-Bug: 439012 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=439012
49 lines
1.3 KiB
Makefile
49 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 \
|
|
tmpfiles.setup.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}}
|