# Program entry point
#
# Copyright (C) 2015 Patrick "P. J." McDermott
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
set -u
usage()
{
printf 'Usage: %s [option ...]\n' "${0}"
}
help()
{
usage
cat <.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
EOF
}
main()
{
local opt=
local ui='cli'
unset OPTARG
while getopts 'hVi:' opt; do
case "${opt}" in
'h')
help
exit
;;
'V')
version
exit
;;
'i')
ui="${OPTARG}"
;;
esac
unset OPTARG
done
shift $(($OPTIND - 1))
if [ ${#} -ne 0 ]; then
usage >&2
exit 1
fi
if ! init_ui "${ui}"; then
exit 1
fi
srand $(expr ${$} + $(date '+%s'))
temp_init
while :; do
case "$(show_menu 'Firmware Manager' 'Update firmware' \
'Exit')" in
0)
do_update
;;
1)
info 'Exiting'
break
;;
esac
done
temp_fini
exit_ui
return 0
}