mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-04 06:54:27 -05:00 
			
		
		
		
	The USB descriptor parsing in adb fails to detect SuperSpeed devices because of the SuperSpeed Endpoint Companion Descriptor. This cherry-picks the upstream fix for the problem. Unfortunately there never were a release with this fix before the conversion to C++, so upgrading to a newer version isn't an option. This makes adb work with SuperSpeed devices like the Sierra Wireless EM7565. Tested and verified. Signed-off-by: Bjørn Mork <bjorn@mork.no>
		
			
				
	
	
		
			46 lines
		
	
	
		
			908 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			908 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
--- /dev/null
 | 
						|
+++ b/adb/Makefile
 | 
						|
@@ -0,0 +1,42 @@
 | 
						|
+SRCS+= adb.c
 | 
						|
+SRCS+= adb_auth_host.c
 | 
						|
+SRCS+= adb_client.c
 | 
						|
+SRCS+= commandline.c
 | 
						|
+SRCS+= console.c
 | 
						|
+SRCS+= fdevent.c
 | 
						|
+SRCS+= file_sync_client.c
 | 
						|
+SRCS+= get_my_path_linux.c
 | 
						|
+SRCS+= services.c
 | 
						|
+SRCS+= sockets.c
 | 
						|
+SRCS+= transport.c
 | 
						|
+SRCS+= transport_local.c
 | 
						|
+SRCS+= transport_usb.c
 | 
						|
+SRCS+= usb_linux.c
 | 
						|
+
 | 
						|
+VPATH+= ../libcutils
 | 
						|
+SRCS+= load_file.c
 | 
						|
+SRCS+= socket_inaddr_any_server.c
 | 
						|
+SRCS+= socket_local_client.c
 | 
						|
+SRCS+= socket_local_server.c
 | 
						|
+SRCS+= socket_loopback_client.c
 | 
						|
+SRCS+= socket_loopback_server.c
 | 
						|
+SRCS+= socket_network_client.c
 | 
						|
+
 | 
						|
+VPATH+= ../libzipfile
 | 
						|
+SRCS+= centraldir.c
 | 
						|
+SRCS+= zipfile.c
 | 
						|
+
 | 
						|
+CPPFLAGS+= -DADB_HOST=1
 | 
						|
+CPPFLAGS+= -DHAVE_FORKEXEC=1
 | 
						|
+CPPFLAGS+= -I.
 | 
						|
+CPPFLAGS+= -I../include
 | 
						|
+CPPFLAGS+= -D_FILE_OFFSET_BITS=64
 | 
						|
+
 | 
						|
+LIBS+= -lcrypto -lpthread -lz
 | 
						|
+
 | 
						|
+OBJS= $(SRCS:.c=.o)
 | 
						|
+
 | 
						|
+all: adb
 | 
						|
+
 | 
						|
+adb: $(OBJS)
 | 
						|
+	$(CC) -o $@ $(LDFLAGS) $(OBJS) $(LIBS)
 |