From 9916095980423ff8a4f73ea711d72815cc3a2fb0 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 21 Jul 2013 14:37:40 +0200 Subject: [PATCH] gen_cmdline: force --udev when --plymouth is selected Plymouth requires KMS, and mdev doesn't do dynamic modules loading, while udev does. --- gen_cmdline.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gen_cmdline.sh b/gen_cmdline.sh index 4092ef0..d7cf536 100755 --- a/gen_cmdline.sh +++ b/gen_cmdline.sh @@ -42,8 +42,8 @@ longusage() { echo " --no-mrproper Do not run make mrproper before compilation" echo " --splash Install framebuffer splash support into initramfs" echo " --no-splash Do not install framebuffer splash" - echo " --plymouth Install plymouth" - echo " --no-plymouth DO not install plymouth" + echo " --plymouth Enable plymouth support (forces --udev)" + echo " --no-plymouth Do not enable plymouth support" echo " --install Install the kernel after building" echo " --no-install Do not install the kernel after building" echo " --symlink Manage symlinks in /boot for installed images" @@ -431,6 +431,7 @@ parse_cmdline() { ;; --plymouth) CMD_PLYMOUTH=1 + CMD_UDEV=1 # mdev is not really supported PLYMOUTH_THEME='text' print_info 2 "CMD_PLYMOUTH: ${CMD_PLYMOUTH}" ;;