HomeSort by relevance Sort by last modified time
    Searched full:bootloader (Results 1 - 25 of 520) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/client/deps/boottool/
Linux-Bootloader-1.2.tar.gz 
  /external/autotest/server/samples/
boottool.srv 3 print rh.bootloader.get_titles()
4 default= rh.bootloader.get_default()
6 print rh.bootloader.get_entry(default)
  /device/htc/flounder/
releasetools.py 6 firmware_img = info.input_zip.read("RADIO/bootloader.img")
8 print "no bootloader.img in target_files; skipping install"
10 info.script.Print("Writing bootloader.img...")
11 common.ZipWriteStr(info.output_zip, "bootloader.img", firmware_img)
13 'package_extract_file("bootloader.img", "/dev/block/platform/sdhci-tegra.3/by-name/OTA");')
18 source_firmware_img = info.source_zip.read("RADIO/bootloader.img")
20 print "no bootloader.img in source_files; skipping install"
23 target_firmware_img = info.target_zip.read("RADIO/bootloader.img")
25 print "no bootloader.img in target_files; skipping install"
29 info.script.Print("Writing bootloader.img..."
    [all...]
  /device/linaro/hikey/bootloader/
README.md 0 Bootloader is build with ArmTF and UEFI from sources located at:
2 device/linaro/bootloader
4 $ cd device/linaro/hikey/bootloader
  /external/autotest/server/hosts/
base_classes_unittest.py 9 from autotest_lib.server.hosts import base_classes, bootloader
20 # stub out the bootloader
21 self.real_bootloader = bootloader.Bootloader
22 bootloader.Bootloader = lambda arg: object()
27 bootloader.Bootloader = self.real_bootloader
33 bootloader.Bootloader =
    [all...]
__init__.py 25 # bootloader classes
26 from bootloader import Bootloader
bootloader.py 5 This module defines the Bootloader class.
7 Bootloader: a program to boot Kernels on a Host.
17 class Bootloader(boottool.boottool):
19 This class gives access to a host's bootloader services.
22 booted by a bootloader. It can also make sure that this kernel will
27 super(Bootloader, self).__init__()
35 super(Bootloader, self).set_default(index)
42 super(Bootloader, self).boot_once(title)
bootloader_unittest.py 9 from autotest_lib.server.hosts import bootloader
41 loader = bootloader.Bootloader(host)
49 BOOTTOOL_SRC = os.path.join(SERVERDIR, bootloader.BOOTTOOL_SRC)
58 loader = bootloader.Bootloader(host)
69 loader = bootloader.Bootloader(host)
83 loader = bootloader.Bootloader(host
    [all...]
  /device/asus/fugu/
releasetools.py 16 (installing the bootloader)."""
32 def WriteBootloader(info, bootloader):
36 header_fmt, bootloader[:header_size])
38 assert magic == "BOOTLDR!", "bootloader.img bad magic value"
44 ifwi_size, droidboot_size = struct.unpack(header_v1_fmt, bootloader[offset:offset + header_v1_size])
46 ifwi = bootloader[offset:offset + ifwi_size]
48 droidboot = bootloader[offset:]
56 while offset < len(bootloader):
59 c_magic, size, flags, _, _ , _ = struct.unpack(c_header_fmt, bootloader[offset:offset + c_header_size])
60 buf = bootloader[offset + c_header_size: offset + c_header_size + size
    [all...]
  /build/target/board/generic_arm64/
README.txt 2 without a kernel or bootloader.
  /build/target/board/generic_armv5/
README.txt 2 without a kernel or bootloader.
  /development/tools/labpretest/crespo/
custom_flash.sh 6 # used for flashing bootloader image on sholes
8 BOOTPART='bootloader'
32 log_print "getting bootloader file for $product"
33 bootloaderfile=`ls -1 $ROOT/$product/ | sed -n 's/^\(bootloader\.[0-9A-Za-z_]*.img\)\n*/\1/ p'`
35 log_print "bootloader file empty: $bootloaderfile"
39 log_print "bootloader file not found: ./$product/$bootloaderfile"
42 log_print "using $ROOT/$product/$bootloaderfile as bootloader image file"
44 log_print "downloading bootloader image to $device"
  /development/tools/labpretest/sholes/
custom_flash.sh 6 # used for flashing bootloader image on sholes
32 log_print "getting bootloader file for $product"
40 log_print "bootloader file empty: $bootloaderfile"
44 log_print "bootloader file not found: ./$product/$bootloaderfile"
47 log_print "using $ROOT/$product/$bootloaderfile as the bootloader image file"
49 log_print "downloading bootloader image to $device"
  /development/tools/labpretest/stingray/
custom_flash.sh 6 # used for flashing bootloader image on sholes
32 log_print "getting bootloader file for $product"
35 log_print "bootloader file empty: $bootloaderfile"
39 log_print "bootloader file not found: ./$product/$bootloaderfile"
42 log_print "using $ROOT/$product/$bootloaderfile as the bootloader image file"
44 log_print "downloading bootloader image to $device"
  /device/google/dragon/
releasetools.py 22 bootloader_img = info.input_zip.read("RADIO/bootloader.img")
28 common.ZipWriteStr(info.output_zip, "bootloader.img", bootloader_img)
33 """dragon.firmware_update(package_extract_file("bootloader.img"), package_extract_file("ec.bin"));""")
37 target_bootloader_img = info.target_zip.read("RADIO/bootloader.img")
46 common.ZipWriteStr(info.output_zip, "bootloader.img", target_bootloader_img)
51 """dragon.firmware_update(package_extract_file("bootloader.img"), package_extract_file("ec.bin"));""")
  /device/common/
generate-factory-images-common.sh 22 BOOTLOADERSRC=bootloader.img
37 # Extract the bootloader(s) and radio(s) as necessary
63 cp tmp/RADIO/$BOOTLOADERSRC tmp/$PRODUCT-$VERSION/bootloader-$DEVICE-$BOOTLOADER.img
65 cp $BOOTLOADERFILE tmp/$PRODUCT-$VERSION/bootloader-$DEVICE-$BOOTLOADER.img
128 fastboot flash bootloader bootloader-$DEVICE-$BOOTLOADER.img
133 fastboot flash bootloader2 bootloader-$DEVICE-$BOOTLOADER.im
    [all...]
  /build/target/board/generic_mips64/
README.txt 2 target without a kernel or bootloader.
  /build/target/board/generic_x86/
README.txt 2 without a kernel or bootloader.
  /build/target/board/generic_x86_64/
README.txt 2 without a kernel or bootloader.
  /device/lge/bullhead/
releasetools.py 30 bootloader_img = info.input_zip.read("RADIO/bootloader.img")
32 print "no bootloader.img in target_files; skipping install"
64 target_bootloader_img = info.target_zip.read("RADIO/bootloader.img")
66 source_bootloader_img = info.source_zip.read("RADIO/bootloader.img")
71 print "bootloader unchanged; skipping"
75 print "no bootloader.img in target target_files; skipping install"
126 # /* msm8992 bootloader.img format */
142 def ParseBootloaderHeader(bootloader):
146 header_fmt, bootloader[:header_size])
147 assert magic == "BOOTLDR!", "bootloader.img bad magic value
    [all...]
  /device/huawei/angler/
releasetools.py 29 # Huawei Bootloader packed image format
102 bootloader_img = info.input_zip.read("RADIO/bootloader.img")
104 print "no bootloader.img in target_files; skipping install"
137 target_bootloader_img = info.target_zip.read("RADIO/bootloader.img")
139 source_bootloader_img = info.source_zip.read("RADIO/bootloader.img")
144 print "bootloader unchanged; skipping"
146 print "no bootloader in source target_files; installing complete image"
149 tf = common.File("bootloader.img", target_bootloader_img)
150 sf = common.File("bootloader.img", source_bootloader_img)
153 print "no bootloader.img in target target_files; skipping install
    [all...]
  /bootable/recovery/bootloader_message/include/bootloader_message/
bootloader_message.h 23 // 0 - 2K Bootloader Message
24 // 2K - 16K Used by Vendor's bootloader
26 // Note that these offsets are admitted by bootloader,recovery and uncrypt, so they
31 /* Bootloader Message
34 * that is used for recovery and the bootloader to talk to
38 * reboot into recovery or to update radio or bootloader firmware.
39 * It is also updated by the bootloader when firmware update
42 * The status field is written by the bootloader after the
55 * bootloader does not set the androidboot.ro.boot.slot_suffix kernel
  /device/moto/shamu/
releasetools.py 82 bootloader_img = info.input_zip.read("RADIO/bootloader.img")
84 print "no bootloader.img in target_files; skipping install"
118 target_bootloader_img = info.target_zip.read("RADIO/bootloader.img")
120 source_bootloader_img = info.source_zip.read("RADIO/bootloader.img")
125 print "bootloader unchanged; skipping"
127 print "no bootloader.img in source target_files; installing complete image"
130 tf = common.File("bootloader.img", target_bootloader_img)
131 sf = common.File("bootloader.img", source_bootloader_img)
134 print "no bootloader.img in target target_files; skipping install"
163 tm = MotobootImage(target_imagefile.data, "bootloader")
    [all...]
  /external/autotest/server/
deb_kernel_unittest.py 8 from autotest_lib.server.hosts import bootloader
16 self.host.bootloader = self.god.create_mock_class(
17 bootloader.Bootloader, "bootloader")
54 self.host.bootloader.add_kernel.expect_call('/boot/vmlinuz-1',
rpm_kernel_unittest.py 8 from autotest_lib.server.hosts import bootloader
25 host.bootloader = self.god.create_mock_class(bootloader.Bootloader,
26 "bootloader")
48 host.bootloader.remove_kernel.expect_call('autotest')
49 host.bootloader.add_kernel.expect_call("vmlinuz", 'autotest',
51 host.bootloader.boot_once.expect_call('autotest')

Completed in 210 milliseconds

1 2 3 4 5 6 7 8 91011>>