From: Ray Strode Date: Thu, 10 Sep 2009 13:54:44 +0000 (-0400) Subject: [populate-initrd] Don't require set_verbose function X-Git-Tag: 0.7.2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c2e1453d9652bbe6a29d89edd80664b87ab7271;p=thirdparty%2Fplymouth.git [populate-initrd] Don't require set_verbose function If it's not around, define it, so we can use it without error --- diff --git a/scripts/plymouth-populate-initrd.in b/scripts/plymouth-populate-initrd.in index dd502b9f..dcf2b427 100755 --- a/scripts/plymouth-populate-initrd.in +++ b/scripts/plymouth-populate-initrd.in @@ -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