From: Artem Bityutskiy Date: Mon, 29 Jul 2013 14:35:15 +0000 (+0300) Subject: setup-gummiboot-conf: fix the script X-Git-Tag: accepted/tizen/20130730.200410^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0e938f5864f3ec0f7692a469e99d584bcd71d292;p=profile%2Fivi%2Fsetup-efi-ivi.git setup-gummiboot-conf: fix the script 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 --- diff --git a/setup-gummiboot-conf b/setup-gummiboot-conf index e5cc58f..20b414f 100755 --- a/setup-gummiboot-conf +++ b/setup-gummiboot-conf @@ -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"