b7e824b742
I don't see any reason to use systemd within VM images, and it would stick its journal as a syslog implementation when not ditched explicitly :-/
15 lines
392 B
Makefile
15 lines
392 B
Makefile
# virtual machines
|
|
ifeq (vm,$(IMAGE_CLASS))
|
|
|
|
vm/bare: vm/.bare +sysvinit
|
|
@$(call add,BASE_PACKAGES,apt)
|
|
|
|
vm/net: vm/bare use/net-eth/dhcp use/net-ssh use/repo
|
|
@$(call add,BASE_PACKAGES,su)
|
|
|
|
# NB: use/x11 employs some installer-feature packages
|
|
vm/icewm: vm/net use/cleanup/installer use/repo use/deflogin/altlinuxroot \
|
|
use/x11/xorg use/x11/lightdm/gtk use/x11-autologin +icewm; @:
|
|
|
|
endif
|