b5e6906b56
- incompatible change (to fix the rather broken early style): use/syslinux/ui-% is now use/syslinux/ui/%; - default timeout changed to 9 seconds (long enough and keeps the countdown in a single figure); - added totaltimeout of 300 seconds; - provided live kiosk images with almost-instant boot by default; ...and some other assorted tweaks here and there, sorry.
24 lines
646 B
Makefile
24 lines
646 B
Makefile
# default is plain text prompt
|
|
use/syslinux: sub/stage1
|
|
@$(call add_feature)
|
|
@$(call add,STAGE1_PACKAGES,syslinux)
|
|
@$(call try,META_SYSTEM_ID,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,$*)
|
|
|
|
use/syslinux/timeout/%: use/syslinux
|
|
@$(call set,SYSLINUX_TIMEOUT,$*)
|