From: Michal Soltys Date: Mon, 17 Oct 2011 21:01:49 +0000 (+0200) Subject: dracut: remove duplicate options X-Git-Tag: 014~60 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7e8228cf5aa43722d2e6a71b5593ed1478938a31;p=thirdparty%2Fdracut.git dracut: remove duplicate options '-I' and '--fwdir' were both read_arg and push_arg, and the latter has priority. Signed-off-by: Michal Soltys --- diff --git a/dracut b/dracut index 205f5d174..4bc0db33a 100755 --- a/dracut +++ b/dracut @@ -212,8 +212,6 @@ while (($# > 0)); do -c|--conf) read_arg conffile "$@" || shift;; --confdir) read_arg confdir "$@" || shift;; -L|--stdlog) read_arg stdloglvl_l "$@" || shift;; - -I|--install) read_arg install_items "$@" || shift;; - --fwdir) read_arg fw_dir_l "$@" || shift;; --compress) read_arg compress_l "$@" || shift;; --prefix) read_arg prefix_l "$@" || shift;; -f|--force) force=yes;;