2019-05-12 21:55:38 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# openrc
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
OPENRC_VERSION = 0.41.2
|
|
|
|
OPENRC_SITE = $(call github,OpenRC,openrc,$(OPENRC_VERSION))
|
|
|
|
OPENRC_LICENSE = BSD-2-Clause
|
|
|
|
OPENRC_LICENSE_FILES = LICENSE
|
|
|
|
|
|
|
|
OPENRC_DEPENDENCIES = ncurses
|
|
|
|
|
|
|
|
# set LIBNAME so openrc puts files in proper directories and sets proper
|
|
|
|
# paths in installed files. Since in buildroot /lib64 and /lib32 always
|
|
|
|
# points to /lib, it's safe to hardcode it to "lib"
|
|
|
|
OPENRC_MAKE_OPTS = \
|
|
|
|
LIBNAME=lib \
|
|
|
|
LIBEXECDIR=/usr/libexec/rc \
|
|
|
|
MKPKGCONFIG=no \
|
|
|
|
MKSELINUX=no \
|
|
|
|
MKSYSVINIT=yes \
|
|
|
|
BRANDING="Buildroot $(BR2_VERSION_FULL)" \
|
|
|
|
CC=$(TARGET_CC)
|
|
|
|
|
|
|
|
ifeq ($(BR2_SHARED_LIBS),y)
|
|
|
|
OPENRC_MAKE_OPTS += MKSTATICLIBS=no
|
|
|
|
else
|
|
|
|
OPENRC_MAKE_OPTS += MKSTATICLIBS=yes
|
|
|
|
endif
|
|
|
|
|
|
|
|
define OPENRC_BUILD_CMDS
|
|
|
|
$(MAKE) $(OPENRC_MAKE_OPTS) -C $(@D)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define OPENRC_INSTALL_TARGET_CMDS
|
|
|
|
$(MAKE) $(OPENRC_MAKE_OPTS) DESTDIR=$(TARGET_DIR) -C $(@D) install
|
|
|
|
endef
|
|
|
|
|
2019-08-04 14:14:18 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_NETIFRC),y)
|
|
|
|
# netifrc replaces network, staticroute and loopback services which are
|
|
|
|
# installed by openrc
|
|
|
|
define OPENRC_NO_NET
|
|
|
|
$(RM) $(TARGET_DIR)/etc/runlevels/boot/{network,staticroute,loopback}
|
|
|
|
$(RM) $(TARGET_DIR)/etc/init.d/{network,staticroute,loopback}
|
|
|
|
$(RM) $(TARGET_DIR)/etc/conf.d/{network,staticroute,loopback}
|
|
|
|
endef
|
|
|
|
OPENRC_POST_TARGET_INSTALL_HOOKS += OPENRC_NO_NET
|
|
|
|
endif
|
|
|
|
|
2019-05-12 21:55:38 +02:00
|
|
|
define OPENRC_REMOVE_UNNEEDED
|
|
|
|
$(RM) -r $(TARGET_DIR)/usr/share/openrc
|
|
|
|
endef
|
|
|
|
OPENRC_TARGET_FINALIZE_HOOKS += OPENRC_REMOVE_UNNEEDED
|
|
|
|
|
package/openrc: add support for spawning getty
We install a template getty service, and we 'instantiate' it in the
default runlevel, using the configured tty.
Ideally, packages that provide a getty program would be responsible
for installing the corresponding service file. However, to keep
consistency with the existing init systems (busybox, systemd, and
sysv), so we do provide it from the openrc package itself.
OpenRC only acts on the files in a runlevel sub-directory, but the
documentation [0] actually suggests that the instance symlink be done
in init.d, and then again symlinked into the actual runlevel
sub-directory. So, we abide by the rules.
Also, to be noted, the getty service file is installed without ensuring
that a getty command is available. This again is not unlike other init
systems, sysvinit and busybox, which behave the same.
[0] https://wiki.gentoo.org/wiki/OpenRC
Signed-off-by: Michał Łyszczek <michal.lyszczek@bofc.pl>
[yann.morin.1998@free.fr:
- move getty template to openrc package (Thomas)
- fix namespace of the vaiables (Thomas)
- simplify creation of the defaults file
- rewrite commit log
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2019-08-04 14:14:17 +02:00
|
|
|
ifeq ($(BR2_TARGET_GENERIC_GETTY),y)
|
|
|
|
OPENRC_GETTY_SVCNAME = getty.$(SYSTEM_GETTY_PORT)
|
|
|
|
OPENRC_GETTY_CONF_D = $(TARGET_DIR)/etc/conf.d/$(OPENRC_GETTY_SVCNAME)
|
|
|
|
define OPENRC_SET_GETTY
|
|
|
|
{ \
|
|
|
|
echo "baud=\"$(SYSTEM_GETTY_BAUDRATE)\""; \
|
|
|
|
echo "term_type=\"$(SYSTEM_GETTY_TERM)\"" ; \
|
|
|
|
echo "getty_options=\"-L $(SYSTEM_GETTY_OPTIONS)\""; \
|
|
|
|
} > $(OPENRC_GETTY_CONF_D)
|
|
|
|
$(INSTALL) -D -m 0755 $(OPENRC_PKGDIR)/getty \
|
|
|
|
$(TARGET_DIR)/etc/init.d/getty
|
|
|
|
ln -sf getty $(TARGET_DIR)/etc/init.d/$(OPENRC_GETTY_SVCNAME)
|
|
|
|
ln -sf /etc/init.d/$(OPENRC_GETTY_SVCNAME) \
|
|
|
|
$(TARGET_DIR)/etc/runlevels/default/$(OPENRC_GETTY_SVCNAME)
|
|
|
|
endef
|
|
|
|
OPENRC_TARGET_FINALIZE_HOOKS += OPENRC_SET_GETTY
|
|
|
|
endif # BR2_TARGET_GENERIC_GETTY
|
|
|
|
|
2019-05-12 21:55:38 +02:00
|
|
|
$(eval $(generic-package))
|