chiark / gitweb /
kernel-install: filter out "initrd=" from /proc/cmdline
authorHarald Hoyer <harald@redhat.com>
Thu, 20 Jun 2013 13:46:37 +0000 (15:46 +0200)
committerHarald Hoyer <harald@redhat.com>
Thu, 20 Jun 2013 13:47:19 +0000 (15:47 +0200)
src/kernel-install/90-loaderentry.install

index 55b4d24672e1046a4923f2e683a39d90baff884a..6fbb14908a596301702fc2bd96084aabc8a6d3eb 100644 (file)
@@ -38,15 +38,22 @@ if ! [[ $PRETTY_NAME ]]; then
     PRETTY_NAME="Linux $KERNEL_VERSION"
 fi
 
+declare -a BOOT_OPTIONS
+
 if [[ -f /etc/kernel/cmdline ]]; then
     readarray -t BOOT_OPTIONS < /etc/kernel/cmdline
 fi
 
 if ! [[ ${BOOT_OPTIONS[*]} ]]; then
-    readarray -t BOOT_OPTIONS < /proc/cmdline
+    readarray -t line < /proc/cmdline
+    for i in ${line[*]}; do
+        if [[ "${i#initrd=*}" == "$i" ]]; then
+            BOOT_OPTIONS[${#BOOT_OPTIONS[@]}]="$i"
+        fi
+    done
 fi
 
-if ! [[ $BOOT_OPTIONS ]]; then
+if ! [[ ${BOOT_OPTIONS[*]} ]]; then
     echo "Could not determine the kernel command line parameters." >&2
     echo "Please specify the kernel command line in /etc/kernel/cmdline!" >&2
     exit 1