Blame 0080-dracut-remove-duplicate-options.patch

Harald Hoyer 55891e
From 7e8228cf5aa43722d2e6a71b5593ed1478938a31 Mon Sep 17 00:00:00 2001
Harald Hoyer 55891e
From: Michal Soltys <soltys@ziu.info>
Harald Hoyer 55891e
Date: Mon, 17 Oct 2011 23:01:49 +0200
Harald Hoyer 55891e
Subject: [PATCH] dracut: remove duplicate options
Harald Hoyer 55891e
Harald Hoyer 55891e
'-I' and '--fwdir' were both read_arg and push_arg, and the latter has
Harald Hoyer 55891e
priority.
Harald Hoyer 55891e
Harald Hoyer 55891e
Signed-off-by: Michal Soltys <soltys@ziu.info>
Harald Hoyer 55891e
---
Harald Hoyer 55891e
 dracut |    2 --
Harald Hoyer 55891e
 1 files changed, 0 insertions(+), 2 deletions(-)
Harald Hoyer 55891e
Harald Hoyer 55891e
diff --git a/dracut b/dracut
Harald Hoyer 55891e
index 205f5d1..4bc0db3 100755
Harald Hoyer 55891e
--- a/dracut
Harald Hoyer 55891e
+++ b/dracut
Harald Hoyer 55891e
@@ -212,8 +212,6 @@ while (($# > 0)); do
Harald Hoyer 55891e
         -c|--conf)     read_arg conffile             "$@" || shift;;
Harald Hoyer 55891e
         --confdir)     read_arg confdir              "$@" || shift;;
Harald Hoyer 55891e
         -L|--stdlog)   read_arg stdloglvl_l          "$@" || shift;;
Harald Hoyer 55891e
-        -I|--install)  read_arg install_items        "$@" || shift;;
Harald Hoyer 55891e
-        --fwdir)       read_arg fw_dir_l             "$@" || shift;;
Harald Hoyer 55891e
         --compress)    read_arg compress_l           "$@" || shift;;
Harald Hoyer 55891e
         --prefix)      read_arg prefix_l             "$@" || shift;;
Harald Hoyer 55891e
         -f|--force)    force=yes;;