7eb3975543
These services represent the parts of the keymaps and termencoding services which saved the settings back to the root file system so they can be loaded very early in the boot process. These are needed to allow keymaps and termencoding to run earlier in the boot sequence. X-Gentoo-Bug: 446018 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=446018
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
include ../mk/net.mk
|
|
|
|
DIR= ${INITDIR}
|
|
SRCS= bootmisc.in fsck.in hostname.in local.in localmount.in loopback.in \
|
|
netmount.in osclock.in root.in savecache.in swap.in swclock.in \
|
|
sysctl.in runsvdir.in urandom.in s6-svscan.in ${SRCS-${OS}}
|
|
BIN= ${OBJS}
|
|
|
|
# Are we installing our network scripts?
|
|
ifeq (${MKNET},yes)
|
|
SRCS+= network.in staticroute.in
|
|
endif
|
|
|
|
MK= ../mk
|
|
include ${MK}/os.mk
|
|
|
|
# Generic BSD scripts
|
|
SRCS-FreeBSD= hostid.in modules.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
|
|
|
|
SRCS-Linux= agetty.in binfmt.in devfs.in cgroups.in dmesg.in hwclock.in \
|
|
consolefont.in keymaps.in killprocs.in modules.in \
|
|
mount-ro.in mtab.in numlock.in procfs.in net-online.in save-keymaps.in \
|
|
save-termencoding.in sysfs.in termencoding.in
|
|
|
|
# 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
|
|
|
|
include ${MK}/scripts.mk
|
|
|
|
_installafter_: realinstall
|