mirror of
https://gitlab.freedesktop.org/plymouth/plymouth.git
synced 2026-05-09 07:08:01 +02:00
[populate-initrd] Don't require set_verbose function
If it's not around, define it, so we can use it without error
This commit is contained in:
parent
d8156feb0d
commit
3c2e1453d9
1 changed files with 4 additions and 0 deletions
|
|
@ -28,6 +28,10 @@ if [ " $(type -t inst) " != " function " ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if [ " $(type -t set_verbose) " != " function " ]; then
|
||||
function set_verbose { true; }
|
||||
fi
|
||||
|
||||
function usage() {
|
||||
local output="/dev/stdout"
|
||||
local rc=0
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue