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
Ximper Linux
mkimage-profiles
Commits
b1cd8ec3
Commit
b1cd8ec3
authored
Apr 23, 2025
by
Anton Midyukov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
plymouth: add SPLASH_ARGS to be able to override
parent
b22efffc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
README
features.in/plymouth/README
+5
-0
config.mk
features.in/plymouth/config.mk
+3
-2
No files found.
features.in/plymouth/README
View file @
b1cd8ec3
...
...
@@ -5,3 +5,8 @@
с фичей branding по объективным причинам, но оформлена отдельно
для возможности собирать образы с частичным брендированием либо
"без излишеств".
Аргументы kernel cmdline 'quiet splash' можно переопределить
в переменной SPLASH_ARGS, например так:
@$(call set,SPLASH_ARGS,splash)
features.in/plymouth/config.mk
View file @
b1cd8ec3
...
...
@@ -7,6 +7,7 @@ use/plymouth/install2: use/plymouth/stage2; @:
use/plymouth:
@$(call add_feature)
@$(call try,SPLASH_ARGS,quiet splash)
# NB: *_REGEXP due to branding() using regexp and the
# dependency resolution having to occur within a
...
...
@@ -20,7 +21,7 @@ use/plymouth/stage2: use/plymouth use/branding \
@$(call add,STAGE1_PACKAGES,make-initrd-plymouth)
@$(call add,STAGE1_BRANDING,bootsplash graphics)
@$(call add,STAGE2_BRANDING,bootsplash graphics)
@$(call add,STAGE2_BOOTARGS,
quiet splash
)
@$(call add,STAGE2_BOOTARGS,
$$(SPLASH_ARGS)
)
else
use/plymouth/stage2: use/plymouth use/branding; @:
endif
...
...
@@ -32,7 +33,7 @@ endif
@$(call add,THE_BRANDING,bootsplash graphics)
@$(call add,BASE_PACKAGES,make-initrd-plymouth cpio)
ifeq (vm,$(IMAGE_CLASS))
@$(call add,BASE_BOOTARGS,
quiet splash
)
@$(call add,BASE_BOOTARGS,
$$(SPLASH_ARGS)
)
endif
use/plymouth/full: use/plymouth/stage2 use/plymouth/base; @:
...
...
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