Home
last modified time | relevance | path

Searched refs:fastboot (Results 1 – 25 of 707) sorted by relevance

12345678910>>...29

/OK3568_Linux_fs/yocto/meta-clang/dynamic-layers/selinux/android-tools/android-tools/core/
H A D0003-socket.h-removing-dependency-of-gtest.patch6 Removed the dependency of gtest on the build of fastboot binary.
9 In file included from fastboot/fastboot.cpp:70:
10 | In file included from fastboot/tcp.h:36:
11 | fastboot/socket.h:43:10: fatal error: 'gtest/gtest_prod.h' file not found
15 | In file included from fastboot/socket.cpp:29:
16 | fastboot/socket.h:43:10: fatal error: 'gtest/gtest_prod.h' file not found
20 | In file included from fastboot/tcp.cpp:29:
21 | In file included from fastboot/tcp.h:36:
22 | fastboot/socket.h:43:10: fatal error: 'gtest/gtest_prod.h' file not found
26 | In file included from fastboot/udp.cpp:31:
[all …]
H A D0005-fastboot-don-t-use-sparse_file_import_auto-in-load_b.patch4 Subject: [PATCH 05/15] fastboot: don't use sparse_file_import_auto() in
11 fastboot: don't use sparse_file_import_auto() in load_buf_fd()
36 fastboot/fastboot.cpp | 2 +-
39 diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp
41 --- a/fastboot/fastboot.cpp
42 +++ b/fastboot/fastboot.cpp
H A D0004-patching-fastboot.mk-to-build-in-yocto-environment.patch4 Subject: [PATCH 04/15] patching fastboot.mk to build in yocto environment.
23 debian/fastboot.mk | 12 +++++++-----
26 diff --git a/debian/fastboot.mk b/debian/fastboot.mk
28 --- a/debian/fastboot.mk
29 +++ b/debian/fastboot.mk
32 NAME = fastboot
54 - $(CXX) $^ -o fastboot/$(NAME) $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS)
55 + mkdir --parents $(OUT_DIR)/usr/bin/fastboot
56 + $(CXX) $^ -o $(OUT_DIR)/usr/bin/fastboot/$(NAME) $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS)
59 - $(RM) fastboot/$(NAME)
[all …]
/OK3568_Linux_fs/u-boot/cmd/fastboot/
H A DKconfig10 bool "Enable USB fastboot gadget"
12 This enables the USB part of the fastboot gadget.
16 bool "Enable fastboot protocol over UDP"
18 This enables the fastboot protocol over UDP.
24 This enables the command "fastboot" which enables the Android
25 fastboot mode for the platform. Fastboot is a protocol for
30 See doc/README.android-fastboot for more information.
47 The fastboot protocol requires a large memory buffer for
58 The fastboot protocol requires a large memory buffer for
60 platform. Define this to the size available RAM for fastboot.
[all …]
/OK3568_Linux_fs/u-boot/doc/
H A DREADME.android-fastboot7 README.android-fastboot-protocol in same directory.
14 The counterpart to this gadget is the fastboot client which can
15 be found in Android's platform/system/core repository in the fastboot
28 for 64bit Windows. VID and PID should match whatever the fastboot is
33 The fastboot gadget relies on the USB download gadget, so the following
42 the fastboot client. The list of vendor IDs supported can be found in the
43 fastboot client source code (fastboot.c) mentioned above.
45 The fastboot function is enabled by defining CONFIG_USB_FUNCTION_FASTBOOT,
48 The fastboot protocol requires a large memory buffer for downloads. This
56 partition name used commonly with fastboot. Current implentation checks
[all …]
H A DREADME.rockchip196 Using fastboot on rk3288
198 - Write GPT partition layout to mmc device which fastboot want to use it to
203 - Invoke fastboot command to prepare
205 => fastboot 1
207 - Start fastboot request on PC
209 fastboot -i 0x2207 flash loader evb-rk3288/spl/u-boot-spl-dtb.bin
213 => fastboot 1
/OK3568_Linux_fs/buildroot/package/android-tools/
H A DConfig.in3 # Technically, fastboot could build on noMMU systems. But
5 # and adb/adbd can't be built on noMMU systems, and fastboot
14 This package contains the fastboot and adb utilities, that
33 # fails with a bad redefinition of u64 (the android-tools fastboot
42 bool "fastboot"
49 This option will build and install the fastboot utility for
51 implementing the fastboot protocol.
53 comment "fastboot needs a toolchain w/ threads, dynamic library"
56 comment "fastboot needs headers >= 3.10 (PowerPC64), headers >= 3.16 (MIPS64)"
H A D0001-Fix-makefiles-for-out-of-tree-build.patch7 debian/makefiles/fastboot.mk | 17 +++++++++--------
109 diff --git a/debian/makefiles/fastboot.mk b/debian/makefiles/fastboot.mk
111 --- a/debian/makefiles/fastboot.mk
112 +++ b/debian/makefiles/fastboot.mk
114 # Makefile for fastboot; from https://heiher.info/2227.html
116 +VPATH+= $(SRCDIR)/core/fastboot
119 SRCS+= fastboot.c
152 +CPPFLAGS+= -I$(SRCDIR)/core/fastboot
H A DConfig.in.host6 This package contains the fastboot and adb utilities, that
13 bool "fastboot"
15 This option will build and install the fastboot utility for
17 implementing the fastboot protocol.
H A D0008-Include-sysmacros.h-to-compile-with-glibc-2.28.patch32 …ndroid-tools-4.2.2+git20130218.orig/core/fastboot/usb_linux.c host-android-tools-4.2.2+git20130218…
33 --- host-android-tools-4.2.2+git20130218.orig/core/fastboot/usb_linux.c 2013-02-18 15:49:03.0000000…
34 +++ host-android-tools-4.2.2+git20130218/core/fastboot/usb_linux.c 2018-09-09 11:46:53.028169154 +0…
H A Dandroid-tools.mk40 HOST_ANDROID_TOOLS_BUILD_TARGETS += fastboot
41 HOST_ANDROID_TOOLS_INSTALL_TARGETS += build-fastboot/fastboot
59 ANDROID_TOOLS_TARGETS += fastboot
/OK3568_Linux_fs/yocto/meta-clang/dynamic-layers/selinux/android-tools/android-tools/core-debian/
H A Dhard-code-build-number.patch23 --- a/fastboot/fastboot.cpp
24 +++ b/fastboot/fastboot.cpp
39 - fprintf(stdout, "fastboot version %s-%s\n", PLATFORM_TOOLS_VERSION, android::build…
40 + fprintf(stdout, "fastboot version %s-%s\n", PLATFORM_TOOLS_VERSION, "debian");
/OK3568_Linux_fs/buildroot/board/amarula/a64-relic/
H A Dreadme.txt53 6. Initiate fastboot
54 => fastboot 0
56 7. Write images from host onto eMMC using fastboot
58 $ sudo fastboot -i 0x1f3a flash loader1 sunxi-spl.bin
59 $ sudo fastboot -i 0x1f3a flash loader2 u-boot.itb
60 $ sudo fastboot -i 0x1f3a flash esp boot.vfat
61 $ sudo fastboot -i 0x1f3a flash system rootfs.ext4
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/android-tools/android-tools/
H A Dfastboot.mk5 VPATH += $(SRCDIR)/system/core/fastboot
9 fastboot_SRC_FILES += fastboot.c
59 CFLAGS += -I$(SRCDIR)/system/core/fastboot
70 all: fastboot
72 fastboot: libzipfile.a libext4_utils.a libsparse.a libselinux.a $(fastboot_OBJS)
89 $(libsparse_OBJS) $(libselinux_OBJS) fastboot *.a
/OK3568_Linux_fs/u-boot/lib/avb/libavb_user/
H A DKconfig7 to fastboot and kernel.
17 - enter rockusb or fastboot when boot failed;
26 to fastboot and kernel.
34 to fastboot and kernel.
/OK3568_Linux_fs/u-boot/board/qualcomm/dragonboard410c/
H A Dreadme.txt24 8) Enter fastboot (reboot board with vol- button pressed)
27 $ fastboot boot u-boot.img
29 $ fastboot flash boot u-boot.img
30 $ fastboot reboot
/OK3568_Linux_fs/u-boot/board/hisilicon/poplar/
H A DREADME127 Due to BootROM requiremets, rename l-loader.bin to fastboot.bin:
128 > cp l-loader.bin ~/poplar/bin/fastboot.bin
138 Copy fastboot.bin to a FAT partition on the USB drive and reboot the
153 Copy fastboot.bin to your tftp server.
158 => tftp 0x30000000 fastboot.bin
169 Filename 'poplar/fastboot.bin'.
187 Copy fastboot.bin to any partition on a FAT32 formated usb flash drive.
191 983040 fastboot.bin
195 => fatload usb 0:2 0x30000000 fastboot.bin
196 reading fastboot.bin
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/android-tools/
H A Dandroid-tools_5.1.1.r37.bb54 file://fastboot.mk;subdir=${BPN} \
79 TOOLS = "adb fastboot ext4_utils mkbootimg adbd"
82 TOOLS:class-native = "fastboot ext4_utils mkbootimg"
83 TOOLS:class-nativesdk = "fastboot ext4_utils mkbootimg"
152 if echo ${TOOLS} | grep -q "fastboot" ; then
154 install -m0755 ${B}/fastboot/fastboot ${D}${bindir}
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/initscripts/initscripts-1.0/
H A Dcheckfs.sh20 if test ! -f /fastboot
52 rm -f /fastboot /forcefsck
/OK3568_Linux_fs/yocto/meta-clang/dynamic-layers/selinux/android-tools/
H A Dandroid-tools_10.0.0.r36.bb66 file://core/0004-patching-fastboot.mk-to-build-in-yocto-environment.patch;patchdir=system/core \
67 … file://core/0005-fastboot-don-t-use-sparse_file_import_auto-in-load_b.patch;patchdir=system/core \
113 TOOLS_TO_BUILD = "libcrypto_utils libadb libziparchive fastboot adb img2simg simg2img libbacktrace"
116 TOOLS:class-native = "boringssl fastboot ext4_utils mkbootimg"
117 TOOLS:class-nativesdk = "boringssl fastboot ext4_utils mkbootimg"
197 if echo ${TOOLS_TO_BUILD} | grep -q "fastboot" ; then
199 install -m0755 ${S}/debian/out/usr/bin/fastboot/fastboot ${D}${bindir}
/OK3568_Linux_fs/u-boot/cmd/
H A D.fastboot.o.cmd
H A Dfastboot.su
/OK3568_Linux_fs/u-boot/board/hisilicon/hikey/
H A DREADME87 2. Once LED 0 comes on solid, HiKey board should be detected as a fastboot device by plugging a USB…
90 > sudo fastboot devices
92 0123456789ABCDEF fastboot
96 > sudo fastboot flash ptable ~/hikey/bin/ptable.img
97 > sudo fastboot flash fastboot ~/hikey/bin/fip.bin
98 > sudo fastboot flash nvme ~/hikey/bin/nvme.img
/OK3568_Linux_fs/u-boot/lib/avb/rk_avb_user/
H A DKconfig7 to fastboot and kernel.
15 to fastboot and kernel.
/OK3568_Linux_fs/u-boot/common/
H A D.fb_mmc.o.cmd

12345678910>>...29