79d6f10926
Modify the swap script so it starts before and stops after localmount. Also, on linux, this script should skip mounting swap on loopback. Add a swapfiles script which runs after localmount and is designed to activate additional swap space which could not be activated before localmount was run. This includes loopback swap on linux and swapfiles which are on local file systems that were not mounted when swap was activated initially. The start code does reactivate swap that is already active, but this is not an error condition. Reported-by: Giampaolo Tomassoni <giampaolo@tomassoni.biz> X-Gentoo-Bug: 401003 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=401003
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
DIR= ${INITDIR}
|
|
SRCS= bootmisc.in fsck.in hostname.in local.in localmount.in netmount.in \
|
|
network.in root.in savecache.in staticroute.in swap.in swapfiles.in \
|
|
swclock.in sysctl.in urandom.in ${SRCS-${OS}}
|
|
BIN= ${OBJS}
|
|
|
|
INSTALLAFTER= _installafter_net.lo
|
|
CLEANFILES+= net.lo
|
|
TARGETS+= net.lo
|
|
|
|
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 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}}
|