Skip to content
Snippets Groups Projects
Commit c7be1cc1 authored by Fathi Boudra's avatar Fathi Boudra
Browse files

Remove adb and fastboot binary packages


They are built from android-platform-system-core source package.

Signed-off-by: default avatarFathi Boudra <fabo@debian.org>
parent 48bf95e2
No related branches found
No related tags found
No related merge requests found
......@@ -20,38 +20,36 @@ Homepage: https://developer.android.com/tools/help/adb.html
Vcs-Git: https://anonscm.debian.org/git/android-tools/android-tools.git
Vcs-Browser: https://anonscm.debian.org/cgit/android-tools/android-tools.git
Package: android-tools-adb
# requires porting of selinux calls in extras/ext4_utils and
# core/fastboot/usb_*.c implementation; hurd
Architecture: linux-any
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Android Debug Bridge CLI tool
Android Debug Bridge (adb) is a versatile tool that lets you manage the state
of an emulator instance or Android-powered device. It is a client-server
program that includes three components:
.
A client, which runs on your development machine. You can invoke a
client from a shell by issuing an adb command. Other Android tools such
as the ADT plugin and DDMS also create adb clients.
.
A server, which runs as a background process on your development
machine. The server manages communication between the client and the
adb daemon running on an emulator or device.
.
A daemon, which runs as a background process on each emulator or device
instance.
# Package: android-tools-adb
# Architecture: amd64 arm64 armhf i386
# Depends: ${misc:Depends}, ${shlibs:Depends}
# Description: Android Debug Bridge CLI tool
# Android Debug Bridge (adb) is a versatile tool that lets you manage the state
# of an emulator instance or Android-powered device. It is a client-server
# program that includes three components:
# .
# A client, which runs on your development machine. You can invoke a
# client from a shell by issuing an adb command. Other Android tools such
# as the ADT plugin and DDMS also create adb clients.
# .
# A server, which runs as a background process on your development
# machine. The server manages communication between the client and the
# adb daemon running on an emulator or device.
# .
# A daemon, which runs as a background process on each emulator or device
# instance.
Package: android-tools-fastboot
Architecture: linux-any
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Android Fastboot protocol CLI tool
Fastboot is a diagnostic protocol primarily used to update the flash
filesystem of Android devices over USB.
.
This package provides the fastboot command-line tool.
# Package: android-tools-fastboot
# Architecture: amd64 arm64 armhf i386
# Depends: ${misc:Depends}, ${shlibs:Depends}
# Description: Android Fastboot protocol CLI tool
# Fastboot is a diagnostic protocol primarily used to update the flash
# filesystem of Android devices over USB.
# .
# This package provides the fastboot command-line tool.
Package: android-tools-fsutils
Architecture: linux-any
Architecture: amd64 arm64 armhf i386
Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}
Description: Android ext4 utilities with sparse support
Android images (.img) are typically ext4 filesystems in a special
......@@ -61,7 +59,7 @@ Description: Android ext4 utilities with sparse support
images.
Package: android-tools-adbd
Architecture: armhf arm64 i386 amd64
Architecture: amd64 arm64 armhf i386
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Android Debug Bridge daemon
Android Debug Bridge (adb) is a versatile tool that lets you manage the state
......@@ -82,7 +80,7 @@ Description: Android Debug Bridge daemon
This package provides the daemon component.
Package: android-tools-mkbootimg
Architecture: linux-any
Architecture: amd64 arm64 armhf i386
Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Android tool to create Android boot images
Creates Android boot images that includes kernel image and ramdisk, in a
......
......@@ -26,17 +26,17 @@ ifeq ($(DEB_HOST_ARCH),$(findstring $(DEB_HOST_ARCH), $(linux_x86)))
endif
%:
dh $@ --with python2 --with bash-completion
dh $@ --with python2
override_dh_clean:
dh_clean
rm -rf builddir/
override_dh_auto_build:
mkdir -p builddir/adb
$(MAKE) -f $(M)/adb.mk -C builddir/adb
mkdir -p builddir/fastboot
$(MAKE) -f $(M)/fastboot.mk -C builddir/fastboot
# mkdir -p builddir/adb
# $(MAKE) -f $(M)/adb.mk -C builddir/adb
# mkdir -p builddir/fastboot
# $(MAKE) -f $(M)/fastboot.mk -C builddir/fastboot
mkdir -p builddir/ext4_utils
$(MAKE) -f $(M)/ext4_utils.mk -C builddir/ext4_utils
mkdir -p builddir/mkbootimg
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment