forked from CyanogenDefy/android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
defy-cm7-rc0.heads.txt
2400 lines (1783 loc) · 84.3 KB
/
defy-cm7-rc0.heads.txt
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# repo forall -p -c 'git log -n 1 --format=email' > android/defy-cm7-rc0.heads.txt
project android/
From 3af0a7bffd12c277943f24273a8460cdf9eb8a80 Mon Sep 17 00:00:00 2001
From: Tanguy Pruvot <[email protected]>
Date: Fri, 3 Jun 2011 18:13:33 +0200
Subject: [PATCH] use git http protocol for korg
project bionic/
From f154ae4c09cb76a6378305a097fe4c10124422ee Mon Sep 17 00:00:00 2001
From: Jim Huang <[email protected]>
Date: Thu, 2 Jun 2011 00:08:55 +0200
Subject: [PATCH] bionic: Add ARM optimized strcmp()
Reference results of the experiments on TI OMAP3430 at 600 MHz
$ bench_strcmp -N "strcmp_1k" -s 1k -I 200
[original C code]
prc thr usecs/call samples errors cnt/samp size
strcmp_1k 1 1 10.38000 102 0 15000 1024
[ARM optimized code]
prc thr usecs/call samples errors cnt/samp size
strcmp_1k 1 1 3.08840 88 0 15000 1024
The work was derived from ARM Ltd, contributed to newlib, and reworked
for Android by Linaro.
Change-Id: Ib0d5755e1eb9adb07d80ef0252f57a5c4c57a425
Signed-off-by: Jim Huang <[email protected]>
project bootable/bootloader/legacy/
From d3271024770ddcc2fb87dd22f8280764545ab05a Mon Sep 17 00:00:00 2001
From: The Android Open Source Project <[email protected]>
Date: Thu, 13 May 2010 14:32:11 -0700
Subject: [PATCH] merge from open-source master
Change-Id: Id96727850237dd454ca30090a27b67ba4f75f881
project bootable/diskinstaller/
From 53bd9111b5ae1fc1180ec13755d9830f7cadacf5 Mon Sep 17 00:00:00 2001
From: The Android Open Source Project <[email protected]>
Date: Mon, 10 May 2010 11:02:37 -0700
Subject: [PATCH] merge from open-source master
Change-Id: I28be55e2d649c8d52ad7ed47c5a19221a886ae7b
project bootable/recovery/
From f64f44cd1e09662c10081534b45ec2d38131172d Mon Sep 17 00:00:00 2001
From: Tanguy Pruvot <[email protected]>
Date: Fri, 3 Jun 2011 05:11:26 +0200
Subject: [PATCH] Merge remote-tracking branch 'remotes/cyanogen/gingerbread'
into gingerbread
project build/
From 9fb461899bf7da910fff73f6e99bd81c0cae2ca9 Mon Sep 17 00:00:00 2001
From: Tanguy Pruvot <[email protected]>
Date: Fri, 3 Jun 2011 05:08:39 +0200
Subject: [PATCH] Merge remote-tracking branch 'remotes/cyanogen/gingerbread'
into gingerbread
project dalvik/
From 2cf2aef70e854e762fb58b3548739398787f78a5 Mon Sep 17 00:00:00 2001
From: Tanguy <[email protected]>
Date: Thu, 2 Jun 2011 15:05:08 +0200
Subject: [PATCH] Csaba Miklos: dvmGetThreadName can return NULL, in this case
the whole dalvik collapses.
project development/
From a079acbcee4c04cf9043609a6ae7a71ddf78c194 Mon Sep 17 00:00:00 2001
From: Steve Kondik <[email protected]>
Date: Sat, 30 Apr 2011 02:17:46 -0400
Subject: [PATCH] Merge branch 'gingerbread' of
git://android.git.kernel.org/platform/development into HEAD
project device/advent/vega/
From ccc3bc554de618f69c58fbc78d5dc4ca70162eba Mon Sep 17 00:00:00 2001
From: FUKAUMI Naoki <[email protected]>
Date: Sun, 15 May 2011 06:51:15 +0900
Subject: [PATCH] vega: fix market FC on purchase
remove problematic values from overlay (use default values)
remove old "market fix"
Change-Id: Id2c4207358faacc54cebbe6176f1db3d6bab69fd
project device/bn/encore/
From 05f7f75f079081c593fdb23182b99e12d247edf4 Mon Sep 17 00:00:00 2001
From: Steve Kondik <[email protected]>
Date: Fri, 3 Jun 2011 06:38:17 +0400
Subject: [PATCH] Merge "Remove screen on animation" into gingerbread
project device/common/
From c491cd697e4bc16a52e3b1d254e4151ee3aad8bf Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Queru <[email protected]>
Date: Wed, 30 Mar 2011 08:28:30 -0700
Subject: [PATCH] Add crespo4g.
Change-Id: I4ff1f3d182dce9d00553c6e14f77f50ca098f219
project device/commtiva/z71/
From 60c1bc61c92270f400d3b3d5395e8443a1a95d0f Mon Sep 17 00:00:00 2001
From: Ricardo Cerqueira <[email protected]>
Date: Mon, 23 May 2011 10:56:26 +0100
Subject: [PATCH] Updated prebuilt kernel
Disable headset inputdev switch events
Change-Id: Id906074719231154c3a2932098f4db07e8df479d
project device/dell/streak7/
From 79c4e3030aa378c37afd28231780e4857181bdf8 Mon Sep 17 00:00:00 2001
From: Koushik Dutta <[email protected]>
Date: Sat, 19 Mar 2011 01:14:03 -0700
Subject: [PATCH] initial
project device/elocity/a7/
From a924d58ea2e5f635357fcfeb5150b6ad489c93c0 Mon Sep 17 00:00:00 2001
From: Koushik Dutta <[email protected]>
Date: Sat, 12 Mar 2011 14:33:56 -0800
Subject: [PATCH] initial commit
project device/geeksphone/one/
From 21222b7545e2c8808708d63b1398bcfffc1fb206 Mon Sep 17 00:00:00 2001
From: Ricardo Cerqueira <[email protected]>
Date: Sat, 30 Apr 2011 21:40:15 +0100
Subject: [PATCH] Fix 2.3.4 USB switch
Change-Id: Ia6af4779dfe11a5c178e487fbc899405f39a0a1c
project device/geeksphone/zero/
From 9d9a5c0908af4245ec505e27374498993fb81caa Mon Sep 17 00:00:00 2001
From: Ricardo Cerqueira <[email protected]>
Date: Mon, 23 May 2011 10:56:00 +0100
Subject: [PATCH] Updated prebuilt kernel
Disable headset inputdev switch events
Change-Id: I5114a13882db52ebda3c9394d8dfc7ac08606b90
project device/htc/ace/
From fade1bb22984486899459c3ee401620abf7c5a70 Mon Sep 17 00:00:00 2001
From: Giulio Cervera <[email protected]>
Date: Wed, 1 Jun 2011 00:20:23 +0200
Subject: [PATCH] ace: isl29028: allow ps_kadc write to other
Change-Id: Ia8d3bc20b810adcce03fa657d67fa45676a08107
project device/htc/bravo/
From 6a3066b2f0a41a02b298938c8a569a2a2ab28717 Mon Sep 17 00:00:00 2001
From: Giulio Cervera <[email protected]>
Date: Sat, 28 May 2011 10:21:48 +0200
Subject: [PATCH] bravo: Support for Webkit acceleration
Change-Id: Id222235a05750493eae02872d7e175dd8459bacc
project device/htc/bravoc/
From 812c5887470a6145e382c10caa9039b65ced46ac Mon Sep 17 00:00:00 2001
From: Giulio Cervera <[email protected]>
Date: Sat, 28 May 2011 10:22:25 +0200
Subject: [PATCH] bravoc: Support for Webkit acceleration
Change-Id: I3b8c834251551af415d2d35d9e7362e3b1fa18df
project device/htc/buzz/
From 23f35a342a043dc79b8ae07116a6219e60d03c79 Mon Sep 17 00:00:00 2001
From: Arne Coucheron <[email protected]>
Date: Mon, 30 May 2011 07:35:09 +0200
Subject: [PATCH] buzz: Update prebuilt recovery kernel
Switched from smartass to ondemand governor, and lowered min. frequency
to avoid that the phone runs at full speed while offmode charging
Change-Id: Ic61df925919603ccac078ef321bc78745fb0cfc9
project device/htc/click/
From c5568a5383638cbff08f04228e8f873b2c867542 Mon Sep 17 00:00:00 2001
From: KalimochoAz <[email protected]>
Date: Mon, 30 May 2011 09:48:11 +0200
Subject: [PATCH] Kernel and wifi updates for click stability
Change-Id: I96bcd04052e0bdceeded8dbce85dc8b52100817e
project device/htc/common/
From 1e9c91933bd0c2c9bb007cceaf640568a4b9432e Mon Sep 17 00:00:00 2001
From: Koushik Dutta <[email protected]>
Date: Sun, 19 Dec 2010 03:54:35 -0800
Subject: [PATCH] fix build
Change-Id: Icfeb4ec4c171db60943ba857bdb03940a6c5379c
project device/htc/desirec/
From 65d4541b777e44629f7d9df7b6b6126e7bb1eb7c Mon Sep 17 00:00:00 2001
From: workshed64 <[email protected]>
Date: Sat, 7 May 2011 13:49:49 -0400
Subject: [PATCH] Eris: Update for per-interface DHCP support
Change-Id: I4ef5229443e973c08221a99d7b9c3f6fae6474b8
project device/htc/dream_sapphire/
From 76001b2fc591d41db70c6ce61ab4554b09a1f308 Mon Sep 17 00:00:00 2001
From: Firerat <[email protected]>
Date: Fri, 20 May 2011 14:21:24 +0100
Subject: [PATCH] Updated dhcpcd service for 2.3.4
Change-Id: Idbc15fc70152207971fabda0297fd8a32ead8faf
project device/htc/espresso/
From 5d07b7bcbb3fda6f506eae9463bbf72bc0e45a3c Mon Sep 17 00:00:00 2001
From: Steve Kondik <[email protected]>
Date: Thu, 26 May 2011 02:19:34 -0400
Subject: [PATCH] espresso: Add iprenew service
Change-Id: I3ea0e2516b7b821c130d5dab93d35dbac36c4af0
project device/htc/glacier/
From 16d901d57f3950195768dc68d4c4e7539dbc53f8 Mon Sep 17 00:00:00 2001
From: Keyan Mobli <[email protected]>
Date: Sat, 14 May 2011 01:58:10 -0500
Subject: [PATCH] Update to Gingerbread kineto
Change-Id: I2b8b38e7b2b0d51fa2e5f7d9afe282964b10b79e
project device/htc/hero/
From 005a8ad94b8a16349d9f7289f1532ae163e33b87 Mon Sep 17 00:00:00 2001
From: Esa Laukkanen <[email protected]>
Date: Thu, 26 May 2011 21:44:49 +0200
Subject: [PATCH] hero: Updated prebuilt kernel ,fix for vpn
Change-Id: I4c2b600e24990800020304fe7b6863ed15451288
project device/htc/heroc/
From 0f0a16403446f61c1759118d59ad421fb53bfd75 Mon Sep 17 00:00:00 2001
From: Jordan Patterson <[email protected]>
Date: Mon, 16 May 2011 09:54:42 -0600
Subject: [PATCH] Merge fix for PduParser.java - Part 3
Missed heroc and speedy commits. These shouldn't be necessary with the
fixed PduParser.java
Change-Id: I853c0f6ef1c040c1d2dd553df177e01967d952d3
project device/htc/inc/
From c29dbe0b2cd28861c5bb717e9082b3c46512e9e2 Mon Sep 17 00:00:00 2001
From: Josh Stone <[email protected]>
Date: Tue, 31 May 2011 10:07:14 -0700
Subject: [PATCH] INC: update prebuilt kernel
- Adds USB accessory support.
- Updates other generic cm-kernel changes.
Change-Id: I36d794e8fbbd4fb780ce2a6b390bb1315eaf2024
project device/htc/incs/
From 1119ce1ae741a071dcb2ff249a2de51b78b6f671 Mon Sep 17 00:00:00 2001
From: Koushik Dutta <[email protected]>
Date: Fri, 22 Apr 2011 15:45:49 -0700
Subject: [PATCH] initial comit
project device/htc/legend/
From 52fb9b4888bc6961eba079d5fa4065c161468b06 Mon Sep 17 00:00:00 2001
From: Alexander Hofbauer <[email protected]>
Date: Mon, 23 May 2011 10:50:11 +0200
Subject: [PATCH] Add dhcp renewal service for tiwlan0 and use
/proc/calibration in AP mode
Change-Id: I27d27dfc794d574d8d26e42fe7e421168befdeca
project device/htc/leo/
From 8044589cc2048b68bc90293c2a8beed90a8bcefc Mon Sep 17 00:00:00 2001
From: Steve Kondik <[email protected]>
Date: Fri, 20 May 2011 09:39:47 +0400
Subject: [PATCH] Merge "leo: add postrecoveryboot to change recovery.fstab"
into gingerbread
project device/htc/liberty/
From 1f2ff0d13283b7103374988d2762d57659d04262 Mon Sep 17 00:00:00 2001
From: attn1 <[email protected]>
Date: Thu, 2 Jun 2011 23:20:13 -0400
Subject: [PATCH] Update prebuilt kernel & wifi module
Change-Id: I093d75b670cdf38f82308313b6fe14ac14c07be0
project device/htc/mecha/
From 0a9b8e111e3a52dca0946724abfffbec6566f741 Mon Sep 17 00:00:00 2001
From: Tony Layher <[email protected]>
Date: Thu, 2 Jun 2011 23:59:44 -0400
Subject: [PATCH] Mecha update Boardconfig.
Adds extra sys props
Adds the non standard rmnet_sdio interface
Change-Id: I0c1d302182bd40c2c0e59fc823c7c9a79d21674c
project device/htc/msm7x30-common/
From 20951a0175379fb031fe38c55c3934c0d5b9d198 Mon Sep 17 00:00:00 2001
From: Giulio Cervera <[email protected]>
Date: Tue, 17 May 2011 11:31:49 +0200
Subject: [PATCH] msm7x30-common: add sip permission
Change-Id: Iecf476c647e92e4313d987318493bca19be463dd
project device/htc/passion/
From b04840992c74e9065993d62567bf6c260fdc6cd2 Mon Sep 17 00:00:00 2001
From: Irfan Sheriff <[email protected]>
Date: Mon, 7 Mar 2011 16:51:31 -0800
Subject: [PATCH] DO NOT MERGE update for per interface dhcp support
Bug: 4022070
Change-Id: Ie26b438620c5ea720060fc93e1bab46947cd20e5
project device/htc/passion-common/
From 8e535cdfdd6fea9b4dcac2e597e82c0c4278e561 Mon Sep 17 00:00:00 2001
From: Steve Kondik <[email protected]>
Date: Sat, 30 Apr 2011 04:30:58 -0400
Subject: [PATCH] passion: Update prebuilt kernel and modules
Change-Id: I97d618798fc62809fb111370916e0d442f4d7c6c
project device/htc/saga/
From e9eabccc22db25bc6bd6f9ccc5fa356469060503 Mon Sep 17 00:00:00 2001
From: hcdrjacob <hcdrjacob@giovanni.(none)>
Date: Sat, 23 Apr 2011 07:08:41 +0800
Subject: [PATCH] Add BOARD_HAS_LARGE_FILESYSTEM := true
project device/htc/speedy/
From 414e558d91cbab29e60beea148b9991839a29f06 Mon Sep 17 00:00:00 2001
From: Steve Kondik <[email protected]>
Date: Fri, 3 Jun 2011 06:36:39 +0400
Subject: [PATCH] Merge "speedy: update kernel and modules" into gingerbread
project device/htc/supersonic/
From ea00bc58d71b7f668acc588cb8c8d4f47e52340f Mon Sep 17 00:00:00 2001
From: Steve Kondik <[email protected]>
Date: Mon, 23 May 2011 20:56:31 -0400
Subject: [PATCH] supersonic: Add iprenew support
Change-Id: I0e1e7eec0344ad7b88ac96dac275e700daea9f8c
project device/htc/vision/
From 4bb26c9150073296e15029ddce5e73dc86d04c52 Mon Sep 17 00:00:00 2001
From: Giulio Cervera <[email protected]>
Date: Tue, 31 May 2011 23:09:42 +0200
Subject: [PATCH] vision: update prebuilt kernel
Change-Id: Ic1dade00a3a0db058eb79b9d09a06ae9c17845fa
project device/huawei/ascend/
From c89763ba40dcea71691efd960bb4521b3b4f284c Mon Sep 17 00:00:00 2001
From: Koushik Dutta <[email protected]>
Date: Wed, 26 Jan 2011 01:25:06 -0800
Subject: [PATCH] recovery.fstab
Change-Id: I81de71d02bdd8640cad39fa70fa57673151a08bc
project device/huawei/ideos/
From e58dce7bb9bd9a400b515d9a3c37aaba99893fab Mon Sep 17 00:00:00 2001
From: Koushik Dutta <[email protected]>
Date: Mon, 4 Apr 2011 20:17:08 -0700
Subject: [PATCH] fix
Change-Id: Ibc488eb300d8b1dcd5add4276b4a3daeaa60d70f
project device/huawei/u8220/
From ad6a51ccd75defe115a14985caf7e6f9e0676eb6 Mon Sep 17 00:00:00 2001
From: Tom Giordano <[email protected]>
Date: Mon, 9 May 2011 07:44:03 +1000
Subject: [PATCH] Merge branch 'gingerbread' of
github.com:TomGiordano/android_device_huawei_u8220 into
gingerbread
Conflicts:
libaudio/AudioHardware.cpp
project device/lge/p990/
From f934b20dedd91343ab704fee757af1f97d3eba65 Mon Sep 17 00:00:00 2001
From: Ricardo Cerqueira <[email protected]>
Date: Fri, 3 Jun 2011 01:14:26 +0100
Subject: [PATCH] p990: Update prebuilt kernel
Change-Id: I64069f56c08fe1b14d8aaf216704e6f244c5d3b2
project device/lge/p999/
From 506a543b2dcdbd078d0ad001840959d07cfe4cb6 Mon Sep 17 00:00:00 2001
From: Steve Kondik <[email protected]>
Date: Thu, 2 Jun 2011 15:29:30 -0400
Subject: [PATCH] p999: Update prebuilt kernel and modules
project device/lge/star-common/
From c7a5ef017d7ded3ab7f0bb65c0054759d7a084ef Mon Sep 17 00:00:00 2001
From: Ricardo Cerqueira <[email protected]>
Date: Tue, 31 May 2011 14:57:37 +0100
Subject: [PATCH] Updated prebuilt rild
SERVICE_LINE is apparently a p990-only thing
Change-Id: I836de8dc691c441c638d13e93ce101b3fff3d376
project device/lge/thunderg/
From dc507b8ba38ba0e40a6b95ed64193157c68bad94 Mon Sep 17 00:00:00 2001
From: Steve Kondik <[email protected]>
Date: Thu, 28 Apr 2011 01:36:24 -0400
Subject: [PATCH] Stop breaking my build.
Change-Id: If950ac38cf82c9f748bd7e3cf2188bfcd37abd50
project device/malata/smb-common/
From 452687b8b2cfbad4ac89c27746ad6fac58d58cc2 Mon Sep 17 00:00:00 2001
From: Brint E. Kriebel <[email protected]>
Date: Fri, 6 May 2011 13:33:06 -0700
Subject: [PATCH] smb-common: update settings for market access
project device/malata/smb_a1002/
From f087beb40a66c2eeaf66df2647c0d3c26f0268db Mon Sep 17 00:00:00 2001
From: Brint E. Kriebel <[email protected]>
Date: Fri, 6 May 2011 14:42:01 -0700
Subject: [PATCH] smb_a1002: update settings for market access
Change-Id: I4e720c55f10f286eb7fe0e6b2f80330b85a49275
project device/malata/smb_a1004/
From bde1bfca0339810c286046070939628f06652cb4 Mon Sep 17 00:00:00 2001
From: Ricardo Cerqueira <[email protected]>
Date: Tue, 31 May 2011 22:59:18 +0100
Subject: [PATCH] smb_a1004: Redo device repo to use new shared smb-common
project device/malata/smb_a1011/
From fba21bb954814d705e2e2a2b5475e1271b5408dd Mon Sep 17 00:00:00 2001
From: Ricardo Cerqueira <[email protected]>
Date: Tue, 31 May 2011 23:14:14 +0100
Subject: [PATCH] Remove camera-related definitions
This device has no camera at all
project device/malata/smb_b9701/
From 7ec494d1459242dc80e8b650d347b44b0251512b Mon Sep 17 00:00:00 2001
From: Brint E. Kriebel <[email protected]>
Date: Fri, 6 May 2011 14:43:27 -0700
Subject: [PATCH] smb_b9701: update settings for market access
project device/motorola/jordan/
From 86d197aade3d52be6f4527ac615bcb6afe9b5c51 Mon Sep 17 00:00:00 2001
From: Tanguy Pruvot <[email protected]>
Date: Sat, 4 Jun 2011 00:30:17 +0200
Subject: [PATCH] fix download from market
project device/motorola/morrison/
From 0c005a169d7ac4fd69d945affea7d0965b0f06ec Mon Sep 17 00:00:00 2001
From: Dane Wagner <[email protected]>
Date: Thu, 2 Jun 2011 17:23:57 -0500
Subject: [PATCH] Make shell scripts executable
Change-Id: I481950991a1a8ff52e5a1f7499d6718973102e6a
project device/motorola/sholes/
From b0e6d74bb536ae626d778bcdf2768e547d7fbddd Mon Sep 17 00:00:00 2001
From: Matt Rinsch <[email protected]>
Date: Thu, 2 Jun 2011 09:45:19 -0400
Subject: [PATCH] kernel & modules
project device/motorola/stingray/
From 0485cda88a0670e3c877dca4ffc6cbf539a4b6f3 Mon Sep 17 00:00:00 2001
From: Koushik Dutta <[email protected]>
Date: Sat, 16 Apr 2011 13:16:01 -0700
Subject: [PATCH] switch up sdcard to actually look on the sd card. need to
fix up the boot kernel to switch the sdcard mounts around.
Change-Id: I7e7615156fe8c3f194cd9aa5ffe07f215d65748c
project device/motorola/zeppelin/
From f56423b64015b870d50444a99f4e3cc15a90ad43 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Emilio=20L=C3=B3pez?= <[email protected]>
Date: Mon, 30 May 2011 20:14:28 +0000
Subject: [PATCH] Revert "zeppelin: reduce kPreviewBufferCount to 2"
This reverts commit b0d38018f1f8b7ec66ce45f98afbc36aa6c06367.
project device/sample/
From 3f6a489c7262c3a93f287ce58ea504cb92ada9bf Mon Sep 17 00:00:00 2001
From: Dan Morrill <[email protected]>
Date: Tue, 15 Feb 2011 15:42:22 -0800
Subject: [PATCH] Adding a file to hold the com.nxp.mifare feature related to
NFC.
Change-Id: Ic9bfdac3d1edf0741c26168c7c76e06adc8a4adb
project device/samsung/aries-common/
From bb0592656268a3c6db62c0c13ec517ac9854039e Mon Sep 17 00:00:00 2001
From: codeworkx <[email protected]>
Date: Tue, 31 May 2011 16:26:45 +0200
Subject: [PATCH] libaudio: added support for fmradio
Change-Id: I859f06768e8cb3e60cadc17346b72952feffba09
project device/samsung/captivatemtd/
From b4e5abc24ebd6a2d93d821c4a8b38588a9501887 Mon Sep 17 00:00:00 2001
From: atinm <[email protected]>
Date: Thu, 2 Jun 2011 21:53:59 -0400
Subject: [PATCH] Updated kernel for backlight timer shutoff
Change-Id: Ibb13440d9c4726e5211fda0dca67bd6204ccfff1
project device/samsung/crespo/
From e18ae6beda6ded9c59ab136be682842abbe05edd Mon Sep 17 00:00:00 2001
From: Koushik Dutta <[email protected]>
Date: Tue, 17 May 2011 16:31:33 -0700
Subject: [PATCH] Merge branch 'gingerbread' of
git://github.com/CyanogenMod/android_device_samsung_crespo
into gingerbread
project device/samsung/crespo4g/
From 9c44f888ab22c8f433903c347b9a5515540df65f Mon Sep 17 00:00:00 2001
From: Brandon Bennett <[email protected]>
Date: Fri, 20 May 2011 09:14:03 -0600
Subject: [PATCH] Fix accelerometer
crespo4g/device-vendor-blobs.mk was not being called during the build so the
libakm.so was not being properly included.
Change-Id: I0ed385ca2e4e96518fe68db8c75c8e8415145359
project device/samsung/epic4g/
From d690307b82634032fa13de6936aa8e6f3192e563 Mon Sep 17 00:00:00 2001
From: Koushik Dutta <[email protected]>
Date: Sat, 19 Mar 2011 01:13:09 -0700
Subject: [PATCH] initial
project device/samsung/fascinate/
From c5abaeca4985e6f8cdbb573b37166ee4ecf9f6d7 Mon Sep 17 00:00:00 2001
From: jt1134 <[email protected]>
Date: Sun, 27 Feb 2011 17:08:33 -0800
Subject: [PATCH] specify correct ums lunfile for fascinate
project device/samsung/galaxys4g/
From 4a8a81564f1ed82575a63cc652f170f90a76a8da Mon Sep 17 00:00:00 2001
From: Koushik Dutta <[email protected]>
Date: Mon, 30 May 2011 16:41:07 -0700
Subject: [PATCH] sgs4g
Change-Id: I76165e6684b089cb8b0c9e081c406b85e62188e6
project device/samsung/galaxysmtd/
From f2176e4864f20ca0d0ef7c4f4afdb30db13fd613 Mon Sep 17 00:00:00 2001
From: atinm <[email protected]>
Date: Thu, 2 Jun 2011 21:54:04 -0400
Subject: [PATCH] Updated kernel for backlight timer shutoff
Change-Id: Iefec45e2c026c8438f6fed0a1f0e0d2140015967
project device/samsung/vibrantmtd/
From d4adb046789b8e5749378c3d862fb6d2f5f120ae Mon Sep 17 00:00:00 2001
From: atinm <[email protected]>
Date: Thu, 2 Jun 2011 21:54:08 -0400
Subject: [PATCH] Updated kernel for backlight timer shutoff
Change-Id: I03eb661f4527b187593c042c40b930fbe583f977
project device/samsung/vzwtab/
From 9a3257cad67072ab5357a149dc0405d20d3651b0 Mon Sep 17 00:00:00 2001
From: Khas'Mek <[email protected]>
Date: Thu, 12 May 2011 10:41:52 -0700
Subject: [PATCH] Janky Backbuffer = True
project device/zte/blade/
From c698c62cd24fc939e980db282c6af96eadb625e9 Mon Sep 17 00:00:00 2001
From: Steve Kondik <[email protected]>
Date: Fri, 3 Jun 2011 06:34:29 +0400
Subject: [PATCH] Merge "blade: update wifi firmware and module." into
gingerbread
project external/DroidSSHd/
From 64fd98b34ad5c2cca37de019188d8b3196455850 Mon Sep 17 00:00:00 2001
From: Tanguy Pruvot <[email protected]>
Date: Fri, 3 Jun 2011 21:28:35 +0200
Subject: [PATCH] unregister boot_complete broadcast receiver
project external/alsa-lib/
From a10f7f066bc40432ed2b682439ec2c0df8d7a4da Mon Sep 17 00:00:00 2001
From: fattire <[email protected]>
Date: Sun, 20 Mar 2011 01:59:22 -0700
Subject: [PATCH] Fix Alsa UCM to build under Android
Change-Id: Ib99a3db496eaade14bed56698721ec2acf1b2d81
project external/alsa-utils/
From b55aebde11e8b9ea95a61859a8a7d2f7c7681a52 Mon Sep 17 00:00:00 2001
From: fattire <[email protected]>
Date: Sun, 20 Mar 2011 02:15:12 -0700
Subject: [PATCH] build alsa_ucm. UCM is the nwe use case manager.
Change-Id: I2cffafd4008c91195f4e7bf2072421f3d6752eae
project external/apache-http/
From b91c5e936342afbdd58c88ac604d5dd505d0fe0c Mon Sep 17 00:00:00 2001
From: Brian Carlstrom <[email protected]>
Date: Sun, 2 Jan 2011 16:19:22 -0800
Subject: [PATCH] DefaultRequestDirector should ignore IOExceptions from stale
connections
The DefaultRequestDirector was letting IOExceptions from closing stale
connections affect new requests. However, it was very common to
received "SSL shutdown failed" exceptions in this case, since an SSL
"close notify" message could not be sent. Now these and other
IOExceptions are ignored so the request can continue with a new
socket.
Bug: 3405962
Bug: 3317717
git cherry-pick -e 843bcb6f4f65c0cdca327c6467813b88c52042f3
Change-Id: I443b4915f6473e07d74a37377dade6ac1f9f600c
project external/astl/
From c3c760978c34d5eeea1205c0bf7f27444e192a98 Mon Sep 17 00:00:00 2001
From: The Android Open Source Project <[email protected]>
Date: Fri, 16 Jul 2010 11:41:34 -0700
Subject: [PATCH] add meta-files about 3rd party projects
Change-Id: I5630c16f04c376ca619055f268eee47fd57a23a8
project external/bash/
From 744878f09637fad57e28c5eb5e277cdb50b26485 Mon Sep 17 00:00:00 2001
From: Scott Anderson <[email protected]>
Date: Wed, 9 Feb 2011 11:06:30 -0500
Subject: [PATCH] Add sysro and sysrw aliases
Change-Id: If7507e41c5f67e19b5f2879a3b3896678e1fadf2
project external/bison/
From 889df9c1efa7ca5de113407ab7793b57a6db677d Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Queru <[email protected]>
Date: Mon, 8 Mar 2010 18:04:16 -0800
Subject: [PATCH] Add an empty CleanSpec.mk
Change-Id: Id2f90da2d2b7723e052d05c0469ca8277b1b739c
project external/blktrace/
From ac4461c3b3e7bcbafe5336b9478657d0fa3e08aa Mon Sep 17 00:00:00 2001
From: The Android Open Source Project <[email protected]>
Date: Fri, 16 Jul 2010 11:41:34 -0700
Subject: [PATCH] add meta-files about 3rd party projects
Change-Id: I8c4043d5f1cda9b0faf9ec1a4a7da9efcc985fa3
project external/bluetooth/bluez/
From 3bbbd17817d638ea76055da5c4b0dbe2abb58440 Mon Sep 17 00:00:00 2001
From: Steve Kondik <[email protected]>
Date: Sat, 30 Apr 2011 02:52:34 -0400
Subject: [PATCH] Merge branch 'gingerbread' of
git://android.git.kernel.org/platform/external/bluetooth/bluez
into HEAD
project external/bluetooth/glib/
From 0c01eb3a7313a580fe34044bcdc3337d067c8a15 Mon Sep 17 00:00:00 2001
From: Jaikumar Ganesh <[email protected]>
Date: Fri, 27 Aug 2010 19:47:52 -0700
Subject: [PATCH] DO NOT MERGE Reverse meaning of ANDROID_STUB C flag.
Also add defaults so that bluetoothd doesn't crash.
Change-Id: I263cfecff6889ce0530b31b98277df04dd270fb5
project external/bluetooth/hcidump/
From ce36a6c7c5f8043c038415d8e270d55d9834008d Mon Sep 17 00:00:00 2001
From: Jaikumar Ganesh <[email protected]>
Date: Tue, 1 Jun 2010 19:19:39 -0700
Subject: [PATCH] Update include paths for Bluez.
Change-Id: I34a875feb37bc9574d95584bd741eaffc6247b66
project external/bouncycastle/
From 3ab12958718f17e48e2816a84d403f6305cc2800 Mon Sep 17 00:00:00 2001
From: Brian Carlstrom <[email protected]>
Date: Wed, 23 Mar 2011 16:43:51 -0700
Subject: [PATCH] Add Chrome-style certificate blacklist to CertPathValidator
DO NOT MERGE
Based on Chrome's CLs to blacklist the malformed certificates from
Comodo's recent fraud incident.
http://src.chromium.org/viewvc/chrome?view=rev&revision=78478
http://src.chromium.org/viewvc/chrome?view=rev&revision=78748
http://src.chromium.org/viewvc/chrome?view=rev&revision=78869
Bug: 4165439
git cherry-pick -e 34c261b1a00029744cfb7de1a69dca4b3ffb51a1
Change-Id: Ib756d920b30c7b203dd1607bcad46b0eaced1551
project external/bsdiff/
From df980d633fd0bdc0b89af26630f543d91bb87e68 Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Queru <[email protected]>
Date: Mon, 8 Mar 2010 18:04:18 -0800
Subject: [PATCH] Add an empty CleanSpec.mk
Change-Id: I3944d75f64a31479d843116c69a4b1a6ad96b73b
project external/busybox/
From 47be100253dfdaea980d9ed736c162caceff0c79 Mon Sep 17 00:00:00 2001
From: Tanguy Pruvot <[email protected]>
Date: Wed, 1 Jun 2011 22:26:11 +0200
Subject: [PATCH] extend user/group names to 12 char. if terminal has more
than 88 cols \(or -w 88 is set\)
Signed-off-by: Tanguy Pruvot <[email protected]>
project external/bzip2/
From 879585bbef51b4cabaac6340a95d807dca379cdc Mon Sep 17 00:00:00 2001
From: Nick Kralevich <[email protected]>
Date: Tue, 21 Sep 2010 16:23:44 -0700
Subject: [PATCH] am 701ad7cc: (-s ours) DO NOT MERGE cherry-picked
172b266ed7845eac2edc7e7f8a72371356a9a277 from master
Merge commit '701ad7cca713ec5054e420bde1b32b86d18ef08b' into gingerbread
* commit '701ad7cca713ec5054e420bde1b32b86d18ef08b':
DO NOT MERGE cherry-picked 172b266ed7845eac2edc7e7f8a72371356a9a277 from master
project external/chromium/
From 5e43ad9465e402d595a3c960784b1effe2e9bd88 Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Queru <[email protected]>
Date: Mon, 8 Mar 2010 18:04:19 -0800
Subject: [PATCH] Add an empty CleanSpec.mk
Change-Id: I91bcff10e8ce25c9459ee8b7c225fad856e06671
project external/clearsilver/
From 7ae7d3b50bfdb03e2d1406578e4ed802757ad6b1 Mon Sep 17 00:00:00 2001
From: Steve Kondik <[email protected]>
Date: Mon, 28 Feb 2011 21:04:55 -0500
Subject: [PATCH] Merge branch 'gingerbread' of
git://android.git.kernel.org/platform/external/clearsilver
into 233-merge
Conflicts:
cgi/Android.mk
cs/Android.mk
java-jni/Android.mk
util/Android.mk
Change-Id: I9b295a9be5fa0f75872d153f0421aed96d14a5eb
project external/compcache/
From 5fdea2182e615432f615971d9353734fabf5ade0 Mon Sep 17 00:00:00 2001
From: Tom Giordano <[email protected]>
Date: Thu, 7 Apr 2011 19:25:09 +1000
Subject: [PATCH] compcache: Add LOCAL_MODULE_TAGS
Change-Id: I1bba626ede55279a4424833aa1c6a91ebf7a144a
project external/dbus/
From 4bda01d38f1ef164d76bb8e266caaabfd549ef9c Mon Sep 17 00:00:00 2001
From: Havoc Pennington <[email protected]>
Date: Tue, 10 Jul 2007 16:00:44 +0000
Subject: [PATCH] DO NOT MERGE: Fix crash in Dbus.
Bug: 3189185
Original change by: Havoc Pennington <[email protected]>
* dbus/dbus-connection.c (struct DBusConnection): Fix from Olivier
Hochreutiner to avoid trying to protect individual bits in a word
with different locks (make dispatch_acquired and io_path_acquired
dbus_bool_t rather than bitfields)
Change-Id: Ic989fb880b02bcb02ad38292c40970b4c76afa44
project external/dhcpcd/
From 17fdc0dee1db0246a59cd3b28278389043fe5134 Mon Sep 17 00:00:00 2001
From: Paul Stewart <[email protected]>
Date: Fri, 25 Mar 2011 14:21:44 -0700
Subject: [PATCH] dhcp: Remove errant extra ref (DO NOT MERGE) [bug: 4174566]
Change-Id: If2e7a394c9ab65f7a8d69a4e7b240705204bd34c
Signed-off-by: Dmitry Shmidt <[email protected]>
project external/dnsmasq/
From 1b25960ebe33754410ba3c663c1c45662c779381 Mon Sep 17 00:00:00 2001
From: The Android Open Source Project <[email protected]>
Date: Fri, 16 Jul 2010 11:41:34 -0700
Subject: [PATCH] add meta-files about 3rd party projects
Change-Id: I84244ea72c1a603cc4342da13f67831dcd8eaf34
project external/dropbear/
From 94c28982c53bf25ec2bac4b48d9d30ee0d6b0a29 Mon Sep 17 00:00:00 2001
From: Tanguy Pruvot <[email protected]>
Date: Wed, 1 Jun 2011 02:04:51 +0200
Subject: [PATCH] set sftp-server path to /system/xbin
project external/e2fsprogs/
From 26c7f71ba042a41ebe3e6d4118fc7350311ca45d Mon Sep 17 00:00:00 2001
From: Giulio Cervera <[email protected]>
Date: Thu, 30 Dec 2010 12:47:24 +0100
Subject: [PATCH] build e2label
Change-Id: I089f5b0a6a294f15d9a7eac5f8cb6e938b823b00
project external/easymock/
From 17d5eb4006c438775d8eaa7600e947e4ac090a18 Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Queru <[email protected]>
Date: Mon, 8 Mar 2010 18:04:21 -0800
Subject: [PATCH] Add an empty CleanSpec.mk
Change-Id: I5c0ebfe560daff00f0b9ce2b53914070abc231d5
project external/elfcopy/
From 62c1bed1c4505369cac2e72fbe30452a598fb690 Mon Sep 17 00:00:00 2001
From: Nick Kralevich <[email protected]>
Date: Tue, 20 Apr 2010 11:17:57 -0700
Subject: [PATCH] fix bug 2603717. Ensure all elf program headers are copied.
When stripping a binary, soslim calls adjust_elf. adjust_elf
copies over the elf program headers, making adjustments
as necessary. Under some circumstances, the code which loops
over all the program headers will fail to call gelf_update_phdr().
Instead of copying over the elf program header from the old
binary to the new binary, a "NULL" header is written to the
binary.
Change-Id: I7afdc8e3af2638c386546f1bfe4f151e1f002087
project external/elfutils/
From 84cf4183ba6f577ee01abe7f1f5a6d4b23df35a8 Mon Sep 17 00:00:00 2001
From: The Android Open Source Project <[email protected]>
Date: Fri, 16 Jul 2010 11:41:34 -0700
Subject: [PATCH] add meta-files about 3rd party projects
Change-Id: I06ddc1734408f4d7180178254bf85de6a9703d6d
project external/embunit/
From f5eb8b0c9abf1e9911b5c84a555bc495651595e5 Mon Sep 17 00:00:00 2001
From: Nick Kralevich <[email protected]>
Date: Thu, 13 May 2010 15:00:32 -0700
Subject: [PATCH] Get rid of warnings when compiled with -Wformat-security
Change-Id: Ia671b74229001b02b2538a5d5f580532d7c88306
project external/emma/
From 4d37e21b7c2fa378dbf7cfe2ea57d7f5991fe6cd Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Queru <[email protected]>
Date: Mon, 8 Mar 2010 18:04:22 -0800
Subject: [PATCH] Add an empty CleanSpec.mk
Change-Id: I3859e128f1ce3d98eeb8bac4400231c792eb38f1
project external/esd/
From 224a67f2683a7ee997179fc5dd16115e39987b0f Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Queru <[email protected]>
Date: Mon, 8 Mar 2010 18:04:23 -0800
Subject: [PATCH] Add an empty CleanSpec.mk
Change-Id: I2c0523d0fd01c464fbcead8b73e5456b3dd25f9f
project external/expat/
From 204e2ef0e1a2c2da0087cccb0c9b618d52f1d584 Mon Sep 17 00:00:00 2001
From: Jesse Wilson <[email protected]>
Date: Thu, 16 Sep 2010 15:47:50 -0700
Subject: [PATCH] Add optional tags to expat.
Change-Id: I356154b04a356a51a532a691d918c497c421586b
project external/fdlibm/
From 26ea4299bba7c618fdf97624b39e33444410896d Mon Sep 17 00:00:00 2001
From: Elliott Hughes <[email protected]>
Date: Tue, 24 Aug 2010 16:50:43 -0700
Subject: [PATCH] Make the fdlibm.h header file hygienic.
(I'm going to send this patch upstream.)
Change-Id: I1281719ea6cc199f917919d39090cdfc90a05bf5
project external/flac/
From 84110cd94e840d42b7c43789e67f18da67d551b0 Mon Sep 17 00:00:00 2001
From: Steve Kondik <[email protected]>
Date: Sat, 29 Jan 2011 18:11:31 -0500
Subject: [PATCH] libFLAC: Added LOCAL_MODULE_TAGS and removed prelink
project external/freetype/
From aacb8e1368a883fcbc9fe64fd0e460cef9c9b20c Mon Sep 17 00:00:00 2001
From: Nick Kralevich <[email protected]>
Date: Tue, 14 Sep 2010 17:02:58 -0700
Subject: [PATCH] upgrade freetype to 2.4.2.
Bug: 2969145
Change-Id: I8debbbe0bd478d9cf8c39cff5179981b5f3b371a
project external/fsck_msdos/
From b6ee08aadb580341a4d80943741b80de16a88b5d Mon Sep 17 00:00:00 2001
From: [email protected] <[email protected]>
Date: Thu, 4 Nov 2010 15:35:36 -0400
Subject: [PATCH] Integrate Samsung fsck_msdos fixes, including problem
seeking beyond 4 gig
Change-Id: I8829a3a2c26625d7405fa0a43da1640ea5c9ffbc
Signed-off-by: Mike Lockwood <[email protected]>
project external/genext2fs/
From 28f10892a39db10b1c65125723d9737de865ef56 Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Queru <[email protected]>
Date: Mon, 8 Mar 2010 18:04:25 -0800
Subject: [PATCH] Add an empty CleanSpec.mk
Change-Id: I6dc02b4fd79f01d4c0d59b8e0d5259f81ef905b0
project external/giflib/
From b2597268aef084202a8c349d1cc072c03c6e22eb Mon Sep 17 00:00:00 2001
From: The Android Open Source Project <[email protected]>
Date: Fri, 16 Jul 2010 11:41:34 -0700
Subject: [PATCH] add meta-files about 3rd party projects
Change-Id: I86c6d96b3b031522203d0f6cda18190e45035520
project external/grub/
From a0be411871f2e71834a2cd75dea882d732557530 Mon Sep 17 00:00:00 2001
From: The Android Open Source Project <[email protected]>
Date: Mon, 10 May 2010 11:15:05 -0700
Subject: [PATCH] merge from open-source master
Change-Id: I8fa5fe12f60d0de2a0f6e0f9c567104253bcbea3
project external/gtest/
From 75f109c3120bf78ee89124f1f21b50ea24225236 Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Queru <[email protected]>
Date: Mon, 8 Mar 2010 18:04:26 -0800
Subject: [PATCH] Add an empty CleanSpec.mk
Change-Id: Ifbba5eb387ca72fe4346ed3dccafc1af4c9d8fc5
project external/guava/
From 5fa17bce47c47d5538beaaef0e38f0576446709c Mon Sep 17 00:00:00 2001
From: Bill Napier <[email protected]>
Date: Wed, 28 Jul 2010 12:06:50 -0700
Subject: [PATCH] Add in host side library as well.
Change-Id: I65b65c7b39cfd4811312c244cda5513cc174f2cc
project external/hostapd/
From 3ad9316ae7540573f2597dfbd0d4f6d8b82f2e53 Mon Sep 17 00:00:00 2001
From: Steve Kondik <[email protected]>
Date: Sun, 16 Jan 2011 15:40:03 -0500
Subject: [PATCH] Wrap makefile in conditional for BOARD_SOFTAP_DEVICE
project external/icu4c/
From fa7b84a26dd6c44cb0d219ef7b2f7e258219b616 Mon Sep 17 00:00:00 2001
From: Jesse Wilson <[email protected]>
Date: Thu, 16 Sep 2010 15:51:18 -0700
Subject: [PATCH] Add optional tags to ICU.
Change-Id: I65442453cacf4e9b2c620317021445d5bb0ef701
project external/iproute2/
From 14740a4557728ba63348e0574507a71fa40a8bd4 Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Queru <[email protected]>
Date: Fri, 13 Aug 2010 15:50:35 -0700
Subject: [PATCH] Add CleanSpec.mk
Change-Id: I520640e4712ffd04c83932fd68ac8cd86b8d0d82
project external/ipsec-tools/
From f5d0d0919f6c0b82611c1f8ad0cb6023a78b6ce0 Mon Sep 17 00:00:00 2001
From: Chia-chi Yeh <[email protected]>
Date: Thu, 30 Sep 2010 15:35:51 +0800
Subject: [PATCH] ipsec-tools: Use IDTYPE_ASN1DN for certificate-based IPSec
tunnels.
Change-Id: I589c18af8095a4461ef9cc52489a2d0864872762
project external/iptables/
From 4a820b4c41de49482adce1a4e7424ca124b6b233 Mon Sep 17 00:00:00 2001
From: Nick Kralevich <[email protected]>