4298315d0c
This one might probably change into core functionality but right now it should help when you get not the branding, init system, or whatever alternative you do _not_ need. See-also: https://bugzilla.altlinux.org/show_bug.cgi?id=30806
20 lines
781 B
Makefile
20 lines
781 B
Makefile
# TODO: invent something prettier (think "lilo+grub" -- or error out?)
|
|
# - add,BASE_PACKAGES,alterator-$* is overly additive
|
|
# NB: due to make target becoming having been made,
|
|
# the last different one wins
|
|
# - remember .base if adding yet another *_PACKAGES
|
|
|
|
# NB: "mysterious" conflicts if BASE_BOOTLOADER is empty
|
|
|
|
use/bootloader: use/pkgpriorities
|
|
@$(call add_feature)
|
|
@$(call add,BASE_PACKAGES,alterator-$$(BASE_BOOTLOADER))
|
|
@$(call add,PINNED_PACKAGES,alterator-$$(BASE_BOOTLOADER))
|
|
@$(call add,PINNED_PACKAGES,installer-bootloader-$$(BASE_BOOTLOADER)-stage2)
|
|
|
|
use/bootloader/grub use/bootloader/lilo: use/bootloader/%: use/bootloader
|
|
@$(call set,BASE_BOOTLOADER,$*)
|
|
|
|
use/bootloader/live: use/bootloader
|
|
@$(call add,LIVE_PACKAGES,alterator-$$(BASE_BOOTLOADER))
|