b21353a00c
That sub/stage2/install2 was somewhat clumsy actually as it looked like a hierarchical thing while being a substitution thing: generic stage2 would get put in place renamed as install2. This could only get worse with hierarchical features which have already been both requested and considered for quite a time, and "stage2 at install2" reads much more naturally.
20 lines
777 B
Makefile
20 lines
777 B
Makefile
# alterator-based installer, second (livecd) stage
|
|
use/install2: use/stage2 sub/stage2@install2 use/metadata use/cleanup/installer
|
|
@$(call add_feature)
|
|
@$(call set,INSTALL2_PACKAGES,installer-distro-$$(INSTALLER)-stage2)
|
|
@$(call add,INSTALL2_PACKAGES,branding-$$(BRANDING)-alterator)
|
|
@$(call add,BASE_PACKAGES,branding-$$(BRANDING)-release)
|
|
@$(call add,BASE_LISTS,$(call tags,basesystem))
|
|
@$(call xport,BASE_BOOTLOADER)
|
|
|
|
use/install2/net: use/install2
|
|
@$(call add,INSTALL2_PACKAGES,curl)
|
|
|
|
# modern free xorg drivers for mainstream hardware requires KMS support
|
|
use/install2/kms: use/stage2/kms
|
|
@$(call add,BASE_KMODULES_REGEXP,drm.*)
|
|
|
|
# see also use/vmguest/kvm; qxl included in xorg pkglist
|
|
use/install2/kvm:
|
|
@$(call add,INSTALL2_PACKAGES,spice-vdagent xorg-drv-qxl)
|