summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2022-11-11 22:30:41 +0100
committerRicardo Wurmus <rekado@elephly.net>2022-11-11 22:33:28 +0100
commitc169a4f0fb18136f5a606d9ad5b85e7459d81273 (patch)
tree01d4f6453aca4b12db0427001bff0db64f2c4ce0
parent1dd45692107e27a9e6de4c5c107685a8329459e5 (diff)
downloadguix-c169a4f0fb18136f5a606d9ad5b85e7459d81273.tar.gz
gnu: plymouth: Change configure flags.
Remove unnecessary color flags, and set the default logo to the run directory
because /etc will not exist in the early boot process.

* gnu/packages/freedesktop.scm (plymouth)[arguments]: Remove
"--with-background-color", "--with-background-start-color-stop", and
"--with-background-end-color-stop" options; change value of "--with-logo"
option.
-rw-r--r--gnu/packages/freedesktop.scm9
1 files changed, 1 insertions, 8 deletions
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index e950dcf7cb..2ec01f0f5f 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -2234,14 +2234,7 @@ Its features include:
     (arguments
      (list
       #:configure-flags
-      '(list (string-append "--with-logo="
-                            "/etc/plymouth/logo.png")
-             (string-append "--with-background-color="
-                            "0x00ff00")
-             (string-append "--with-background-start-color-stop="
-                            "0xff0000")
-             (string-append "--with-background-end-color-stop="
-                            "0x0000ff")
+      '(list "--with-logo=/var/run/plymouth/logo.png"
              "--localstatedir=/var"
              "--with-boot-tty=/dev/console"
              "--without-system-root-install"