bc2a4025d8
When installer-feature-systemd-stage3 hits BASE_PACKAGES it pulls install2-init-functions in which is wrong (one of the consequences is that alterator-browser-qt lands into even a very basic server installation). And install2 doesn't even need that package as init feature carries a script hook that does the same...
22 lines
683 B
Makefile
22 lines
683 B
Makefile
+sysvinit: use/init/sysv; @:
|
|
+systemd: use/init/systemd; @:
|
|
|
|
use/init:
|
|
@$(call add_feature)
|
|
@$(call add,THE_LISTS,$$(INIT_TYPE))
|
|
|
|
# THE_LISTS is too late when BASE_PACKAGES have pulled in
|
|
# the wrong syslogd-daemon provider already
|
|
use/init/sysv: use/init
|
|
@$(call set,INIT_TYPE,sysvinit)
|
|
@$(call add,BASE_PACKAGES,syslogd)
|
|
@$(call add,BASE_PACKAGES_REGEXP,^systemd- ^systemd-services-)
|
|
|
|
### i-f should be dropped as soon as rootfs scripts are effective there
|
|
use/init/systemd: use/init
|
|
@$(call set,INIT_TYPE,systemd)
|
|
@$(call add,INSTALL2_PACKAGES,installer-feature-journald-tty)
|
|
|
|
use/init/systemd/debug: use/init/systemd use/services
|
|
@$(call add,SERVICES_ENABLE,debug-shell)
|