From daf939f71cdef3b4a37a7dab9ef530e7230d6103 Mon Sep 17 00:00:00 2001 From: Anton Midyukov Date: Sun, 30 Aug 2020 21:30:05 +0700 Subject: [PATCH] alt-server.mk: Not setup plymoth for not X86 Arches installer-feature-setup-plymouth needed make-initrd-plymouth. make-initrd-plymouth missing for not X86 Arches in alt-server. This resulted in a make-initrd error when installing on non-X86 Arches. --- conf.d/alt-server.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conf.d/alt-server.mk b/conf.d/alt-server.mk index f4ea29fc..440587a6 100644 --- a/conf.d/alt-server.mk +++ b/conf.d/alt-server.mk @@ -31,7 +31,9 @@ distro/alt-server: distro/.base distro/.alt-server-vnc \ @$(call add,MAIN_LISTS,centaurus/disk-dvd) @$(call add,MAIN_LISTS,centaurus/disk-server-light) @$(call add,INSTALL2_PACKAGES,installer-feature-desktop-suspend-stage2) +ifeq (,$(filter-out i586 x86_64,$(ARCH))) @$(call add,INSTALL2_PACKAGES,installer-feature-setup-plymouth) +endif @$(call add,INSTALL2_PACKAGES,strace) @$(call add,INSTALL2_PACKAGES,fdisk) @$(call add,INSTALL2_BRANDING,notes)