From 2b2075ffd7f993d4976aa10d3db884c6e075e1ad Mon Sep 17 00:00:00 2001 From: Anton Midyukov Date: Fri, 28 Apr 2023 15:13:41 +0700 Subject: [PATCH] install2: add lvm2, cryptsetup to use/install2/full Now lvm and cryptsetup are required not only in the installed system, but also in altinst. This is because the remount happens before the base system is installed. --- features.in/install2/config.mk | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/features.in/install2/config.mk b/features.in/install2/config.mk index 6526ce83d..779593191 100644 --- a/features.in/install2/config.mk +++ b/features.in/install2/config.mk @@ -24,11 +24,20 @@ use/install2: use/stage2 sub/stage2@install2 use/metadata \ # doesn't use/install2/fs on purpose (at least so far) use/install2/full: \ use/install2/packages use/install2/vmguest use/install2/tools \ + use/install2/lvm use/install2/cryptsetup \ use/syslinux/localboot.cfg use/grub/localboot_bios.cfg \ use/syslinux/ui/menu use/bootloader @$(call add,INSTALL2_PACKAGES,xorg-drv-synaptics) @$(call add,INSTALL2_PACKAGES,xorg-drv-libinput) +use/install2/lvm: use/install2 + @$(call add,INSTALL2_PACKAGES,lvm2) + @$(call add,BASE_PACKAGES,lvm2) + +use/install2/cryptsetup: use/install2 + @$(call add,INSTALL2_PACKAGES,cryptsetup) + @$(call add,BASE_PACKAGES,cryptsetup) + # for distributions with their own -stage3 installer part use/install2/stage3: use/install2 @$(call add,BASE_PACKAGES,installer-$$(INSTALLER)-stage3)