Commit 5dff1ae8 authored by Anton Midyukov's avatar Anton Midyukov

syslinux: try SYSLINUX_UI to none

Instead of showing a warning, it is better to explicitly specify the SYSLINUX_UI=none option in the config.
parent 8e4d9490
......@@ -7,6 +7,7 @@ use/syslinux: sub/stage1 $(ISOHYBRID:%=use/isohybrid)
@$(call try,BOOTVGA,normal)
@$(call add,SYSLINUX_FILES,/usr/lib/syslinux/pxelinux.0)
@$(call try,META_SYSTEM_ID,SYSLINUX)
@$(call try,SYSLINUX_UI,none)
@$(call set,RELNAME,ALT ($(IMAGE_NAME)))
@$(call xport,SYSLINUX_DEFAULT)
else
......
......@@ -16,11 +16,8 @@ STAGE1_INITRD_BOOTARGS := $(STAGE1_INITRD_TYPEARGS)=$(STAGE1_INITRD_BOOTMETHOD)
# UI is backed by modules in modern syslinux
# (except for built-in text prompt)
ifneq (,$(SYSLINUX_UI))
ifneq (none,$(SYSLINUX_UI))
SYSLINUX_MODULES := $(SYSLINUX_MODULES) $(SYSLINUX_UI)
else
$(warning no syslinux ui configured, default is now none)
SYSLINUX_UI := none
endif
ifeq (,$(SYSLINUX_DIRECT))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment