setup-gummiboot-conf: fix the script accepted/tizen/20130730.200410 submit/tizen/20130730.133812
authorArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Mon, 29 Jul 2013 14:35:15 +0000 (17:35 +0300)
committerArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Tue, 30 Jul 2013 13:36:21 +0000 (16:36 +0300)
The script does not really work and fails when it is run in Tizen OS. The
reason is that some functions it calls are udnefined. And the reason for
that is that I forgot to remove some debugging cruft, and the leftovers
cause breakages. Remove that unused junk.

Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
setup-gummiboot-conf

index e5cc58f..20b414f 100755 (executable)
@@ -35,43 +35,6 @@ fatal()
        exit 1
 }
 
-#
-# Parse the input parameters
-#
-TEMP=`getopt -n $PROG --long default-kernel:,verbose,help -- "$@"` ||
-        fail_usage ""
-eval set -- "$TEMP"
-
-verbose=
-default_kernel=
-
-while true; do
-        case "$1" in
-        -w|--workdir)
-                mkdir $verbose -p -- "$2" >&2
-                tmpdir="$(mktemp --tmpdir="$(readlink -fv -- "$2")" -dt "$PROG.XXXX")"
-                shift
-                ;;
-        -p|--preserve)
-                preserve="--preserve"
-                ;;
-        -v|--verbose) verbose=-v
-                ;;
-        -h|--help)
-                show_usage
-                exit 0
-                ;;
-        --) shift; break
-                ;;
-        *) fail_usage "Unrecognized option: $1"
-                ;;
-        esac
-        shift
-done
-
-[ "$#" = 3 ] || fatal 'Insufficient or too many arguments.'
-
-
 # Make sure the installer framework variables are defined
 [ "${INSTALLERFW_MOUNT_PREFIX:+x}" == "x" ] ||
        fatal "installer framework environment variables not found"