92ba48e7c1
Still have to refer to MCST instead at the moment... Fixes: f1c5f98795a698fdd665c7286f15d6e023195200
33 lines
1008 B
Makefile
33 lines
1008 B
Makefile
# NB: release part of branding goes to install2 feature
|
|
use/branding:
|
|
@$(call add_feature)
|
|
|
|
# license notes, if any
|
|
use/branding/notes: use/branding
|
|
ifneq (,$(filter-out e2k%,$(ARCH)))
|
|
@$(call add,THE_BRANDING,notes)
|
|
endif
|
|
|
|
# NB: not every distro might have all the branding of its own
|
|
use/branding/full: use/branding/notes use/syslinux/ui/gfxboot \
|
|
use/grub/ui/gfxboot
|
|
@$(call add,THE_BRANDING,alterator graphics)
|
|
@$(call add,THE_BRANDING,indexhtml slideshow)
|
|
ifeq (,$(filter-out i586 x86_64 aarch64,$(ARCH)))
|
|
@$(call add,THE_BRANDING,bootloader)
|
|
endif
|
|
ifeq (,$(filter-out i586 x86_64,$(ARCH)))
|
|
@$(call add,THE_BRANDING,bootsplash)
|
|
endif
|
|
|
|
use/branding/complete: use/branding/full use/plymouth/full
|
|
@$(call add,INSTALL2_BRANDING,slideshow)
|
|
ifneq (,$(filter-out e2k%,$(ARCH)))
|
|
@$(call add,INSTALL2_BRANDING,notes)
|
|
endif
|
|
|
|
# http://altlinux.org/branding/slideshow
|
|
use/branding/slideshow/once: use/branding
|
|
@$(call add,INSTALL2_BRANDING_SLIDESHOW,once:true)
|
|
@$(call xport,INSTALL2_BRANDING_SLIDESHOW)
|