9c883d39b6
ToC: - introduced doc/ - features.in/00example/ - READMEs and TODO for more - code comments clarified Some unrelated minor fixes bundled either.
20 lines
535 B
Makefile
20 lines
535 B
Makefile
# default is plain text prompt
|
|
use/syslinux:
|
|
@$(call add,FEATURES,syslinux)
|
|
@$(call add,STAGE1_PACKAGES,syslinux)
|
|
|
|
# UI is overwritten
|
|
use/syslinux/ui-%: use/syslinux
|
|
@$(call set,SYSLINUX_UI,$*)
|
|
@if [ "$*" == gfxboot ]; then \
|
|
$(call add,STAGE1_PACKAGES,gfxboot); \
|
|
$(call add,STAGE1_PACKAGES,branding-$$(BRANDING)-bootloader); \
|
|
fi
|
|
|
|
# modules and config snippets just add up
|
|
use/syslinux/%.com use/syslinux/%.c32: use/syslinux
|
|
@$(call add,SYSLINUX_MODULES,$*)
|
|
|
|
use/syslinux/%.cfg: use/syslinux
|
|
@$(call add,SYSLINUX_CFG,$*)
|