HomeSort by relevance Sort by last modified time
    Searched refs:fastboot (Results 1 - 25 of 42) sorted by null

1 2

  /device/linaro/hikey/installer/hikey960/
flash-all.sh 18 fastboot flash xloader "${INSTALLER_DIR}"/hisi-sec_xloader.img
19 fastboot flash ptable "${INSTALLER_DIR}"/hisi-ptable.img
20 fastboot flash fastboot "${INSTALLER_DIR}"/hisi-fastboot.img
21 fastboot reboot-bootloader
22 fastboot flash nvme "${INSTALLER_DIR}"/nvme.img
23 fastboot flash fw_lpm3 "${INSTALLER_DIR}"/lpm3.img
24 fastboot flash trustfirmware "${INSTALLER_DIR}"/bl31.bin
25 fastboot flash boot "${ANDROID_PRODUCT_OUT}"/boot.im
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/
fastboot_utils_test.py 21 from devil.android.sdk import fastboot
62 fastbooter = mock.Mock(spec=fastboot.Fastboot)
81 self.fastboot = fastboot_utils.FastbootUtils(
84 self.fastboot._board = _BOARD
110 self.fastboot.WaitForFastbootMode()
117 self.call.fastboot._device.EnableRoot(),
118 self.call.fastboot._device.adb.Reboot(to_bootloader=True),
119 self.call.fastboot.WaitForFastbootMode()):
120 self.fastboot.EnableFastbootMode(
    [all...]
fastboot_utils.py 5 """Provides a variety of device interactions based on fastboot."""
17 from devil.android.sdk import fastboot
82 fastboot = fastboot_utils.FastbootUtils(device)
83 fastboot.FlashDevice('/path/to/build/directory')
87 fastbooter: Optional fastboot object. If none is passed, one will
100 self.fastboot = fastbooter
102 self.fastboot = fastboot.Fastboot(self._serial)
106 """Wait for device to boot into fastboot mode
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/android/
fastboot_utils_test.py 21 from devil.android.sdk import fastboot
62 fastbooter = mock.Mock(spec=fastboot.Fastboot)
81 self.fastboot = fastboot_utils.FastbootUtils(
84 self.fastboot._board = _BOARD
110 self.fastboot.WaitForFastbootMode()
117 self.call.fastboot._device.EnableRoot(),
118 self.call.fastboot._device.adb.Reboot(to_bootloader=True),
119 self.call.fastboot.WaitForFastbootMode()):
120 self.fastboot.EnableFastbootMode(
    [all...]
fastboot_utils.py 5 """Provides a variety of device interactions based on fastboot."""
17 from devil.android.sdk import fastboot
80 fastboot = fastboot_utils.FastbootUtils(device)
81 fastboot.FlashDevice('/path/to/build/directory')
85 fastbooter: Optional fastboot object. If none is passed, one will
98 self.fastboot = fastbooter
100 self.fastboot = fastboot.Fastboot(self._serial)
104 """Wait for device to boot into fastboot mode
    [all...]
  /device/linaro/hikey/installer/hikey/
flash-all.sh 66 serialno=`fastboot getvar serialno 2>&1 > /dev/null`
68 fastboot oem serialno
71 fastboot oem serialno
74 fastboot flash ptable "${INSTALLER_DIR}"/"${PTABLE}"
75 fastboot flash fastboot "${FIRMWARE_DIR}"/fip.bin
76 fastboot flash nvme "${INSTALLER_DIR}"/nvme.img
77 fastboot flash boot "${OUT_IMGDIR}"/boot.img
78 fastboot flash system "${OUT_IMGDIR}"/system.img
79 fastboot flash cache "${OUT_IMGDIR}"/cache.im
    [all...]
  /device/linaro/hikey/factory-images/
generate-factory-images-hikey960.sh 36 cp $ANDROID_BUILD_TOP/$DEVICE_DIR/installer/hikey960/hisi-fastboot.img tmp/$PRODUCT-$VERSION/
49 # XXX hikey960's fastboot update currently doesn't format cache/userdata, so do it manually
75 fastboot flash xloader sec_xloader.img
76 fastboot flash ptable ptable.img
77 fastboot flash fastboot fastboot.img
78 fastboot reboot-bootloader
79 fastboot flash nvme nvme.img
80 fastboot flash fw_lpm3 lpm3.im
    [all...]
generate-factory-images-hikey.sh 90 serialno=\`fastboot getvar serialno 2>&1 > /dev/null\`
92 fastboot oem serialno
95 fastboot oem serialno
98 fastboot flash ptable "\${PTABLE}"
99 fastboot flash fastboot fip.bin
100 fastboot flash nvme nvme.img
101 fastboot format userdata
102 fastboot format cache
103 fastboot update image-$PRODUCT-$VERSION.zi
    [all...]
  /device/common/
generate-factory-images-common.sh 104 if ! grep -q dtbo.sig \$(which fastboot); then
105 echo "fastboot too old"
112 fastboot oem unlock
118 fastboot erase boot
119 fastboot erase cache
120 fastboot erase recovery
121 fastboot erase system
122 fastboot erase userdata
128 fastboot flash xloader xloader-$DEVICE-$XLOADER.img
132 fastboot flash bootloader bootloader-$DEVICE-$BOOTLOADER.im
    [all...]
  /device/google/wahoo/lisa/
update-script.sh 31 # wait for device to enter fastboot, max wait is 200secs
35 if [ -n "`fastboot devices`" ]; then
47 echo "==========Rebooting the device into fastboot=========="
51 echo "==========Waiting for device to enter fastboot=========="
54 if [ -z "`fastboot devices`" ]; then
55 echo "==========Device failed to enter fastboot=========="
62 fastboot flash vbmeta
63 fastboot flash vendor
64 fastboot flash boot
65 fastboot reboo
    [all...]
  /external/toolchain-utils/binary_search_tool/android/
test_setup.sh 8 # bootloader mode and fastboot is used to flash the new image. The device is
24 echo " 1. Boot your device into fastboot mode."
28 echo " 4. Run '${ADB_DEVICE}fastboot flashall -w'"
46 echo "Please ensure your Android device is on and in fastboot mode so"
47 echo "fastboot flash may run."
52 echo " ${ADB_DEVICE}fastboot flashall -w"
53 fastboot flashall -w
60 echo "Rebooting device into fastboot mode."
65 echo "Waiting for device to reach fastboot mode."
67 # fastboot will block indefinitely until device comes online
    [all...]
  /system/extras/tests/bootloader/
bootloadertest.py 19 import fastboot
29 cls.fastboot = fastboot.FastbootDevice()
54 val = self.fastboot.getvar(varname)
82 val = self.fastboot.getvar("slot-count")
96 var_all = self.fastboot.getvar_all()
136 self.assertIsNone(self.fastboot.getvar("fhqwhgads"))
181 self.fastboot.set_active(slot)
182 self.assertEqual(slot, self.fastboot.getvar("current-slot"))
183 self.assertEqual("no", self.fastboot.getvar("slot-unbootable:"+slot)
    [all...]
  /system/iot/attestation/at-factory-tool/
fastbootsubp.py 16 """Fastboot Interface Implementation using subprocess library."""
38 """An abstracted fastboot device object.
41 serial_number: The serial number of the fastboot device.
45 fastboot_command = os.path.join(current_path, 'fastboot.exe')
50 """List all fastboot devices.
53 A list of serial numbers for all the fastboot devices.
67 """Initiate the fastboot device object.
70 serial_number: The serial number of the fastboot device.
73 # Lock to make sure only one fastboot command can be issued to one device
78 """Reboot the device into fastboot mode
    [all...]
  /test/framework/harnesses/host_controller/build/
build_flasher.py 58 "ADB and fastboot could not find any target devices.")
61 "ADB or fastboot found more than one device: %s" % serials)
101 self.device.fastboot.flash('vbmeta', vbmeta_img))
102 self.device.log.info(self.device.fastboot.erase('system'))
103 self.device.log.info(self.device.fastboot.flash('system', system_img))
104 self.device.log.info(self.device.fastboot.erase('metadata'))
105 self.device.log.info(self.device.fastboot._w())
106 self.device.log.info(self.device.fastboot.reboot())
115 # fastboot flashall looks for imgs in $ANDROID_PRODUCT_OUT
120 self.device.log.info(self.device.fastboot.flashall()
    [all...]
build_flasher_test.py 53 mock_device.fastboot.erase.assert_any_call('system')
54 mock_device.fastboot.flash.assert_any_call('system', 'exists.img')
55 mock_device.fastboot.erase.assert_any_call('metadata')
64 mock_device.fastboot.flashall.assert_called_with()
  /development/tools/labpretest/sholes/
custom_flash.sh 33 secure=`$fastboot -s $device getvar secure 2>&1 | sed -n 's/secure: \([a-z]*\)\n*/\1/ p'`
  /tools/tradefederation/core/prod-tests/src/com/android/fastboot/tests/
FastbootTest.java 16 package com.android.fastboot.tests;
49 * TODO: Add more fastboot test validation step.
76 + "DeviceFlashPreparer) to be used for the fastboot test", mandatory = true)
117 // reset fastboot path
164 File fastboot = getFastbootFile(mBuildInfo); local
165 if (fastboot == null) {
167 "Couldn't find the fastboot binary in build info.");
170 // Set the fastboot path for device
171 ((IManagedTestDevice)mDevice).setFastbootPath(fastboot.getAbsolutePath());
258 * flasher-class, allows anybody to tests fastboot using their own implementation of it
281 File fastboot = buildInfo.getFile("fastboot"); local
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/tools/
unlock_bootloader.py 23 from devil.android.sdk import fastboot
46 # Wait for the rebooted devices to show up in fastboot.
53 fastbooted_devices = set([str(d) for d in fastboot.Fastboot.Devices()])
55 logging.info('All devices in fastboot.')
89 # fastboot command process will hang and wait for a response. We still
137 d for d in fastboot.Fastboot.Devices() if not args.devices or
flash_device.py 46 fastboot = fastboot_utils.FastbootUtils(device)
48 fastboot.FlashDevice(args.build_path, wipe=args.wipe)
  /development/build/tools/
patch_windows_sdk.sh 87 # Just to make it easier on the build servers, we want fastboot and adb
89 for i in fastboot.exe adb.exe; do
  /device/linaro/hikey/l-loader/
hikey.mk 8 NS_BL1U=recovery-fastboot.bin
  /external/libmojo/third_party/catapult/devil/devil/android/tools/
flash_device.py 47 fastboot = fastboot_utils.FastbootUtils(device)
49 fastboot.FlashDevice(args.build_path, wipe=args.wipe)
  /system/core/fastboot/
Android.mk 31 fastboot.cpp \
39 LOCAL_MODULE := fastboot
75 # on the host fastboot tool, and shared libraries that link against libc++
88 # Archive fastboot.exe for win_sdk build.
  /test/vts/utils/python/controllers/
fastboot.py 22 This is fastboot's own exe_cmd because of its peculiar way of writing
43 """Raised when there is an error in fastboot operations."""
47 """Proxy class for fastboot.
49 For syntactic reasons, the '-' in fastboot commands need to be replaced
50 with '_'. Can directly execute fastboot commands on an object:
52 >> fb.devices() # will return the console output of "fastboot devices".
58 self.fastboot_str = "fastboot -s {}".format(serial)
60 self.fastboot_str = "fastboot"
  /build/make/target/product/
embedded.mk 38 fastboot \

Completed in 680 milliseconds

1 2