mkdumprd: remove --debug

dracut args pass through will be introduced later, remove this firstly.

Signed-off-by: Dave Young <dyoung@redhat.com>
Acked-by: Vivek Goyal <vgoyal@redhat.com>
This commit is contained in:
Dave Young 2012-06-06 16:24:32 +08:00
parent d88c0390b8
commit 7e82b251c6

View File

@ -60,19 +60,6 @@ check_size() {
fi
}
while [ $# -gt 0 ]; do
case $1 in
--debug)
add_dracut_arg "-v"
set -x
shift
;;
*)
break
;;
esac
done
# Generic substring function. If $2 is in $1, return 0.
strstr() { [[ $1 =~ $2 ]]; }