Blame view

buildroot/buildroot-2016.08.1/package/android-tools/0001-Fix-makefiles-for-out-of-tree-build.patch 4.18 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
  [PATCH] Fix makefiles for out-of-tree build
  
  Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com>
  ---
   debian/makefiles/adb.mk      | 10 +++++-----
   debian/makefiles/adbd.mk     | 33 ++++++++++++++++-----------------
   debian/makefiles/fastboot.mk | 17 +++++++++--------
   3 files changed, 30 insertions(+), 30 deletions(-)
  
  diff --git a/debian/makefiles/adb.mk b/debian/makefiles/adb.mk
  index d9d4feb..654b9f1 100644
  --- a/debian/makefiles/adb.mk
  +++ b/debian/makefiles/adb.mk
  @@ -1,5 +1,6 @@
   # Makefile for adb; from https://heiher.info/2227.html
   
  +VPATH+= $(SRCDIR)/core/adb
   SRCS+= adb.c
   SRCS+= adb_client.c
   SRCS+= adb_auth_host.c
  @@ -17,7 +18,7 @@ SRCS+= usb_linux.c
   SRCS+= usb_vendors.c
   SRCS+= utils.c
   
  -VPATH+= ../libcutils
  +VPATH+= $(SRCDIR)/core/libcutils
   SRCS+= abort_socket.c
   SRCS+= socket_inaddr_any_server.c
   SRCS+= socket_local_client.c
  @@ -28,7 +29,7 @@ SRCS+= socket_network_client.c
   SRCS+= list.c
   SRCS+= load_file.c
   
  -VPATH+= ../libzipfile
  +VPATH+= $(SRCDIR)/core/libzipfile
   SRCS+= centraldir.c
   SRCS+= zipfile.c
   
  @@ -37,9 +38,8 @@ CPPFLAGS+= -DADB_HOST=1
   CPPFLAGS+= -DHAVE_FORKEXEC=1
   CPPFLAGS+= -DHAVE_SYMLINKS
   CPPFLAGS+= -DHAVE_TERMIO_H
  -CPPFLAGS+= -I.
  -CPPFLAGS+= -I../include
  -CPPFLAGS+= -I../../../external/zlib
  +CPPFLAGS+= -I$(SRCDIR)/core/adb
  +CPPFLAGS+= -I$(SRCDIR)/core/include
   
   LIBS+= -lc -lpthread -lz -lcrypto
   
  diff --git a/debian/makefiles/adbd.mk b/debian/makefiles/adbd.mk
  index 94d3a90..49dab8c 100644
  --- a/debian/makefiles/adbd.mk
  +++ b/debian/makefiles/adbd.mk
  @@ -1,18 +1,6 @@
   # Makefile for adbd
   
  -VPATH+= ../libcutils
  -SRCS+= abort_socket.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
  -SRCS+= list.c
  -SRCS+= load_file.c
  -SRCS+= android_reboot.c
  -
  -#VPATH+= ../adb
  +VPATH+= $(SRCDIR)/core/adbd
   SRCS+=  adb.c
   SRCS+=	backup_service.c
   SRCS+=	fdevent.c
  @@ -31,7 +19,19 @@ SRCS+=	log_service.c
   SRCS+=	utils.c
   SRCS+=	base64.c
   
  -VPATH+= ../libzipfile
  +VPATH+= $(SRCDIR)/core/libcutils
  +SRCS+= abort_socket.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
  +SRCS+= list.c
  +SRCS+= load_file.c
  +SRCS+= android_reboot.c
  +
  +VPATH+= $(SRCDIR)/core/libzipfile
   SRCS+= centraldir.c
   SRCS+= zipfile.c
   
  @@ -40,10 +40,9 @@ CPPFLAGS+= -O2 -g -Wall -Wno-unused-parameter
   CPPFLAGS+= -DADB_HOST=0 -DHAVE_FORKEXEC=1 -D_XOPEN_SOURCE -D_GNU_SOURCE -DALLOW_ADBD_ROOT=1
   CPPFLAGS+= -DHAVE_SYMLINKS -DBOARD_ALWAYS_INSECURE
   CPPFLAGS+= -DHAVE_TERMIO_H
  -CPPFLAGS+= -I.
  -CPPFLAGS+= -I../include
  -CPPFLAGS+= -I../../../external/zlib
   CPPFLAGS+= `pkg-config --cflags glib-2.0 gio-2.0`
  +CPPFLAGS+= -I$(SRCDIR)/core/adbd
  +CPPFLAGS+= -I$(SRCDIR)/core/include
   
   LIBS+= -lc -lpthread -lz -lcrypto -lcrypt `pkg-config --libs glib-2.0 gio-2.0`
   
  diff --git a/debian/makefiles/fastboot.mk b/debian/makefiles/fastboot.mk
  index 9e8b751..94a069b 100644
  --- a/debian/makefiles/fastboot.mk
  +++ b/debian/makefiles/fastboot.mk
  @@ -1,5 +1,6 @@
   # Makefile for fastboot; from https://heiher.info/2227.html
   
  +VPATH+= $(SRCDIR)/core/fastboot
   SRCS+= bootimg.c
   SRCS+= engine.c
   SRCS+= fastboot.c
  @@ -7,11 +8,11 @@ SRCS+= protocol.c
   SRCS+= usb_linux.c
   SRCS+= util_linux.c
   
  -VPATH+= ../libzipfile
  +VPATH+= $(SRCDIR)/core/libzipfile
   SRCS+= centraldir.c
   SRCS+= zipfile.c
   
  -VPATH+= ../libsparse
  +VPATH+= $(SRCDIR)/core/libsparse
   SRCS+= backed_block.c
   SRCS+= sparse_crc32.c
   SRCS+= sparse.c
  @@ -19,7 +20,7 @@ SRCS+= sparse_read.c
   SRCS+= sparse_err.c
   SRCS+= output_file.c
   
  -VPATH+= ../../extras/ext4_utils/
  +VPATH+= $(SRCDIR)/extras/ext4_utils/
   SRCS+= make_ext4fs.c
   SRCS+= crc16.c
   SRCS+= ext4_utils.c
  @@ -31,11 +32,11 @@ SRCS+= extent.c
   SRCS+= wipe.c
   SRCS+= sha1.c
   
  -CPPFLAGS+= -I.
  -CPPFLAGS+= -I../include
  -CPPFLAGS+= -I../mkbootimg
  -CPPFLAGS+= -I../../extras/ext4_utils/
  -CPPFLAGS+= -I../libsparse/include/
  +CPPFLAGS+= -I$(SRCDIR)/core/fastboot
  +CPPFLAGS+= -I$(SRCDIR)/core/include
  +CPPFLAGS+= -I$(SRCDIR)/core/mkbootimg
  +CPPFLAGS+= -I$(SRCDIR)/extras/ext4_utils/
  +CPPFLAGS+= -I$(SRCDIR)/core/libsparse/include/
   
   LIBS+= -lz -lselinux
   
  -- 
  2.5.1