/usr/bin/usb-creator-gtk is in usb-creator-gtk 0.2.56.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | #!/usr/bin/python3
# Copyright (C) 2009 Canonical Ltd.
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 3,
# as published by the Free Software Foundation.
#
# 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 <http://www.gnu.org/licenses/>.
import os
import sys
import optparse
import logging
from dbus import DBusException
program = sys.argv[0]
if program.startswith('./') or program.startswith('bin/'):
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
os.environ['USBCREATOR_LOCAL'] = '1'
from usbcreator.frontends.gtk import GtkFrontend
from usbcreator.backends.udisks import UDisksBackend
from usbcreator.backends.fastboot import FastbootBackend
from usbcreator.misc import sane_path, setup_gettext, setup_logging, text_type
sane_path()
setup_logging()
setup_gettext()
# TODO evand 2009-07-09: Rename to bin/usb-creator-gtk.in and substitue the
# version in at build time.
parser = optparse.OptionParser(usage=_('%prog [options]'), version='0.2.23')
parser.set_defaults(safe=False,
iso=None,
persistent=True,
allow_system_internal=False,
trace=False)
# FIXME evand 2009-07-28: Reconnect this option to the install routine.
parser.add_option('-s', '--safe', dest='safe', action='store_true',
help=_('choose safer options when constructing the startup '
'disk (may slow down the boot process).'))
parser.add_option('-i', '--iso', dest='img',
help=_('provide a source image (CD or disk) to '
'pre-populate the UI.'))
parser.add_option('-n', '--not_persistent', dest='persistent',
action='store_false',
help=_('disable persistent setting in the UI'))
parser.add_option('--allow-system-internal', dest='allow_system_internal',
action='store_true',
help=_('allow writing to system-internal devices'))
parser.add_option('--show-all', dest='show_all', action='store_true',
help=_('Show all devices'))
parser.add_option('--fastboot', dest='fastboot', action='store_true',
help=_('Use fastboot backend to flash Android devices.'))
(options, args) = parser.parse_args()
try:
if options.fastboot:
options.persistent = False
backend = FastbootBackend()
else:
backend = UDisksBackend(
allow_system_internal=options.allow_system_internal,
show_all=options.show_all)
frontend = GtkFrontend(
backend, options.img, options.persistent,
allow_system_internal=options.allow_system_internal)
except DBusException as e:
# FIXME evand 2009-07-09: Wouldn't service activation pick this up
# automatically?
# FIXME evand 2009-07-28: Does this really belong this far out?
logging.exception('DBus exception:')
if e._dbus_error_name == 'org.freedesktop.DBus.Error.ServiceUnknown':
message = _('This program needs udisks running in order to'
'properly function.')
else:
message = _('An error occurred while talking to the udisks '
'service.')
GtkFrontend.startup_failure(message)
sys.exit(1)
except (KeyboardInterrupt, Exception) as e:
# TODO evand 2009-05-03: What should we do here to make sure devices are
# unmounted, etc?
logging.exception('Unhandled exception:')
message = _('An unhandled exception occurred:\n%s' % text_type(e))
GtkFrontend.startup_failure(message)
|