Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mkimage-profiles
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Anton Palgunov
mkimage-profiles
Commits
5dff1ae8
You need to sign in or sign up before continuing.
Commit
5dff1ae8
authored
Jan 01, 2023
by
Anton Midyukov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
config.mk
features.in/syslinux/config.mk
+1
-0
generate.mk
features.in/syslinux/generate.mk
+1
-4
No files found.
features.in/syslinux/config.mk
View file @
5dff1ae8
...
@@ -7,6 +7,7 @@ use/syslinux: sub/stage1 $(ISOHYBRID:%=use/isohybrid)
...
@@ -7,6 +7,7 @@ use/syslinux: sub/stage1 $(ISOHYBRID:%=use/isohybrid)
@$(call try,BOOTVGA,normal)
@$(call try,BOOTVGA,normal)
@$(call add,SYSLINUX_FILES,/usr/lib/syslinux/pxelinux.0)
@$(call add,SYSLINUX_FILES,/usr/lib/syslinux/pxelinux.0)
@$(call try,META_SYSTEM_ID,SYSLINUX)
@$(call try,META_SYSTEM_ID,SYSLINUX)
@$(call try,SYSLINUX_UI,none)
@$(call set,RELNAME,ALT ($(IMAGE_NAME)))
@$(call set,RELNAME,ALT ($(IMAGE_NAME)))
@$(call xport,SYSLINUX_DEFAULT)
@$(call xport,SYSLINUX_DEFAULT)
else
else
...
...
features.in/syslinux/generate.mk
View file @
5dff1ae8
...
@@ -16,11 +16,8 @@ STAGE1_INITRD_BOOTARGS := $(STAGE1_INITRD_TYPEARGS)=$(STAGE1_INITRD_BOOTMETHOD)
...
@@ -16,11 +16,8 @@ STAGE1_INITRD_BOOTARGS := $(STAGE1_INITRD_TYPEARGS)=$(STAGE1_INITRD_BOOTMETHOD)
# UI is backed by modules in modern syslinux
# UI is backed by modules in modern syslinux
# (except for built-in text prompt)
# (except for built-in text prompt)
ifneq (,$(SYSLINUX_UI))
ifneq (
none
,$(SYSLINUX_UI))
SYSLINUX_MODULES := $(SYSLINUX_MODULES) $(SYSLINUX_UI)
SYSLINUX_MODULES := $(SYSLINUX_MODULES) $(SYSLINUX_UI)
else
$(warning no syslinux ui configured, default is now none)
SYSLINUX_UI := none
endif
endif
ifeq (,$(SYSLINUX_DIRECT))
ifeq (,$(SYSLINUX_DIRECT))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment