91075d008f
...instead of hardwired 0x314 (which is rather wrong for modern kernels and hardware, just ran into that with yet another Matrox G200eW WPCM450).
26 lines
694 B
Makefile
26 lines
694 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)
|
|
@$(call try,BOOTVGA,0x314)
|
|
@$(call set,RELNAME,ALT ($(IMAGE_NAME)))
|
|
|
|
# UI is overwritten
|
|
use/syslinux/ui/%: use/syslinux
|
|
@$(call set,SYSLINUX_UI,$*)
|
|
@if [ "$*" == gfxboot ]; then \
|
|
$(call add,STAGE1_PACKAGES,gfxboot); \
|
|
$(call add,STAGE1_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,$*)
|