forked from tpruvot/android_system_wlan_ti
-
Notifications
You must be signed in to change notification settings - Fork 1
/
changes.log
3828 lines (2529 loc) · 124 KB
/
changes.log
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
commit 3b2d55a379e28daa12128e8bb9b6dcac26eb52e7
Author: Justin Philip <[email protected]>
Date: Fri Oct 15 11:03:47 2010 -0700
TQ-RFMD allign QOS_wmePsMode
Change-Id: I2bdc2270d64d65aa9614ecc925603090749df063
commit 7dca82329d979fe2d274030f30353dea87af11bc
Author: Thai Leav <[email protected]>
Date: Tue Aug 17 08:51:48 2010 -0500
IKSTABLETWO-3546 : Workaround for SoftAP Panic : OMAPS00222634
commit 5ad3502b9afccf534e377cd4882499d23eea4832
Author: Justin Philip <[email protected]>
Date: Wed Sep 29 11:37:16 2010 -0700
IKSTABLETWOV-1056 RFMD tiwlan_rfmd.ini change as per factory FCC failure
Change-Id: Icda6e9a2310d38b45341caeffc110d0bdaf19f17
commit 24dec9811c7e783ccac4c599a17eaa867b8c13df
Author: Justin Philip <[email protected]>
Date: Tue Sep 14 17:35:23 2010 -0700
IKSTABLETWO-6491 Integrate factory recomended changes for tiwlan_rfmd.ini
commit 12ec8f6b5fc704cbca67b2a548dc9c03ec0740d9
Author: Justin Philip <[email protected]>
Date: Mon Aug 30 17:13:04 2010 -0700
IKSTABLETWO-6491 Integrate New WIFI RFMD FW and tiwlan.ini
Change-Id: I9be3b18f9f458f1620f8f14594f5df0cfc124241
commit 5292c432e0b6303343f2973354d94c85499f3b90
Author: Thai Leav <[email protected]>
Date: Mon Aug 9 10:39:01 2010 -0500
IKSTABLEONE-1172 : High current drain fix with wake lock : OMAPS00222147
commit e69f5e1275d22c199e207c301b668f8e5a5bc49e
Author: Justin Philip <[email protected]>
Date: Thu Aug 5 15:36:27 2010 -0700
IKSTABLEONE-3404 WIFI tiwlan.ini change reviewed by Tony Kokab
Change-Id: If04dcc1be42bdfe4eba34da9a0f80de98d7fa98d
Reviewed-on: http://gerrit.blurdev.com/14200
Tested-by: Jira Key <[email protected]>
Reviewed-by: Tony Kokab <[email protected]>
commit cc2f3c6c058922bf9ec42417363b791510f1724d
Author: Binesh B <[email protected]>
Date: Fri Jul 30 11:19:14 2010 +0530
IKSTABLEONE-2846 WiFi IOT improvements based on DroidX Forum feedback
Change-Id: I6a2030c333b071400c5e45875d6505d62a52a0ac
Reviewed-on: http://gerrit.blurdev.com/12990
Tested-by: Jira Key <[email protected]>
Reviewed-by: Binesh Balasingh <[email protected]>
commit 0468631ed2da3424289153ac4b7e194929aeddaa
Author: Tony Kokab <[email protected]>
Date: Sat Jul 24 14:01:10 2010 -0700
IKSTABLEONE-1605 WiFi Data Connectivity Improvements
Change-Id: I919c0cbbde8f519e8cc02eaef8326504e5d66ad8
Reviewed-on: http://gerrit.blurdev.com/11894
Tested-by: Jira Key <[email protected]>
Reviewed-by: Tony Kokab <[email protected]>
commit a02d6bcc303a13354260c965d726b64faf1e9252
Author: Binesh B <[email protected]>
Date: Fri Jul 23 12:48:11 2010 +0530
IKSTABLEONE-2326 : Add a preventive null check to avoid kernel panic on low memory alloc failure
Change-Id: Ie6a3add048935302a8536272ed7f2c2fdefb4e28
Reviewed-on: http://gerrit.blurdev.com/11603
Tested-by: Jira Key <[email protected]>
Reviewed-by: Binesh Balasingh <[email protected]>
commit 13b31df417da86607843814a8a75efba1ac7386c
Author: Thai Leav <[email protected]>
Date: Thu Jul 15 13:52:04 2010 -0500
IKSTABLEONE-1603 : Fix SDIO failures seen on Shadow : OMAPS00221330
Change-Id: I5eef7905dca978ab755ed4a2a474dd1cc1ec66f8
Reviewed-on: http://gerrit.blurdev.com/9996
Tested-by: Jira Key <[email protected]>
Reviewed-by: Tony Kokab <[email protected]>
commit bb2d83edafa6ce1a9c83aa36bc334d359b92c3d0
Author: Thai Leav <[email protected]>
Date: Thu Jul 15 14:45:43 2010 -0500
IKSTABLEONE-1860 : WiFi wake lock code is missing : Port IKMAP-9555
Change-Id: I08ef83f764d53d94f9237338138956b3bceea81b
Reviewed-on: http://gerrit.blurdev.com/9984
Tested-by: Jira Key <[email protected]>
Reviewed-by: Tony Kokab <[email protected]>
commit 8ec5e2796812db664f885b64a74e8335bfa8d053
Author: Ishwara J A <[email protected]>
Date: Wed Jul 14 18:47:29 2010 +0530
IKSTABLEONE-1616, dpn473 , Enhancement for Faster WiFi Wakeup
Change-Id: Ic4617689040b97c826ec0a84a271af91d06e129a
Reviewed-on: http://gerrit.blurdev.com/9611
Tested-by: Jira Key <[email protected]>
Reviewed-by: Prashanth Chakravarthy <[email protected]>
commit fddfe87c05362f35ead086fdab23cb7eacda9877
Author: Sreenivas Rao <[email protected]>
Date: Sat Jul 10 16:50:10 2010 +0530
IKSTABLEONE-1127 mkb386 :mergingshadowchangestostable-dev1
Change-Id: I10a080241010ed060f7a4f33e5dd428e68a1d872
Reviewed-on: http://gerrit.blurdev.com/9073
Reviewed-by: Prashanth Chakravarthy <[email protected]>
commit ee1a9cb7ad676034706bd6060c08f8eaea531c63
Author: Binesh B <[email protected]>
Date: Fri Jul 9 15:40:53 2010 +0530
IKSTABLEONE-1238 : Port IKMAPFOUR-1448
Change-Id: Ia890d42bc0172b2804ff4d0c717fd8edfc9a9c37
Reviewed-on: http://gerrit.blurdev.com/8888
Reviewed-by: Binesh Balasingh <[email protected]>
commit 4dc1f2cd7b8f7bdc04f1f6a131b24bde1acd4c7a
Author: Binesh B <[email protected]>
Date: Fri Jul 9 14:15:35 2010 +0530
IKSTABLEONE-1238: Propagate IKSHADOW-7661
Change-Id: I75aaecbc466b38e3d4fca74e362da05b231604e5
Reviewed-on: http://gerrit.blurdev.com/8876
Reviewed-by: Binesh Balasingh <[email protected]>
commit cdcb5d350c34ac690290865ba0dbd8d4df38c244
Author: Fred Fettinger <[email protected]>
Date: Wed Jun 30 16:27:18 2010 -0500
IKSTABLEONE-629: wpa_supplicant_lib: fix linker error
CONFIG_ANDROID_LOG must be defined for both the executable
wpa_supplicant and the static library libCustomWifi. Before this
change, this depended on the order in which the following makefiles
were found by the build system:
system/wlan/ti/wilink_6_1/wpa_supplicant_lib/Android.mk
external/wpa_supplicant_6/wpa_supplicant/Android.mk
Change-Id: I6d1515167b70e402e9e948566c58c2d3138da3c7
Signed-off-by: Fred Fettinger <[email protected]>
Reviewed-on: http://gerrit.blurdev.com/7225
Reviewed-by: David Ding <[email protected]>
Reviewed-by: Joseph Swantek <[email protected]>
Reviewed-by: Tony Kokab <[email protected]>
Reviewed-by: Julien Brongniart <[email protected]>
commit 5c387a4600f627cef53b3e475da8fc9554c680de
Author: Tony Kokab <[email protected]>
Date: Thu Jun 24 13:10:05 2010 -0700
IKSTABLEONE-12 - WiFi Froyo Merges
Update to Latest TI WiFi Driver and add AP Mode WiFi Driver
Change-Id: I0b3ad2a3f543f9e39e760e9dd44e9a0bb727e4c3
Reviewed-on: http://gerrit.blurdev.com/6338
Reviewed-by: Tony Kokab <[email protected]>
Reviewed-by: Julien Brongniart <[email protected]>
commit 739678eea9bbfe023270af89b323106b55402c23
Author: Tony Kokab <[email protected]>
Date: Wed Jun 9 20:56:56 2010 -0700
IKMPSTHREEV-65
Update WiFi Driver to use wpa supplicant version 6
Change in location of supplicant in froyo (external/wpa_supplicant_6)
Change-Id: Ia16826b3ff6f4efa4fcb427637262c426f9777d3
Reviewed-on: http://gerrit.blurdev.com/4645
Reviewed-by: Tony Kokab <[email protected]>
Reviewed-by: Julien Brongniart <[email protected]>
commit 6aba40da35d24d4055e55261c128757dccb0aa05
Author: tony kokab <[email protected]>
Date: Tue Jun 1 20:22:52 2010 -0700
ikmpsthreev-13_ca25_e11370_wifi_froyo
Change-Id: I3e0e55d61f3e1b8c089a61111ad359f5c9e7f21a
Reviewed-on: http://gerrit.blurdev.com/3804
Reviewed-by: Hai-Feng Xu <[email protected]>
Reviewed-by: Julien Brongniart <[email protected]>
commit 3baca6cc248e0d9a852c25b214c92bc856ae03ea
Author: Dmitry Shmidt <[email protected]>
Date: Tue Mar 23 13:03:34 2010 -0700
tnetw1271: Fix NULL pointer exception in Timer functions
Change-Id: I4108dd500304ad708b2244f9e1aa845f3f217221
Signed-off-by: Dmitry Shmidt <[email protected]>
commit ebbf3c4d16536e401fdaf0389d592590c4bae83d
Author: Dmitry Shmidt <[email protected]>
Date: Mon Mar 15 14:14:11 2010 -0700
tnetw1271: Check for NULL pointer in txCtrlBlk_Free()
Change-Id: I9bbfcc38abefd311da1b807b0954d763b233ad1c
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 1bf55343ee55f1d7c0d7b379c0d9adf4727872b6
Author: Dmitry Shmidt <[email protected]>
Date: Wed Mar 10 18:16:27 2010 -0800
wl1271: Fix Association order and clean scan cache after "driver stop"
Change-Id: I433773112c7c2cba8cfac0de0e32df2e35dab184
Signed-off-by: Dmitry Shmidt <[email protected]>
commit f7c47550d6288ca571693d14a8df3de044a30bbe
Author: Jean-Baptiste Queru <[email protected]>
Date: Mon Mar 8 18:05:26 2010 -0800
Add an empty CleanSpec.mk
Change-Id: I4d77ee966700b0429cc0a57c841712b45f0b8b8e
commit 13e37eb8fc6cce3adab7940df9ce1716d8163639
Author: Dmitry Shmidt <[email protected]>
Date: Wed Mar 3 10:07:17 2010 -0800
wl1271: Change Active mode packet parameters
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 7132f80698e36219dd156e42e722e24b457c200b
Author: Dmitry Shmidt <[email protected]>
Date: Thu Feb 25 11:30:09 2010 -0800
wl1271: Fix suppressing additional DISASSOCIATE events
Signed-off-by: Dmitry Shmidt <[email protected]>
commit dd3a45e0b76921bc4aeabd1fdc9f84c2ae3ef8c7
Author: Dmitry Shmidt <[email protected]>
Date: Wed Feb 24 14:05:04 2010 -0800
wl1251: Prevent system from sleeping for 1 sec after new packet arrival
Signed-off-by: Dmitry Shmidt <[email protected]>
commit dc1e3dffadd6bae6b8f9c29a3bd00c59ab59c7bd
Author: Dmitry Shmidt <[email protected]>
Date: Wed Feb 24 14:01:54 2010 -0800
wl1271: Prevent system from sleeping for 1 sec after new packet arrival
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 7fc3d51bf5e021223d56304b6ac047f05acfc7bd
Author: Dmitry Shmidt <[email protected]>
Date: Fri Feb 19 16:00:07 2010 -0800
wl1271: Clear signal field after freeing the object
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 1e288e68a3d13d00a3014c0c0e0ddf308b1caabd
Author: Vishal Mahaveer <[email protected]>
Date: Fri Feb 12 16:16:09 2010 -0800
iFixes Manual Mode issue (endless loop oftransmition of Auth packets)
Signed-off-by: Dmitry Shmidt <[email protected]>
commit a9765b523fbd66c698172bd6140e454ffa397842
Merge: d05e827 98a4fb3
Author: The Android Open Source Project <[email protected]>
Date: Fri Feb 5 14:22:48 2010 -0800
am 98a4fb39: am 47d39e43: reconcile main tree with open-source eclair
Merge commit '98a4fb393659f9df9a12452fe25c345fbd026ff9'
* commit '98a4fb393659f9df9a12452fe25c345fbd026ff9':
android-2.1_r1 snapshot
commit 98a4fb393659f9df9a12452fe25c345fbd026ff9
Merge: fcdec39 47d39e4
Author: The Android Open Source Project <[email protected]>
Date: Fri Feb 5 08:48:21 2010 -0800
am 47d39e43: reconcile main tree with open-source eclair
Merge commit '47d39e439b2caac66ca425b4eeeded8569e5ff4d' into eclair-plus-aosp
* commit '47d39e439b2caac66ca425b4eeeded8569e5ff4d':
android-2.1_r1 snapshot
commit 47d39e439b2caac66ca425b4eeeded8569e5ff4d
Merge: bca3fd8 3a5c358
Author: The Android Open Source Project <[email protected]>
Date: Fri Feb 5 08:09:42 2010 -0800
reconcile main tree with open-source eclair
commit d05e827b5bdc80384035d87391d066434677d34f
Author: Dmitry Shmidt <[email protected]>
Date: Wed Feb 3 16:41:53 2010 -0800
wl1251: Use in vmalloc_to_unity() exported functions
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 5adcb14c585e7932a27644bcb97dc15f3cf61ecf
Author: Dmitry Shmidt <[email protected]>
Date: Wed Feb 3 12:36:37 2010 -0800
wl1251: Fix calibration data export for newer kernel
Signed-off-by: Dmitry Shmidt <[email protected]>
commit e4146880d238485c65a3c7d8866bd5fcdd7bcf15
Author: Dmitry Shmidt <[email protected]>
Date: Mon Feb 1 16:14:46 2010 -0800
wl1251: Add kernel 2.6.32 support
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 3a5c358e48a07b902a58d010c2415cf66ea84d00
Merge: bca3fd8 904e223
Author: The Android Open Source Project <[email protected]>
Date: Fri Jan 29 14:10:05 2010 -0800
reconcile android-2.1_r1 snapshot
commit ab5d2dca2394fe5ded549ce5c8768d073511434b
Author: Dmitry Shmidt <[email protected]>
Date: Thu Jan 21 12:43:34 2010 -0800
wl1251: Set FCC regulatory domain by default
Signed-off-by: Dmitry Shmidt <[email protected]>
commit e6b30fd0e9546f36ce355a0a42d993bc8538f83e
Author: Dmitry Shmidt <[email protected]>
Date: Thu Jan 21 12:42:28 2010 -0800
wl1271: Set FCC regulatory domain by default
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 9b3da433c530331aa650193732160d8981ad6c8b
Author: Dmitry Shmidt <[email protected]>
Date: Thu Jan 21 12:39:34 2010 -0800
wl1271: Add kernel 2.6.32 compatibility
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 904e22377b2ae9c70672febadebaaa7d5586c92d
Author: The Android Open Source Project <[email protected]>
Date: Tue Jan 12 15:19:30 2010 -0800
android-2.1_r1 snapshot
commit b71131dc3c237346545cbd6ac05774b12323ffbb
Author: Dmitry Shmidt <[email protected]>
Date: Wed Jan 6 16:45:14 2010 -0800
Fix wpa_supplicant 0.6.X driver layer (set_mode)
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 75cbe234b4beaa0669b673f6539ca33840e518bf
Author: Doug Kwan <[email protected]>
Date: Tue Dec 15 15:06:10 2009 -0800
Add missing shared library in linker command. Currently this library is used
in the main executable but not listed in the linker command. It is implicitly
added via a dependency of another shared library.
commit bd86a84bf25a2a5680c621ad1bfbed5ebf5d6fca
Merge: bfebdf0 fcdec39
Author: Android Git Automerger <[email protected]>
Date: Tue Dec 15 00:44:02 2009 -0800
Merge commit 'goog/eclair-plus-aosp'
commit bfebdf0ea8b8657de0b8a993a50c427add3a065d
Merge: 949ad2d dd9faa9
Author: Dmitry Shmidt <[email protected]>
Date: Thu Dec 10 06:59:19 2009 -0800
am dd9faa94: (-s ours) am d8cec50a: am bca3fd8d: (-s ours) tnetw1271: Add "HANGED" processing (b/2310372) (DO NOT MERGE)
Merge commit 'dd9faa94a93b0a9831ae654c172f467b31328c4e'
* commit 'dd9faa94a93b0a9831ae654c172f467b31328c4e':
tnetw1271: Add "HANGED" processing (b/2310372) (DO NOT MERGE)
commit dd9faa94a93b0a9831ae654c172f467b31328c4e
Merge: 4150d16 d8cec50
Author: Dmitry Shmidt <[email protected]>
Date: Wed Dec 9 15:51:04 2009 -0800
am d8cec50a: am bca3fd8d: (-s ours) tnetw1271: Add "HANGED" processing (b/2310372) (DO NOT MERGE)
Merge commit 'd8cec50ad5f27320c7192cdac004bd857b4be736' into eclair-mr2-plus-aosp
* commit 'd8cec50ad5f27320c7192cdac004bd857b4be736':
tnetw1271: Add "HANGED" processing (b/2310372) (DO NOT MERGE)
commit fcdec39a6813d2843855eb3ea81cbcd13931d8f5
Merge: a1758ae bca3fd8
Author: Dmitry Shmidt <[email protected]>
Date: Tue Dec 8 13:44:09 2009 -0800
am bca3fd8d: tnetw1271: Add "HANGED" processing (b/2310372) (DO NOT MERGE)
Merge commit 'bca3fd8dcf16fed7aa8d55ce4a9968fb3e05dcad' into eclair-plus-aosp
* commit 'bca3fd8dcf16fed7aa8d55ce4a9968fb3e05dcad':
tnetw1271: Add "HANGED" processing (b/2310372) (DO NOT MERGE)
commit d8cec50ad5f27320c7192cdac004bd857b4be736
Merge: f1b3733 bca3fd8
Author: Dmitry Shmidt <[email protected]>
Date: Tue Dec 8 13:44:01 2009 -0800
am bca3fd8d: (-s ours) tnetw1271: Add "HANGED" processing (b/2310372) (DO NOT MERGE)
Merge commit 'bca3fd8dcf16fed7aa8d55ce4a9968fb3e05dcad' into eclair-mr2
* commit 'bca3fd8dcf16fed7aa8d55ce4a9968fb3e05dcad':
tnetw1271: Add "HANGED" processing (b/2310372) (DO NOT MERGE)
commit bca3fd8dcf16fed7aa8d55ce4a9968fb3e05dcad
Author: Dmitry Shmidt <[email protected]>
Date: Tue Dec 8 11:13:01 2009 -0800
tnetw1271: Add "HANGED" processing (b/2310372) (DO NOT MERGE)
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 949ad2d858f0e499a8b3641218aff2bb8a243a7c
Author: Dmitry Shmidt <[email protected]>
Date: Fri Dec 4 10:20:23 2009 -0800
wpa_supplicant 0.6.X: Fix WPS compilation
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 4fc9091541ba2c38a3a28b5f959c2677d581db45
Author: Dmitry Shmidt <[email protected]>
Date: Wed Dec 2 09:23:31 2009 -0800
tnetw1271: Add wpa_supplicant 0.6.X support
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 14452a4c5d7ababa734496b68771f3217231afeb
Merge: bdccea9 00ce79b
Author: Android (Google) Code Review <[email protected]>
Date: Tue Dec 1 11:23:12 2009 -0800
Merge change I00ce79b9
* changes:
tnetw1251: Force using of wpa_supplicant 0.5.X version
commit 00ce79b970491ea6a3cf79c05092a9fa499cfad4
Author: Dmitry Shmidt <[email protected]>
Date: Tue Dec 1 11:22:05 2009 -0800
tnetw1251: Force using of wpa_supplicant 0.5.X version
Signed-off-by: Dmitry Shmidt <[email protected]>
commit bdccea915679fb5e4d7dcdd99b1a5cb57027db31
Merge: 1514919 4150d16
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 24 10:41:23 2009 -0800
am 4150d16e: am f1b37334: tnetw1271: Set interface down in case of "driver stop" command
Merge commit '4150d16e73987c35d189e6993d6e9eca45b36ff2'
* commit '4150d16e73987c35d189e6993d6e9eca45b36ff2':
tnetw1271: Set interface down in case of "driver stop" command
commit 4150d16e73987c35d189e6993d6e9eca45b36ff2
Merge: 4a37ed9 f1b3733
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 24 10:39:08 2009 -0800
am f1b37334: tnetw1271: Set interface down in case of "driver stop" command
Merge commit 'f1b3733463ecda60caff3759a3d0ee4cc4bbeb18' into eclair-mr2-plus-aosp
* commit 'f1b3733463ecda60caff3759a3d0ee4cc4bbeb18':
tnetw1271: Set interface down in case of "driver stop" command
commit f1b3733463ecda60caff3759a3d0ee4cc4bbeb18
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 24 10:36:00 2009 -0800
tnetw1271: Set interface down in case of "driver stop" command
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 1514919a5d81d42c028e8037acde43db9f55c380
Merge: 9411648 4a37ed9
Author: Dmitry Shmidt <[email protected]>
Date: Wed Nov 18 17:53:33 2009 -0800
am 4a37ed94: am 1052ba99: tnetw1271: Add scan timeout handling
Merge commit '4a37ed949c6f6793d5539a5fb22c389e2a023f8b'
* commit '4a37ed949c6f6793d5539a5fb22c389e2a023f8b':
tnetw1271: Add scan timeout handling
commit 4a37ed949c6f6793d5539a5fb22c389e2a023f8b
Merge: 626f7e6 1052ba9
Author: Dmitry Shmidt <[email protected]>
Date: Wed Nov 18 14:41:44 2009 -0800
am 1052ba99: tnetw1271: Add scan timeout handling
Merge commit '1052ba997c27cbcc03baee9026c3e2366b8a07db' into eclair-mr2-plus-aosp
* commit '1052ba997c27cbcc03baee9026c3e2366b8a07db':
tnetw1271: Add scan timeout handling
commit 1052ba997c27cbcc03baee9026c3e2366b8a07db
Author: Dmitry Shmidt <[email protected]>
Date: Wed Nov 18 14:35:52 2009 -0800
tnetw1271: Add scan timeout handling
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 9411648b74d6f08947228975ebe2d687dff87c55
Merge: da76907 626f7e6
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 17 16:12:55 2009 -0800
am 626f7e65: am c6a5b78e: tnetw1271: Wait for command completion with 10 sec timeout
Merge commit '626f7e6596023c5a099a2bfd051d1994d79162d3'
* commit '626f7e6596023c5a099a2bfd051d1994d79162d3':
tnetw1271: Wait for command completion with 10 sec timeout
commit 626f7e6596023c5a099a2bfd051d1994d79162d3
Merge: 5d66156 c6a5b78
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 17 16:06:02 2009 -0800
am c6a5b78e: tnetw1271: Wait for command completion with 10 sec timeout
Merge commit 'c6a5b78e93ceba2e2039393ea7cc8964da7ea2a5' into eclair-mr2-plus-aosp
* commit 'c6a5b78e93ceba2e2039393ea7cc8964da7ea2a5':
tnetw1271: Wait for command completion with 10 sec timeout
commit c6a5b78e93ceba2e2039393ea7cc8964da7ea2a5
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 17 14:36:01 2009 -0800
tnetw1271: Wait for command completion with 10 sec timeout
Signed-off-by: Dmitry Shmidt <[email protected]>
commit da76907a152159a3140621ba2d827347d9ba2a51
Merge: 165e8d7 5d66156
Author: Jean-Baptiste Queru <[email protected]>
Date: Sun Nov 15 15:08:28 2009 -0800
am 5d661560: merge from open-source master
Merge commit '5d6615609f696dd8e61ad9eff6a98bc68d99f538'
* commit '5d6615609f696dd8e61ad9eff6a98bc68d99f538':
eclair snapshot
commit 5d6615609f696dd8e61ad9eff6a98bc68d99f538
Merge: b28346f a1758ae
Author: Jean-Baptiste Queru <[email protected]>
Date: Sun Nov 15 14:55:32 2009 -0800
merge from open-source master
commit a1758ae0a953eb51e1029c27ae69be8fcc078466
Merge: 33ee17f 53d5524
Author: Jean-Baptiste Queru <[email protected]>
Date: Sun Nov 15 14:06:58 2009 -0800
merge from open-source master
Merge commit 'goog/stage-korg-master' into HEAD
commit 53d5524e63f2f61b2c933a99c0c3f9acda69b2db
Merge: a7db066 9b213f5
Author: Jean-Baptiste Queru <[email protected]>
Date: Sun Nov 15 12:07:14 2009 -0800
merge from eclair
commit 165e8d74f712b925da7d87efaae055bef852f4eb
Merge: b044b5b b28346f
Author: Dmitry Shmidt <[email protected]>
Date: Sun Nov 15 10:33:13 2009 -0800
am b28346f0: am ca962b51: tnetw1271: Remove unnecessary files
Merge commit 'b28346f0c3c28a856262f570559f2bd7799351d8'
* commit 'b28346f0c3c28a856262f570559f2bd7799351d8':
tnetw1271: Remove unnecessary files
commit b28346f0c3c28a856262f570559f2bd7799351d8
Merge: cabee83 ca962b5
Author: Dmitry Shmidt <[email protected]>
Date: Sun Nov 15 10:25:42 2009 -0800
am ca962b51: tnetw1271: Remove unnecessary files
Merge commit 'ca962b5139004bd071108844ee429cedfc632342' into eclair-mr2-plus-aosp
* commit 'ca962b5139004bd071108844ee429cedfc632342':
tnetw1271: Remove unnecessary files
commit ca962b5139004bd071108844ee429cedfc632342
Author: Dmitry Shmidt <[email protected]>
Date: Sun Nov 15 10:16:59 2009 -0800
tnetw1271: Remove unnecessary files
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 9b213f53c0858384d639ce002fec21f3f82a2ca1
Author: Jean-Baptiste Queru <[email protected]>
Date: Thu Nov 12 18:46:24 2009 -0800
eclair snapshot
commit b044b5bc247cd1413b514882bafaad2146f2be0a
Merge: 1d3e731 cabee83
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 10 15:07:53 2009 -0800
am cabee833: am a90753b2: am 846ab564: tnetw1251: Add 500 ms expired wakelock to deliver the message (b/2245483)
Merge commit 'cabee8336de70650a2e5d3d4bece6f6ea7468a9a'
* commit 'cabee8336de70650a2e5d3d4bece6f6ea7468a9a':
tnetw1251: Add 500 ms expired wakelock to deliver the message (b/2245483)
commit cabee8336de70650a2e5d3d4bece6f6ea7468a9a
Merge: 1a02757 a90753b
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 10 14:23:24 2009 -0800
am a90753b2: am 846ab564: tnetw1251: Add 500 ms expired wakelock to deliver the message (b/2245483)
Merge commit 'a90753b25ce9d5558e30e49dbe2769a52d99658e' into eclair-mr2-plus-aosp
* commit 'a90753b25ce9d5558e30e49dbe2769a52d99658e':
tnetw1251: Add 500 ms expired wakelock to deliver the message (b/2245483)
commit 33ee17f1d8c70e79b6f689e0539d87e6ec8dcf12
Merge: f348d14 846ab56
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 10 14:22:04 2009 -0800
am 846ab564: tnetw1251: Add 500 ms expired wakelock to deliver the message (b/2245483)
Merge commit '846ab564179d28a39ac88e3fba6813c8ae520aff' into eclair-plus-aosp
* commit '846ab564179d28a39ac88e3fba6813c8ae520aff':
tnetw1251: Add 500 ms expired wakelock to deliver the message (b/2245483)
commit a90753b25ce9d5558e30e49dbe2769a52d99658e
Merge: 35a4fd4 846ab56
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 10 14:21:17 2009 -0800
am 846ab564: tnetw1251: Add 500 ms expired wakelock to deliver the message (b/2245483)
Merge commit '846ab564179d28a39ac88e3fba6813c8ae520aff' into eclair-mr2
* commit '846ab564179d28a39ac88e3fba6813c8ae520aff':
tnetw1251: Add 500 ms expired wakelock to deliver the message (b/2245483)
commit 846ab564179d28a39ac88e3fba6813c8ae520aff
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 10 14:08:55 2009 -0800
tnetw1251: Add 500 ms expired wakelock to deliver the message (b/2245483)
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 1d3e7317c87a5fc1db8b4d3bd1386dee6edb0ea0
Merge: fbf1144 1a02757
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 10 14:13:56 2009 -0800
am 1a02757b: am 35a4fd40: am 41a0b799: tnetw1271: Add 500 ms expired wakelock to deliver the message (b/2245483)
Merge commit '1a02757bda09d2794e0b0c6090e82b8d82e06e5e'
* commit '1a02757bda09d2794e0b0c6090e82b8d82e06e5e':
tnetw1271: Add 500 ms expired wakelock to deliver the message (b/2245483)
commit 1a02757bda09d2794e0b0c6090e82b8d82e06e5e
Merge: add8ef1 35a4fd4
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 10 14:12:01 2009 -0800
am 35a4fd40: am 41a0b799: tnetw1271: Add 500 ms expired wakelock to deliver the message (b/2245483)
Merge commit '35a4fd4022471e98e5cb29e4b087f2eb51dde0ee' into eclair-mr2-plus-aosp
* commit '35a4fd4022471e98e5cb29e4b087f2eb51dde0ee':
tnetw1271: Add 500 ms expired wakelock to deliver the message (b/2245483)
commit 35a4fd4022471e98e5cb29e4b087f2eb51dde0ee
Merge: 42bc7ae 41a0b79
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 10 14:09:53 2009 -0800
am 41a0b799: tnetw1271: Add 500 ms expired wakelock to deliver the message (b/2245483)
Merge commit '41a0b79959b6dd47cd62b042b1e40e815191bd88' into eclair-mr2
* commit '41a0b79959b6dd47cd62b042b1e40e815191bd88':
tnetw1271: Add 500 ms expired wakelock to deliver the message (b/2245483)
commit f348d14b39e0a290d1ef61e4e99a2ebe45e00be0
Merge: 8e39d9b 41a0b79
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 10 14:09:17 2009 -0800
am 41a0b799: tnetw1271: Add 500 ms expired wakelock to deliver the message (b/2245483)
Merge commit '41a0b79959b6dd47cd62b042b1e40e815191bd88' into eclair-plus-aosp
* commit '41a0b79959b6dd47cd62b042b1e40e815191bd88':
tnetw1271: Add 500 ms expired wakelock to deliver the message (b/2245483)
commit 41a0b79959b6dd47cd62b042b1e40e815191bd88
Author: Dmitry Shmidt <[email protected]>
Date: Tue Nov 10 13:57:05 2009 -0800
tnetw1271: Add 500 ms expired wakelock to deliver the message (b/2245483)
Signed-off-by: Dmitry Shmidt <[email protected]>
commit fbf1144135989f975e29b55c2251dc73b8174702
Merge: 3e73216 add8ef1
Author: Dmitry Shmidt <[email protected]>
Date: Wed Oct 28 23:48:49 2009 -0700
am add8ef15: am 42bc7ae1: am d60e69ac: Check SSID length before association (http://b/issue?id=2198151)
Merge commit 'add8ef1554033c76917c5a48d3ba386cbd9e2a3d'
* commit 'add8ef1554033c76917c5a48d3ba386cbd9e2a3d':
Check SSID length before association (http://b/issue?id=2198151)
commit 3e73216e5af5e6bef6a12e19dd629020e3ff3643
Merge: 74f703a ccaf115
Author: Dmitry Shmidt <[email protected]>
Date: Wed Oct 28 23:48:44 2009 -0700
am ccaf1159: am cd434989: am 13a77412: Postpone setting complete flag to the real FW start (http://b/issue?id=2198151)
Merge commit 'ccaf1159003e724af6b158fd10870297af4fedeb'
* commit 'ccaf1159003e724af6b158fd10870297af4fedeb':
Postpone setting complete flag to the real FW start (http://b/issue?id=2198151)
commit add8ef1554033c76917c5a48d3ba386cbd9e2a3d
Merge: ccaf115 42bc7ae
Author: Dmitry Shmidt <[email protected]>
Date: Wed Oct 28 10:42:42 2009 -0700
am 42bc7ae1: am d60e69ac: Check SSID length before association (http://b/issue?id=2198151)
Merge commit '42bc7ae1bcff471dee92ab2419b232eade724691' into eclair-mr2-plus-aosp
* commit '42bc7ae1bcff471dee92ab2419b232eade724691':
Check SSID length before association (http://b/issue?id=2198151)
commit ccaf1159003e724af6b158fd10870297af4fedeb
Merge: 65c6aca cd43498
Author: Dmitry Shmidt <[email protected]>
Date: Wed Oct 28 10:42:37 2009 -0700
am cd434989: am 13a77412: Postpone setting complete flag to the real FW start (http://b/issue?id=2198151)
Merge commit 'cd43498901155042b215caad44f2632e1181756d' into eclair-mr2-plus-aosp
* commit 'cd43498901155042b215caad44f2632e1181756d':
Postpone setting complete flag to the real FW start (http://b/issue?id=2198151)
commit 42bc7ae1bcff471dee92ab2419b232eade724691
Merge: cd43498 d60e69a
Author: Dmitry Shmidt <[email protected]>
Date: Wed Oct 28 10:29:25 2009 -0700
am d60e69ac: Check SSID length before association (http://b/issue?id=2198151)
Merge commit 'd60e69ac3931c3cf0f594670f8a0e0c7065b9b7f' into eclair-mr2
* commit 'd60e69ac3931c3cf0f594670f8a0e0c7065b9b7f':
Check SSID length before association (http://b/issue?id=2198151)
commit cd43498901155042b215caad44f2632e1181756d
Merge: d2e23a3 13a7741
Author: Dmitry Shmidt <[email protected]>
Date: Wed Oct 28 10:29:20 2009 -0700
am 13a77412: Postpone setting complete flag to the real FW start (http://b/issue?id=2198151)
Merge commit '13a774123712fc5ce1e4033292ffc631c00b3ea5' into eclair-mr2
* commit '13a774123712fc5ce1e4033292ffc631c00b3ea5':
Postpone setting complete flag to the real FW start (http://b/issue?id=2198151)
commit 8e39d9b8bfe54023b75c0efc864bd4033ca62dfa
Merge: 0159e40 d60e69a
Author: Dmitry Shmidt <[email protected]>
Date: Mon Oct 26 14:41:13 2009 -0700
am d60e69ac: Check SSID length before association (http://b/issue?id=2198151)
Merge commit 'd60e69ac3931c3cf0f594670f8a0e0c7065b9b7f' into eclair-plus-aosp
* commit 'd60e69ac3931c3cf0f594670f8a0e0c7065b9b7f':
Check SSID length before association (http://b/issue?id=2198151)
commit 0159e409cf8484c4ed232d4958d432f405ccb83b
Merge: 9176d06 13a7741
Author: Dmitry Shmidt <[email protected]>
Date: Mon Oct 26 14:40:53 2009 -0700
am 13a77412: Postpone setting complete flag to the real FW start (http://b/issue?id=2198151)
Merge commit '13a774123712fc5ce1e4033292ffc631c00b3ea5' into eclair-plus-aosp
* commit '13a774123712fc5ce1e4033292ffc631c00b3ea5':
Postpone setting complete flag to the real FW start (http://b/issue?id=2198151)
commit d60e69ac3931c3cf0f594670f8a0e0c7065b9b7f
Author: Dmitry Shmidt <[email protected]>
Date: Mon Oct 26 12:27:25 2009 -0700
Check SSID length before association (http://b/issue?id=2198151)
Signed-off-by: Brian Chen <[email protected]>
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 13a774123712fc5ce1e4033292ffc631c00b3ea5
Author: Dmitry Shmidt <[email protected]>
Date: Mon Oct 26 12:12:55 2009 -0700
Postpone setting complete flag to the real FW start (http://b/issue?id=2198151)
Signed-off-by: Dmitry Shmidt <[email protected]>
commit 74f703ab2b5c5504fa81d3e8cdca55f35d747169
Merge: be45bf2 65c6aca
Author: Dmitry Shmidt <[email protected]>
Date: Fri Oct 23 17:08:34 2009 -0700
am 65c6acaf: am d2e23a38: tnetw1251: fix error -110 reading SDIO_CCCR_INTx
Merge commit '65c6acaf057ac28e288fabcf4fac1c8f42e17266'
* commit '65c6acaf057ac28e288fabcf4fac1c8f42e17266':
tnetw1251: fix error -110 reading SDIO_CCCR_INTx
commit be45bf22d0d50802d8065cc7d423a6bd51c12e27
Merge: a93e8f7 d53aa35
Author: Dmitry Shmidt <[email protected]>
Date: Fri Oct 23 17:08:29 2009 -0700
am d53aa353: am b6ad5d19: Reduce stack size consumption to suppress compiler warning
Merge commit 'd53aa35379b95371823cc64a3d852177c4a75eee'
* commit 'd53aa35379b95371823cc64a3d852177c4a75eee':
Reduce stack size consumption to suppress compiler warning
commit 65c6acaf057ac28e288fabcf4fac1c8f42e17266
Merge: d53aa35 d2e23a3
Author: Dmitry Shmidt <[email protected]>
Date: Fri Oct 23 17:03:11 2009 -0700
am d2e23a38: tnetw1251: fix error -110 reading SDIO_CCCR_INTx
Merge commit 'd2e23a38e1747a625e902ade5bebf628b90e7538' into eclair-mr2-plus-aosp
* commit 'd2e23a38e1747a625e902ade5bebf628b90e7538':
tnetw1251: fix error -110 reading SDIO_CCCR_INTx
commit d53aa35379b95371823cc64a3d852177c4a75eee
Merge: b513fe7 b6ad5d1
Author: Dmitry Shmidt <[email protected]>
Date: Fri Oct 23 17:03:06 2009 -0700
am b6ad5d19: Reduce stack size consumption to suppress compiler warning
Merge commit 'b6ad5d195ebff3812ef53a65edfe329372506491' into eclair-mr2-plus-aosp
* commit 'b6ad5d195ebff3812ef53a65edfe329372506491':
Reduce stack size consumption to suppress compiler warning
commit d2e23a38e1747a625e902ade5bebf628b90e7538
Author: Dmitry Shmidt <[email protected]>
Date: Fri Oct 23 16:54:40 2009 -0700
tnetw1251: fix error -110 reading SDIO_CCCR_INTx
Signed-off-by: Dmitry Shmidt <[email protected]>
commit b6ad5d195ebff3812ef53a65edfe329372506491
Author: Dmitry Shmidt <[email protected]>
Date: Fri Oct 23 16:53:23 2009 -0700
Reduce stack size consumption to suppress compiler warning
Signed-off-by: Dmitry Shmidt <[email protected]>
commit a93e8f7edb5bd743b81d14cabd4dac876f764c34
Merge: bf759ad b513fe7
Author: Dmitry Shmidt <[email protected]>
Date: Fri Oct 23 13:32:15 2009 -0700
am b513fe72: (-s ours) am f87aecff: Change kernel path (do not merge)
Merge commit 'b513fe72793634a65432b51ddbde405d9ed59e6b'
* commit 'b513fe72793634a65432b51ddbde405d9ed59e6b':
Change kernel path (do not merge)
commit b513fe72793634a65432b51ddbde405d9ed59e6b
Merge: 466e286 f87aecf
Author: Dmitry Shmidt <[email protected]>
Date: Fri Oct 23 13:24:02 2009 -0700
am f87aecff: Change kernel path (do not merge)
Merge commit 'f87aecffc47371d202deff56c29f178f36a37f96' into eclair-mr2-plus-aosp
* commit 'f87aecffc47371d202deff56c29f178f36a37f96':
Change kernel path (do not merge)
commit f87aecffc47371d202deff56c29f178f36a37f96
Author: Dmitry Shmidt <[email protected]>
Date: Fri Oct 23 13:14:00 2009 -0700
Change kernel path (do not merge)
Signed-off-by: Dmitry Shmidt <[email protected]>
commit bf759adf8fcd3b4de74522d1f14b059f467e3dd2
Merge: 7a5a37b 466e286
Author: Dmitry Shmidt <[email protected]>
Date: Fri Oct 23 12:20:28 2009 -0700
am 466e2863: am 5b08036f: Add driver reloading if driver start/stop fails
Merge commit '466e2863b96d070562f7a4e599be51db9b9b2c2f'
* commit '466e2863b96d070562f7a4e599be51db9b9b2c2f':
Add driver reloading if driver start/stop fails
commit 466e2863b96d070562f7a4e599be51db9b9b2c2f
Merge: edf61f3 5b08036
Author: Dmitry Shmidt <[email protected]>