-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKitKatbooterrorX41T
2199 lines (2199 loc) · 195 KB
/
KitKatbooterrorX41T
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
--------- beginning of /dev/log/main
06-19 11:26:36.640 1260 1260 I sh : + hw_sh=/vendor/etc/init.sh
06-19 11:26:36.640 1260 1260 I sh : + '[' -e /vendor/etc/init.sh ']'
06-19 11:26:36.640 1260 1260 I sh : + do_init
06-19 11:26:36.640 1260 1260 I sh : + init_misc
06-19 11:26:36.640 1260 1260 I sh : + grep 1a8d:1000
06-19 11:26:36.650 1260 1260 I sh : + lsusb
06-19 11:26:36.730 1260 1260 I sh : + '[' -d /sys/devices/system/cpu/cpu0/cpufreq ']'
06-19 11:26:36.730 1260 1260 I sh : + init_hal_audio
06-19 11:26:36.730 1260 1260 I sh : + '[' -d /proc/asound/card0 ']'
06-19 11:26:36.730 1260 1260 I sh : + awk '{print $1}'
06-19 11:26:36.740 1260 1260 I sh : + grep '\[.*\]' /proc/asound/cards
06-19 11:26:36.740 1260 1260 I sh : + alsa_ctl init 0
06-19 11:26:36.790 1260 1260 I sh : Found hardware: "ICH4" "Analog Devices AD1981B" "AC97a:41445374" "0x1014" "0x0581"
06-19 11:26:36.790 1260 1260 I sh : Hardware is initialized using a generic method
06-19 11:26:36.790 1260 1260 I sh : + alsa_amixer -c 0 set Master on
06-19 11:26:36.800 1260 1260 I sh : Simple mixer control 'Master',0
06-19 11:26:36.800 1260 1260 I sh : Capabilities: pvolume pswitch penum
06-19 11:26:36.800 1260 1260 I sh : Playback channels: Front Left - Front Right
06-19 11:26:36.800 1260 1260 I sh : Limits: Playback 0 - 31
06-19 11:26:36.800 1260 1260 I sh : Mono:
06-19 11:26:36.800 1260 1260 I sh : Front Left: Playback 17 [55%] [-21.00dB] [on]
06-19 11:26:36.800 1260 1260 I sh : Front Right: Playback 17 [55%] [-21.00dB] [on]
06-19 11:26:36.800 1260 1260 I sh : + alsa_amixer -c 0 set Master 100
06-19 11:26:36.800 1260 1260 I sh : Simple mixer control 'Master',0
06-19 11:26:36.800 1260 1260 I sh : Capabilities: pvolume pswitch penum
06-19 11:26:36.800 1260 1260 I sh : Playback channels: Front Left - Front Right
06-19 11:26:36.800 1260 1260 I sh : Limits: Playback 0 - 31
06-19 11:26:36.800 1260 1260 I sh : Mono:
06-19 11:26:36.800 1260 1260 I sh : Front Left: Playback 31 [100%] [0.00dB] [on]
06-19 11:26:36.800 1260 1260 I sh : Front Right: Playback 31 [100%] [0.00dB] [on]
06-19 11:26:36.800 1260 1260 I sh : + alsa_amixer -c 0 set Headphone on
06-19 11:26:36.800 1260 1260 I sh : Simple mixer control 'Headphone',0
06-19 11:26:36.800 1260 1260 I sh : Capabilities: pvolume pswitch penum
06-19 11:26:36.800 1260 1260 I sh : Playback channels: Front Left - Front Right
06-19 11:26:36.800 1260 1260 I sh : Limits: Playback 0 - 31
06-19 11:26:36.800 1260 1260 I sh : Mono:
06-19 11:26:36.800 1260 1260 I sh : Front Left: Playback 31 [100%] [0.00dB] [on]
06-19 11:26:36.800 1260 1260 I sh : Front Right: Playback 31 [100%] [0.00dB] [on]
06-19 11:26:36.800 1260 1260 I sh : + alsa_amixer -c 0 set Headphone 100
06-19 11:26:36.810 1260 1260 I sh : Simple mixer control 'Headphone',0
06-19 11:26:36.810 1260 1260 I sh : Capabilities: pvolume pswitch penum
06-19 11:26:36.810 1260 1260 I sh : Playback channels: Front Left - Front Right
06-19 11:26:36.810 1260 1260 I sh : Limits: Playback 0 - 31
06-19 11:26:36.810 1260 1260 I sh : Mono:
06-19 11:26:36.810 1260 1260 I sh : Front Left: Playback 31 [100%] [0.00dB] [on]
06-19 11:26:36.810 1260 1260 I sh : Front Right: Playback 31 [100%] [0.00dB] [on]
06-19 11:26:36.810 1260 1260 I sh : + alsa_amixer -c 0 set Speaker 100
06-19 11:26:36.810 1260 1260 I sh : amixer: Unable to find simple control 'Speaker',0
06-19 11:26:36.810 1260 1260 I sh : + alsa_amixer -c 0 set Capture 100
06-19 11:26:36.810 1260 1260 I sh : Simple mixer control 'Capture',0
06-19 11:26:36.810 1260 1260 I sh : Capabilities: cvolume cswitch penum
06-19 11:26:36.810 1260 1260 I sh : Capture channels: Front Left - Front Right
06-19 11:26:36.810 1260 1260 I sh : Limits: Capture 0 - 15
06-19 11:26:36.810 1260 1260 I sh : Front Left: Capture 15 [100%] [22.50dB] [on]
06-19 11:26:36.810 1260 1260 I sh : Front Right: Capture 15 [100%] [22.50dB] [on]
06-19 11:26:36.810 1260 1260 I sh : + alsa_amixer -c 0 set Capture cap
06-19 11:26:36.820 1260 1260 I sh : Simple mixer control 'Capture',0
06-19 11:26:36.820 1260 1260 I sh : Capabilities: cvolume cswitch penum
06-19 11:26:36.820 1260 1260 I sh : Capture channels: Front Left - Front Right
06-19 11:26:36.820 1260 1260 I sh : Limits: Capture 0 - 15
06-19 11:26:36.820 1260 1260 I sh : Front Left: Capture 15 [100%] [22.50dB] [on]
06-19 11:26:36.820 1260 1260 I sh : Front Right: Capture 15 [100%] [22.50dB] [on]
06-19 11:26:36.820 1260 1260 I sh : + alsa_amixer -c 0 set PCM 100 unmute
06-19 11:26:36.820 1260 1260 I sh : Simple mixer control 'PCM',0
06-19 11:26:36.820 1260 1260 I sh : Capabilities: pvolume pswitch penum
06-19 11:26:36.820 1260 1260 I sh : Playback channels: Front Left - Front Right
06-19 11:26:36.820 1260 1260 I sh : Limits: Playback 0 - 31
06-19 11:26:36.820 1260 1260 I sh : Mono:
06-19 11:26:36.820 1260 1260 I sh : Front Left: Playback 31 [100%] [12.00dB] [on]
06-19 11:26:36.820 1260 1260 I sh : Front Right: Playback 31 [100%] [12.00dB] [on]
06-19 11:26:36.820 1260 1260 I sh : + alsa_amixer -c 0 set 'Mic Boost' 3
06-19 11:26:36.820 1260 1260 I sh : amixer: Unable to find simple control 'Mic Boost',0
06-19 11:26:36.820 1260 1260 I sh : + alsa_amixer -c 0 set 'Internal Mic Boost' 3
06-19 11:26:36.820 1260 1260 I sh : amixer: Unable to find simple control 'Internal Mic Boost',0
06-19 11:26:36.820 1260 1260 I sh : + alsa_ctl init 1
06-19 11:26:36.820 1260 1260 I sh : Found hardware: "ICH-MODEM" "Conexant id 23" "AC97m:43585423" "0x1014" "0x0574"
06-19 11:26:36.820 1260 1260 I sh : Hardware is initialized using a generic method
06-19 11:26:36.820 1260 1260 I sh : + alsa_amixer -c 1 set Master on
06-19 11:26:36.830 1260 1260 I sh : amixer: Unable to find simple control 'Master',0
06-19 11:26:36.830 1260 1260 I sh : + alsa_amixer -c 1 set Master 100
06-19 11:26:36.830 1260 1260 I sh : amixer: Unable to find simple control 'Master',0
06-19 11:26:36.830 1260 1260 I sh : + alsa_amixer -c 1 set Headphone on
06-19 11:26:36.830 1260 1260 I sh : amixer: Unable to find simple control 'Headphone',0
06-19 11:26:36.830 1260 1260 I sh : + alsa_amixer -c 1 set Headphone 100
06-19 11:26:36.830 1260 1260 I sh : amixer: Unable to find simple control 'Headphone',0
06-19 11:26:36.830 1260 1260 I sh : + alsa_amixer -c 1 set Speaker 100
06-19 11:26:36.830 1260 1260 I sh : amixer: Unable to find simple control 'Speaker',0
06-19 11:26:36.840 1260 1260 I sh : + alsa_amixer -c 1 set Capture 100
06-19 11:26:36.840 1260 1260 I sh : amixer: Unable to find simple control 'Capture',0
06-19 11:26:36.840 1260 1260 I sh : + alsa_amixer -c 1 set Capture cap
06-19 11:26:36.840 1260 1260 I sh : amixer: Unable to find simple control 'Capture',0
06-19 11:26:36.840 1260 1260 I sh : + alsa_amixer -c 1 set PCM 100 unmute
06-19 11:26:36.840 1260 1260 I sh : amixer: Unable to find simple control 'PCM',0
06-19 11:26:36.840 1260 1260 I sh : + alsa_amixer -c 1 set 'Mic Boost' 3
06-19 11:26:36.840 1260 1260 I sh : amixer: Unable to find simple control 'Mic Boost',0
06-19 11:26:36.840 1260 1260 I sh : + alsa_amixer -c 1 set 'Internal Mic Boost' 3
06-19 11:26:36.840 1260 1260 I sh : amixer: Unable to find simple control 'Internal Mic Boost',0
06-19 11:26:36.850 1260 1260 I sh : + alsa_ctl init 29
06-19 11:26:36.850 1260 1260 I sh : Found hardware: "ThinkPad EC" "ThinkPad EC 75HT20WW-1.02" "" "" ""
06-19 11:26:36.850 1260 1260 I sh : Hardware is initialized using a generic method
06-19 11:26:36.850 1260 1260 I sh : + alsa_amixer -c 29 set Master on
06-19 11:26:36.850 1260 1260 I sh : amixer: Unable to find simple control 'Master',0
06-19 11:26:36.850 1260 1260 I sh : + alsa_amixer -c 29 set Master 100
06-19 11:26:36.850 1260 1260 I sh : amixer: Unable to find simple control 'Master',0
06-19 11:26:36.850 1260 1260 I sh : + alsa_amixer -c 29 set Headphone on
06-19 11:26:36.850 1260 1260 I sh : amixer: Unable to find simple control 'Headphone',0
06-19 11:26:36.850 1260 1260 I sh : + alsa_amixer -c 29 set Headphone 100
06-19 11:26:36.860 1260 1260 I sh : amixer: Unable to find simple control 'Headphone',0
06-19 11:26:36.860 1260 1260 I sh : + alsa_amixer -c 29 set Speaker 100
06-19 11:26:36.860 1260 1260 I sh : amixer: Unable to find simple control 'Speaker',0
06-19 11:26:36.860 1260 1260 I sh : + alsa_amixer -c 29 set Capture 100
06-19 11:26:36.860 1260 1260 I sh : amixer: Unable to find simple control 'Capture',0
06-19 11:26:36.860 1260 1260 I sh : + alsa_amixer -c 29 set Capture cap
06-19 11:26:36.860 1260 1260 I sh : amixer: Unable to find simple control 'Capture',0
06-19 11:26:36.860 1260 1260 I sh : + alsa_amixer -c 29 set PCM 100 unmute
06-19 11:26:36.870 1260 1260 I sh : amixer: Unable to find simple control 'PCM',0
06-19 11:26:36.870 1260 1260 I sh : + alsa_amixer -c 29 set 'Mic Boost' 3
06-19 11:26:36.870 1260 1260 I sh : amixer: Unable to find simple control 'Mic Boost',0
06-19 11:26:36.870 1260 1260 I sh : + alsa_amixer -c 29 set 'Internal Mic Boost' 3
06-19 11:26:36.870 1260 1260 I sh : amixer: Unable to find simple control 'Internal Mic Boost',0
06-19 11:26:36.870 1260 1260 I sh : + init_hal_bluetooth
06-19 11:26:36.870 1260 1260 I sh : + cat /sys/class/rfkill/rfkill0/type
06-19 11:26:36.870 1260 1260 I sh : + type=bluetooth
06-19 11:26:36.870 1260 1260 I sh : + '[' bluetooth '=' wlan -o bluetooth '=' bluetooth ']'
06-19 11:26:36.870 1260 1260 I sh : + >/sys/class/rfkill/rfkill0/state
06-19 11:26:36.870 1260 1260 I sh : + echo 1
06-19 11:26:36.870 1260 1260 I sh : + cat /sys/class/rfkill/rfkill1/type
06-19 11:26:36.870 1260 1260 I sh : + type=wlan
06-19 11:26:36.870 1260 1260 I sh : + '[' wlan '=' wlan -o wlan '=' bluetooth ']'
06-19 11:26:36.870 1260 1260 I sh : + >/sys/class/rfkill/rfkill1/state
06-19 11:26:36.870 1260 1260 I sh : + echo 1
06-19 11:26:36.870 1260 1260 I sh : + cat /sys/class/rfkill/rfkill2/type
06-19 11:26:36.870 1260 1260 I sh : + type=bluetooth
06-19 11:26:36.870 1260 1260 I sh : + '[' bluetooth '=' wlan -o bluetooth '=' bluetooth ']'
06-19 11:26:36.870 1260 1260 I sh : + >/sys/class/rfkill/rfkill2/state
06-19 11:26:36.870 1260 1260 I sh : + echo 1
06-19 11:26:36.870 1260 1260 I sh : + rmmod ath3k
06-19 11:26:36.880 1260 1260 I sh : rmmod: delete_module 'ath3k' failed (errno 2)
06-19 11:26:36.880 1260 1260 I sh : + rmmod btusb
06-19 11:26:36.880 1260 1260 I sh : + rmmod bluetooth
06-19 11:26:36.910 1260 1260 I sh : + init_hal_camera
06-19 11:26:36.910 1260 1260 I sh : + '[' -c /dev/video0 ']'
06-19 11:26:36.910 1260 1260 I sh : + modprobe vivi
06-19 11:26:37.630 1260 1260 I sh : + init_hal_gps
06-19 11:26:37.630 1260 1260 I sh : + return
06-19 11:26:37.630 1260 1260 I sh : + init_hal_gralloc
06-19 11:26:37.630 1260 1260 I sh : + head -1
06-19 11:26:37.630 1260 1260 I sh : + cat /proc/fb
06-19 11:26:37.630 1260 1260 I sh : + '[' '=' 1 ']'
06-19 11:26:37.630 1260 1260 I sh : + set_property debug.egl.hw 0
06-19 11:26:37.630 1260 1260 I sh : + >>/x86.prop
06-19 11:26:37.630 1260 1260 I sh : + echo 'debug.egl.hw=0'
06-19 11:26:37.630 1260 1260 I sh : + init_hal_hwcomposer
06-19 11:26:37.630 1260 1260 I sh : + return
06-19 11:26:37.630 1260 1260 I sh : + init_hal_lights
06-19 11:26:37.630 1260 1260 I sh : + chown 1000.1000 /sys/class/backlight/thinkpad_screen/brightness
06-19 11:26:37.630 1260 1260 I sh : + init_hal_power
06-19 11:26:37.630 1260 1260 I sh : + init_hal_sensors
06-19 11:26:37.630 1260 1260 I sh : + cat /sys/class/dmi/id/uevent
06-19 11:26:37.630 1260 1260 I sh : + set_property hal.sensors hdaps
06-19 11:26:37.630 1260 1260 I sh : + >>/x86.prop
06-19 11:26:37.630 1260 1260 I sh : + echo 'hal.sensors=hdaps'
06-19 11:26:37.630 1260 1260 I sh : + start wacom-input
06-19 11:26:37.630 1260 1260 I sh : + init_tscal
06-19 11:26:37.630 1260 1260 I sh : + init_ril
06-19 11:26:37.630 1260 1260 I sh : + chmod 640 /x86.prop
06-19 11:26:37.630 1260 1260 I sh : + post_init
06-19 11:26:37.630 1260 1260 I sh : /system/etc/init.sh[317]: post_init: not found
06-19 11:26:37.630 1260 1260 I sh : + return 0
06-19 11:26:37.650 1315 1315 I powerbtn: open event2(Power Button) ok
06-19 11:26:37.726 1330 1330 I installd: installd firing up
06-19 11:26:37.816 1334 1334 I sh : + hw_sh=/vendor/etc/init.sh
06-19 11:26:37.816 1334 1334 I sh : + '[' -e /vendor/etc/init.sh ']'
06-19 11:26:37.816 1334 1334 I sh : + '[' -n 2 ']'
06-19 11:26:37.816 1334 1334 I sh : + do_netconsole
06-19 11:26:37.816 1334 1334 I sh : + getprop dhcp.eth0.gateway
06-19 11:26:37.826 1334 1334 I sh : + modprobe netconsole 'netconsole=@/,@/'
06-19 11:26:37.876 1324 1324 I DEBUG : debuggerd: May 20 2014 00:23:38
06-19 11:26:37.996 1334 1334 I sh : modprobe: 'kernel/drivers/net/netconsole.ko': Operation not permitted
06-19 11:26:37.996 1334 1334 I sh : + return 0
--------- beginning of /dev/log/system
06-19 11:26:38.026 1322 1322 I Vold : Vold 2.1 (the revenge) firing up
06-19 11:26:38.026 1322 1322 D Vold : failed to open /fstab.thinkpadtablet, use AutoVolume
06-19 11:26:38.026 1322 1322 D Vold : Volume usb0 state changing -1 (Initializing) -> 0 (No-Media)
06-19 11:26:38.026 1322 1322 D Vold : Volume usb1 state changing -1 (Initializing) -> 0 (No-Media)
06-19 11:26:38.026 1322 1322 D Vold : Volume usb2 state changing -1 (Initializing) -> 0 (No-Media)
06-19 11:26:38.026 1322 1322 D Vold : Volume usb3 state changing -1 (Initializing) -> 0 (No-Media)
06-19 11:26:38.116 1323 1323 I Netd : Netd 1.0 starting
06-19 11:26:38.116 1323 1323 W InterfaceController: Warning (dlopen failed: library "/system/lib/libnetcmdiface.so" not found) while opening the net interface command library
06-19 11:26:38.226 1326 1326 I SurfaceFlinger: SurfaceFlinger is starting
06-19 11:26:38.226 1326 1326 I SurfaceFlinger: SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
06-19 11:26:38.226 1326 1326 D libEGL : 3D hardware acceleration is disabled
06-19 11:26:38.226 1326 1326 D libEGL : Emulator without GPU support detected. Fallback to software renderer.
06-19 11:26:38.466 1326 1326 D libEGL : loaded /system/lib/egl/libGLES_android.so
06-19 11:26:38.826 1329 1329 I mediaserver: ServiceManager: 0x411d0db0
06-19 11:26:38.826 1329 1329 I AudioFlinger: Using default 3000 mSec as standby time.
06-19 11:26:38.826 1329 1329 I CameraService: CameraService started (pid=1329)
06-19 11:26:38.836 1326 1326 W gralloc : page flipping not supported (yres_virtual=600, requested=1200)
06-19 11:26:38.836 1326 1326 I gralloc : using (fd=14)
06-19 11:26:38.836 1326 1326 I gralloc : id = VESA VGA
06-19 11:26:38.836 1326 1326 I gralloc : xres = 800 px
06-19 11:26:38.836 1326 1326 I gralloc : yres = 600 px
06-19 11:26:38.836 1326 1326 I gralloc : xres_virtual = 800 px
06-19 11:26:38.836 1326 1326 I gralloc : yres_virtual = 600 px
06-19 11:26:38.836 1326 1326 I gralloc : bpp = 16
06-19 11:26:38.836 1326 1326 I gralloc : r = 11:5
06-19 11:26:38.836 1326 1326 I gralloc : g = 5:6
06-19 11:26:38.836 1326 1326 I gralloc : b = 0:5
06-19 11:26:38.836 1326 1326 I gralloc : width = 127 mm (160.000000 dpi)
06-19 11:26:38.836 1326 1326 I gralloc : height = 95 mm (160.421051 dpi)
06-19 11:26:38.836 1326 1326 I gralloc : refresh rate = 91.11 Hz
06-19 11:26:38.836 1326 1326 E SurfaceFlinger: hwcomposer module not found
06-19 11:26:38.836 1326 1326 F libc : Fatal signal 4 (SIGILL) at 0x4005f461 (code=2), thread 1326 (surfaceflinger)
06-19 11:26:38.836 1329 1329 D Camera_Factory: CameraFactory::CameraFactory
06-19 11:26:38.836 1329 1329 D Camera_Factory: CameraFactory::parseConfig: configFile = /etc/camera.cfg
06-19 11:26:38.836 1329 1329 D Camera_Factory: /etc/camera.cfg not found, using camera configuration defaults
06-19 11:26:38.836 1329 1329 D Camera_Factory: Found device /dev/video0
06-19 11:26:38.836 1329 1329 D Camera_Factory: CameraFactory::newCameraConfig: 0 -> /dev/video0 (0)
06-19 11:26:38.836 1329 1329 I CameraService: Loaded "Camera Module" camera module
06-19 11:26:38.836 1329 1329 D Camera_Factory: CameraFactory::get_number_of_cameras
06-19 11:26:38.836 1329 1329 D Camera_Factory: CameraFactory::getCameraNum: 1
06-19 11:26:38.846 1329 1329 I AudioPolicyManagerBase: loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
06-19 11:26:38.846 1329 1329 E audio_hw_primary: Failed to open /system/etc/mixer_paths.xml
06-19 11:26:38.846 1329 1329 I AudioFlinger: loadHwModule() Loaded primary audio interface from Grouper audio HW HAL (audio) handle 1
06-19 11:26:38.846 1329 1329 I AudioFlinger: HAL output buffer size 512 frames, normal mix buffer size 1024 frames
06-19 11:26:38.856 1329 1329 I AudioMixer: found effect "Multichannel Downmix To Stereo" from The Android Open Source Project
06-19 11:26:38.856 1329 1329 E MonoPipe: Failed to fetch local time frequency when constructing a MonoPipe (res = -32). getNextWriteTimestamp calls will be non-functional
06-19 11:26:38.996 1324 1324 I DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
06-19 11:26:38.996 1324 1324 I DEBUG : Build fingerprint: 'unknown'
06-19 11:26:38.996 1324 1324 I DEBUG : Revision: '0'
06-19 11:26:38.996 1324 1324 I DEBUG : pid: 1326, tid: 1326, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
06-19 11:26:38.996 1324 1324 I DEBUG : signal 4 (SIGILL), code 2 (ILL_ILLOPN), fault addr 4005f461
06-19 11:26:39.216 1327 1327 D AndroidRuntime:
06-19 11:26:39.216 1327 1327 D AndroidRuntime: >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
06-19 11:26:39.216 1327 1327 D AndroidRuntime: CheckJNI is ON
06-19 11:26:39.266 1324 1324 I DEBUG : eax 4006d2e4 ebx 400808d8 ecx 41a8faf0 edx 00000001
06-19 11:26:39.266 1324 1324 I DEBUG : esi 00000000 edi 4006bafe
06-19 11:26:39.266 1324 1324 I DEBUG : xcs 00000073 xds 0000007b xes 0000007b xfs 00000000 xss 0000007b
06-19 11:26:39.266 1324 1324 I DEBUG : eip 4005f461 ebp 41a8f9d0 esp bffb9f20 flags 00010246
06-19 11:26:39.266 1324 1324 E Corkscrew: unrecognized DW_CFA_* instruction: 0x10
06-19 11:26:39.266 1324 1324 I DEBUG :
06-19 11:26:39.266 1324 1324 I DEBUG : backtrace:
06-19 11:26:39.276 1324 1324 I DEBUG : #00 pc 00036461 /system/lib/libsurfaceflinger.so (android::HWComposer::HWComposer(android::sp<android::SurfaceFlinger> const&, android::HWComposer::EventHandler&)+2001)
06-19 11:26:39.276 1324 1324 I DEBUG : #01 pc 0002b2b6 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::init()+182)
06-19 11:26:39.276 1324 1324 I DEBUG : #02 pc 00000931 /system/bin/surfaceflinger (main+209)
06-19 11:26:39.276 1324 1324 I DEBUG :
06-19 11:26:39.276 1324 1324 I DEBUG : stack:
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9ee0 00000020
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9ee4 4022db23 /system/lib/libEGL.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9ee8 40179629 /system/lib/libhardware.so (hw_get_module_by_class+9)
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9eec 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9ef0 00000000
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9ef4 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9ef8 41a8f9d0 [heap]
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9efc 25e28fad
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f00 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f04 00000000
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f08 4008f2c9 /system/lib/libcutils.so (__android_log_print+9)
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f0c 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f10 00000000
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f14 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f18 41a8f9d0 [heap]
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f1c 4005ef56 /system/lib/libsurfaceflinger.so (android::HWComposer::HWComposer(android::sp<android::SurfaceFlinger> const&, android::HWComposer::EventHandler&)+710)
06-19 11:26:39.276 1324 1324 I DEBUG : #00 bffb9f20 00000006
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f24 4006b4fa /system/lib/libsurfaceflinger.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f28 4006bae6 /system/lib/libsurfaceflinger.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f2c 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f30 4022dfe6 /system/lib/libEGL.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f34 400ae1b6 /system/lib/libc.so (malloc+6)
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f38 40151fd0 /system/lib/libstdc++.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f3c 4014f9ac /system/lib/libstdc++.so (operator new(unsigned int)+28)
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f40 0000000c
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f44 00000000
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f48 4022ce59 /system/lib/libEGL.so (android::Loader::init_api(void*, char const* const*, void (**)(), void (*(*)(char const*))())+9)
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f4c 400aef29 /system/lib/libc.so (pthread_mutex_unlock+25)
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f50 d794354e
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f54 4164ef21
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f58 40267040 /system/lib/libEGL.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffb9f5c 41a8fae8 [heap]
06-19 11:26:39.276 1324 1324 I DEBUG : ........ ........
06-19 11:26:39.276 1324 1324 I DEBUG : #01 bffba020 41a8f9d0 [heap]
06-19 11:26:39.276 1324 1324 I DEBUG : bffba024 bffba088 [stack]
06-19 11:26:39.276 1324 1324 I DEBUG : bffba028 41a8d834 [heap]
06-19 11:26:39.276 1324 1324 I DEBUG : bffba02c 40190d18 /system/lib/libutils.so (android::String8::appendFormat(char const*, ...)+152)
06-19 11:26:39.276 1324 1324 I DEBUG : bffba030 0000000c
06-19 11:26:39.276 1324 1324 I DEBUG : bffba034 66666667
06-19 11:26:39.276 1324 1324 I DEBUG : bffba038 40097e48 /system/lib/libcutils.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffba03c 4008a2cf /system/lib/libcutils.so (set_sched_policy+479)
06-19 11:26:39.276 1324 1324 I DEBUG : bffba040 0000000c
06-19 11:26:39.276 1324 1324 I DEBUG : bffba044 bffba087 [stack]
06-19 11:26:39.276 1324 1324 I DEBUG : bffba048 00000004
06-19 11:26:39.276 1324 1324 I DEBUG : bffba04c 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffba050 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffba054 4006b4fa /system/lib/libsurfaceflinger.so
06-19 11:26:39.276 1324 1324 I DEBUG : bffba058 41a8d838 [heap]
06-19 11:26:39.276 1324 1324 I DEBUG : bffba05c 4004ae59 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::onFirstRef()+105)
06-19 11:26:39.276 1324 1324 I DEBUG : ........ ........
06-19 11:26:39.276 1324 1324 I DEBUG :
06-19 11:26:39.276 1324 1324 I DEBUG : memory map around fault addr 4005f461:
06-19 11:26:39.276 1324 1324 I DEBUG : 40027000-40029000 r--
06-19 11:26:39.276 1324 1324 I DEBUG : 40029000-4007a000 r-x /system/lib/libsurfaceflinger.so
06-19 11:26:39.276 1324 1324 I DEBUG : 4007a000-40081000 r-- /system/lib/libsurfaceflinger.so
06-19 11:26:39.336 1321 1321 I ServiceManager: service 'media.audio_flinger' died
06-19 11:26:39.336 1321 1321 I ServiceManager: service 'media.player' died
06-19 11:26:39.336 1321 1321 I ServiceManager: service 'media.camera' died
06-19 11:26:43.376 1379 1379 I Netd : Netd 1.0 starting
06-19 11:26:43.376 1379 1379 W InterfaceController: Warning (dlopen failed: library "/system/lib/libnetcmdiface.so" not found) while opening the net interface command library
06-19 11:26:43.416 1380 1380 I SurfaceFlinger: SurfaceFlinger is starting
06-19 11:26:43.416 1380 1380 I SurfaceFlinger: SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
06-19 11:26:43.416 1380 1380 D libEGL : 3D hardware acceleration is disabled
06-19 11:26:43.416 1380 1380 D libEGL : Emulator without GPU support detected. Fallback to software renderer.
06-19 11:26:43.426 1380 1380 D libEGL : loaded /system/lib/egl/libGLES_android.so
06-19 11:26:43.566 1380 1380 W gralloc : page flipping not supported (yres_virtual=600, requested=1200)
06-19 11:26:43.566 1380 1380 I gralloc : using (fd=14)
06-19 11:26:43.566 1380 1380 I gralloc : id = VESA VGA
06-19 11:26:43.566 1380 1380 I gralloc : xres = 800 px
06-19 11:26:43.566 1380 1380 I gralloc : yres = 600 px
06-19 11:26:43.566 1380 1380 I gralloc : xres_virtual = 800 px
06-19 11:26:43.566 1380 1380 I gralloc : yres_virtual = 600 px
06-19 11:26:43.566 1380 1380 I gralloc : bpp = 16
06-19 11:26:43.566 1380 1380 I gralloc : r = 11:5
06-19 11:26:43.566 1380 1380 I gralloc : g = 5:6
06-19 11:26:43.566 1380 1380 I gralloc : b = 0:5
06-19 11:26:43.566 1380 1380 I gralloc : width = 127 mm (160.000000 dpi)
06-19 11:26:43.566 1380 1380 I gralloc : height = 95 mm (160.421051 dpi)
06-19 11:26:43.566 1380 1380 I gralloc : refresh rate = 91.11 Hz
06-19 11:26:43.566 1380 1380 E SurfaceFlinger: hwcomposer module not found
06-19 11:26:43.566 1380 1380 F libc : Fatal signal 4 (SIGILL) at 0x4005f461 (code=2), thread 1380 (surfaceflinger)
06-19 11:26:43.566 1381 1381 D AndroidRuntime:
06-19 11:26:43.566 1381 1381 D AndroidRuntime: >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
06-19 11:26:43.586 1381 1381 D AndroidRuntime: CheckJNI is ON
06-19 11:26:43.586 1382 1382 I mediaserver: ServiceManager: 0x41cb6d40
06-19 11:26:43.586 1382 1382 I AudioFlinger: Using default 3000 mSec as standby time.
06-19 11:26:43.586 1382 1382 I CameraService: CameraService started (pid=1382)
06-19 11:26:43.586 1382 1382 D Camera_Factory: CameraFactory::CameraFactory
06-19 11:26:43.586 1382 1382 D Camera_Factory: CameraFactory::parseConfig: configFile = /etc/camera.cfg
06-19 11:26:43.586 1382 1382 D Camera_Factory: /etc/camera.cfg not found, using camera configuration defaults
06-19 11:26:43.586 1382 1382 D Camera_Factory: Found device /dev/video0
06-19 11:26:43.586 1382 1382 D Camera_Factory: CameraFactory::newCameraConfig: 0 -> /dev/video0 (0)
06-19 11:26:43.586 1382 1382 I CameraService: Loaded "Camera Module" camera module
06-19 11:26:43.586 1382 1382 D Camera_Factory: CameraFactory::get_number_of_cameras
06-19 11:26:43.586 1382 1382 D Camera_Factory: CameraFactory::getCameraNum: 1
06-19 11:26:43.586 1382 1382 I AudioPolicyManagerBase: loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
06-19 11:26:43.596 1382 1382 E audio_hw_primary: Failed to open /system/etc/mixer_paths.xml
06-19 11:26:43.596 1382 1382 I AudioFlinger: loadHwModule() Loaded primary audio interface from Grouper audio HW HAL (audio) handle 1
06-19 11:26:43.596 1382 1382 I AudioFlinger: HAL output buffer size 512 frames, normal mix buffer size 1024 frames
06-19 11:26:43.596 1382 1382 I AudioMixer: found effect "Multichannel Downmix To Stereo" from The Android Open Source Project
06-19 11:26:43.596 1382 1382 E MonoPipe: Failed to fetch local time frequency when constructing a MonoPipe (res = -32). getNextWriteTimestamp calls will be non-functional
06-19 11:26:43.666 1324 1324 I DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
06-19 11:26:43.666 1324 1324 I DEBUG : Build fingerprint: 'unknown'
06-19 11:26:43.666 1324 1324 I DEBUG : Revision: '0'
06-19 11:26:43.666 1324 1324 I DEBUG : pid: 1380, tid: 1380, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
06-19 11:26:43.666 1324 1324 I DEBUG : signal 4 (SIGILL), code 2 (ILL_ILLOPN), fault addr 4005f461
06-19 11:26:43.806 1324 1324 I DEBUG : eax 4006d2e4 ebx 400808d8 ecx 41d1a840 edx 00000001
06-19 11:26:43.826 1324 1324 I DEBUG : esi 00000000 edi 4006bafe
06-19 11:26:43.826 1324 1324 I DEBUG : xcs 00000073 xds 0000007b xes 0000007b xfs 00000000 xss 0000007b
06-19 11:26:43.826 1324 1324 I DEBUG : eip 4005f461 ebp 41d1a720 esp bfc90240 flags 00010246
06-19 11:26:43.826 1324 1324 E Corkscrew: unrecognized DW_CFA_* instruction: 0x10
06-19 11:26:43.826 1324 1324 I DEBUG :
06-19 11:26:43.826 1324 1324 I DEBUG : backtrace:
06-19 11:26:43.826 1324 1324 I DEBUG : #00 pc 00036461 /system/lib/libsurfaceflinger.so (android::HWComposer::HWComposer(android::sp<android::SurfaceFlinger> const&, android::HWComposer::EventHandler&)+2001)
06-19 11:26:43.826 1324 1324 I DEBUG : #01 pc 0002b2b6 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::init()+182)
06-19 11:26:43.826 1324 1324 I DEBUG : #02 pc 00000931 /system/bin/surfaceflinger (main+209)
06-19 11:26:43.846 1324 1324 I DEBUG :
06-19 11:26:43.846 1324 1324 I DEBUG : stack:
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90200 00000020
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90204 4022db23 /system/lib/libEGL.so
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90208 40179629 /system/lib/libhardware.so (hw_get_module_by_class+9)
06-19 11:26:43.846 1324 1324 I DEBUG : bfc9020c 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90210 00000000
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90214 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90218 41d1a720 [heap]
06-19 11:26:43.846 1324 1324 I DEBUG : bfc9021c dd1d7bd6
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90220 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90224 00000000
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90228 4008f2c9 /system/lib/libcutils.so (__android_log_print+9)
06-19 11:26:43.846 1324 1324 I DEBUG : bfc9022c 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90230 00000000
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90234 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90238 41d1a720 [heap]
06-19 11:26:43.846 1324 1324 I DEBUG : bfc9023c 4005ef56 /system/lib/libsurfaceflinger.so (android::HWComposer::HWComposer(android::sp<android::SurfaceFlinger> const&, android::HWComposer::EventHandler&)+710)
06-19 11:26:43.846 1324 1324 I DEBUG : #00 bfc90240 00000006
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90244 4006b4fa /system/lib/libsurfaceflinger.so
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90248 4006bae6 /system/lib/libsurfaceflinger.so
06-19 11:26:43.846 1324 1324 I DEBUG : bfc9024c 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90250 4022dfe6 /system/lib/libEGL.so
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90254 400ae1b6 /system/lib/libc.so (malloc+6)
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90258 40151fd0 /system/lib/libstdc++.so
06-19 11:26:43.846 1324 1324 I DEBUG : bfc9025c 4014f9ac /system/lib/libstdc++.so (operator new(unsigned int)+28)
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90260 0000000c
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90264 00000000
06-19 11:26:43.846 1324 1324 I DEBUG : bfc90268 4022ce59 /system/lib/libEGL.so (android::Loader::init_api(void*, char const* const*, void (**)(), void (*(*)(char const*))())+9)
06-19 11:26:43.846 1324 1324 I DEBUG : bfc9026c 400aef29 /system/lib/libc.so (pthread_mutex_unlock+25)
06-19 11:26:43.856 1324 1324 I DEBUG : bfc90270 d794354e
06-19 11:26:43.856 1324 1324 I DEBUG : bfc90274 4164ef21
06-19 11:26:43.856 1324 1324 I DEBUG : bfc90278 40267040 /system/lib/libEGL.so
06-19 11:26:43.856 1324 1324 I DEBUG : bfc9027c 41d1a838 [heap]
06-19 11:26:43.856 1324 1324 I DEBUG : ........ ........
06-19 11:26:43.856 1324 1324 I DEBUG : #01 bfc90340 41d1a720 [heap]
06-19 11:26:43.856 1324 1324 I DEBUG : bfc90344 bfc903a8 [stack]
06-19 11:26:43.856 1324 1324 I DEBUG : bfc90348 41d18834 [heap]
06-19 11:26:43.856 1324 1324 I DEBUG : bfc9034c 40190d18 /system/lib/libutils.so (android::String8::appendFormat(char const*, ...)+152)
06-19 11:26:43.856 1324 1324 I DEBUG : bfc90350 0000000c
06-19 11:26:43.856 1324 1324 I DEBUG : bfc90354 66666667
06-19 11:26:43.856 1324 1324 I DEBUG : bfc90358 40097e48 /system/lib/libcutils.so
06-19 11:26:43.856 1324 1324 I DEBUG : bfc9035c 4008a2cf /system/lib/libcutils.so (set_sched_policy+479)
06-19 11:26:43.856 1324 1324 I DEBUG : bfc90360 0000000c
06-19 11:26:43.856 1324 1324 I DEBUG : bfc90364 bfc903a7 [stack]
06-19 11:26:43.856 1324 1324 I DEBUG : bfc90368 00000004
06-19 11:26:43.856 1324 1324 I DEBUG : bfc9036c 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:43.856 1324 1324 I DEBUG : bfc90370 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:43.856 1324 1324 I DEBUG : bfc90374 4006b4fa /system/lib/libsurfaceflinger.so
06-19 11:26:43.856 1324 1324 I DEBUG : bfc90378 41d18838 [heap]
06-19 11:26:43.856 1324 1324 I DEBUG : bfc9037c 4004ae59 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::onFirstRef()+105)
06-19 11:26:43.856 1324 1324 I DEBUG : ........ ........
06-19 11:26:43.856 1324 1324 I DEBUG :
06-19 11:26:43.856 1324 1324 I DEBUG : memory map around fault addr 4005f461:
06-19 11:26:43.856 1324 1324 I DEBUG : 40027000-40029000 r--
06-19 11:26:43.856 1324 1324 I DEBUG : 40029000-4007a000 r-x /system/lib/libsurfaceflinger.so
06-19 11:26:43.856 1324 1324 I DEBUG : 4007a000-40081000 r-- /system/lib/libsurfaceflinger.so
06-19 11:26:43.886 1381 1381 D dalvikvm: Trying to load lib libjavacore.so 0x0
06-19 11:26:43.886 1381 1381 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:43.886 1381 1381 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:43.886 1381 1381 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:43.886 1381 1381 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:43.886 1381 1381 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:43.886 1381 1381 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:43.906 1381 1381 D dalvikvm: Added shared lib libjavacore.so 0x0
06-19 11:26:43.956 1321 1321 I ServiceManager: service 'media.audio_flinger' died
06-19 11:26:43.956 1321 1321 I ServiceManager: service 'media.player' died
06-19 11:26:43.956 1321 1321 I ServiceManager: service 'media.camera' died
06-19 11:26:47.996 1404 1404 I Netd : Netd 1.0 starting
06-19 11:26:47.996 1404 1404 W InterfaceController: Warning (dlopen failed: library "/system/lib/libnetcmdiface.so" not found) while opening the net interface command library
06-19 11:26:48.026 1405 1405 I SurfaceFlinger: SurfaceFlinger is starting
06-19 11:26:48.026 1405 1405 I SurfaceFlinger: SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
06-19 11:26:48.026 1405 1405 D libEGL : 3D hardware acceleration is disabled
06-19 11:26:48.026 1405 1405 D libEGL : Emulator without GPU support detected. Fallback to software renderer.
06-19 11:26:48.036 1405 1405 D libEGL : loaded /system/lib/egl/libGLES_android.so
06-19 11:26:48.166 1405 1405 W gralloc : page flipping not supported (yres_virtual=600, requested=1200)
06-19 11:26:48.166 1405 1405 I gralloc : using (fd=14)
06-19 11:26:48.166 1405 1405 I gralloc : id = VESA VGA
06-19 11:26:48.166 1405 1405 I gralloc : xres = 800 px
06-19 11:26:48.166 1405 1405 I gralloc : yres = 600 px
06-19 11:26:48.166 1405 1405 I gralloc : xres_virtual = 800 px
06-19 11:26:48.166 1405 1405 I gralloc : yres_virtual = 600 px
06-19 11:26:48.166 1405 1405 I gralloc : bpp = 16
06-19 11:26:48.166 1405 1405 I gralloc : r = 11:5
06-19 11:26:48.166 1405 1405 I gralloc : g = 5:6
06-19 11:26:48.166 1405 1405 I gralloc : b = 0:5
06-19 11:26:48.166 1405 1405 I gralloc : width = 127 mm (160.000000 dpi)
06-19 11:26:48.166 1405 1405 I gralloc : height = 95 mm (160.421051 dpi)
06-19 11:26:48.166 1405 1405 I gralloc : refresh rate = 91.11 Hz
06-19 11:26:48.166 1405 1405 E SurfaceFlinger: hwcomposer module not found
06-19 11:26:48.166 1405 1405 F libc : Fatal signal 4 (SIGILL) at 0x4005f461 (code=2), thread 1405 (surfaceflinger)
06-19 11:26:48.186 1406 1406 D AndroidRuntime:
06-19 11:26:48.186 1406 1406 D AndroidRuntime: >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
06-19 11:26:48.186 1406 1406 D AndroidRuntime: CheckJNI is ON
06-19 11:26:48.216 1406 1406 D dalvikvm: Trying to load lib libjavacore.so 0x0
06-19 11:26:48.216 1407 1407 I mediaserver: ServiceManager: 0x411d0db0
06-19 11:26:48.216 1407 1407 I AudioFlinger: Using default 3000 mSec as standby time.
06-19 11:26:48.216 1407 1407 I CameraService: CameraService started (pid=1407)
06-19 11:26:48.216 1407 1407 D Camera_Factory: CameraFactory::CameraFactory
06-19 11:26:48.216 1406 1406 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:48.216 1406 1406 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:48.216 1406 1406 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:48.216 1406 1406 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:48.216 1406 1406 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:48.216 1406 1406 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:48.216 1406 1406 D dalvikvm: Added shared lib libjavacore.so 0x0
06-19 11:26:48.216 1407 1407 D Camera_Factory: CameraFactory::parseConfig: configFile = /etc/camera.cfg
06-19 11:26:48.216 1407 1407 D Camera_Factory: /etc/camera.cfg not found, using camera configuration defaults
06-19 11:26:48.216 1407 1407 D Camera_Factory: Found device /dev/video0
06-19 11:26:48.216 1407 1407 D Camera_Factory: CameraFactory::newCameraConfig: 0 -> /dev/video0 (0)
06-19 11:26:48.216 1407 1407 I CameraService: Loaded "Camera Module" camera module
06-19 11:26:48.216 1407 1407 D Camera_Factory: CameraFactory::get_number_of_cameras
06-19 11:26:48.216 1407 1407 D Camera_Factory: CameraFactory::getCameraNum: 1
06-19 11:26:48.216 1407 1407 I AudioPolicyManagerBase: loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
06-19 11:26:48.216 1407 1407 E audio_hw_primary: Failed to open /system/etc/mixer_paths.xml
06-19 11:26:48.216 1407 1407 I AudioFlinger: loadHwModule() Loaded primary audio interface from Grouper audio HW HAL (audio) handle 1
06-19 11:26:48.216 1407 1407 I AudioFlinger: HAL output buffer size 512 frames, normal mix buffer size 1024 frames
06-19 11:26:48.216 1407 1407 I AudioMixer: found effect "Multichannel Downmix To Stereo" from The Android Open Source Project
06-19 11:26:48.216 1407 1407 E MonoPipe: Failed to fetch local time frequency when constructing a MonoPipe (res = -32). getNextWriteTimestamp calls will be non-functional
06-19 11:26:48.216 1406 1406 D dalvikvm: Trying to load lib libnativehelper.so 0x0
06-19 11:26:48.216 1406 1406 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:48.216 1406 1406 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:48.216 1406 1406 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:48.216 1406 1406 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:48.216 1406 1406 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:48.216 1406 1406 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:48.216 1406 1406 D dalvikvm: Added shared lib libnativehelper.so 0x0
06-19 11:26:48.216 1406 1406 D dalvikvm: No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
06-19 11:26:48.266 1324 1324 I DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
06-19 11:26:48.266 1324 1324 I DEBUG : Build fingerprint: 'unknown'
06-19 11:26:48.266 1324 1324 I DEBUG : Revision: '0'
06-19 11:26:48.266 1324 1324 I DEBUG : pid: 1405, tid: 1405, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
06-19 11:26:48.266 1324 1324 I DEBUG : signal 4 (SIGILL), code 2 (ILL_ILLOPN), fault addr 4005f461
06-19 11:26:48.396 1324 1324 I DEBUG : eax 4006d2e4 ebx 400808d8 ecx 40e462e0 edx 00000001
06-19 11:26:48.396 1324 1324 I DEBUG : esi 00000000 edi 4006bafe
06-19 11:26:48.396 1324 1324 I DEBUG : xcs 00000073 xds 0000007b xes 0000007b xfs 00000000 xss 0000007b
06-19 11:26:48.396 1324 1324 I DEBUG : eip 4005f461 ebp 40e461c0 esp bfbaee50 flags 00010246
06-19 11:26:48.396 1324 1324 E Corkscrew: unrecognized DW_CFA_* instruction: 0x10
06-19 11:26:48.396 1324 1324 I DEBUG :
06-19 11:26:48.396 1324 1324 I DEBUG : backtrace:
06-19 11:26:48.396 1324 1324 I DEBUG : #00 pc 00036461 /system/lib/libsurfaceflinger.so (android::HWComposer::HWComposer(android::sp<android::SurfaceFlinger> const&, android::HWComposer::EventHandler&)+2001)
06-19 11:26:48.396 1324 1324 I DEBUG : #01 pc 0002b2b6 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::init()+182)
06-19 11:26:48.396 1324 1324 I DEBUG : #02 pc 00000931 /system/bin/surfaceflinger (main+209)
06-19 11:26:48.396 1324 1324 I DEBUG :
06-19 11:26:48.396 1324 1324 I DEBUG : stack:
06-19 11:26:48.396 1324 1324 I DEBUG : bfbaee10 00000020
06-19 11:26:48.396 1324 1324 I DEBUG : bfbaee14 4022db23 /system/lib/libEGL.so
06-19 11:26:48.396 1324 1324 I DEBUG : bfbaee18 40179629 /system/lib/libhardware.so (hw_get_module_by_class+9)
06-19 11:26:48.396 1324 1324 I DEBUG : bfbaee1c 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:48.396 1324 1324 I DEBUG : bfbaee20 00000000
06-19 11:26:48.396 1324 1324 I DEBUG : bfbaee24 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:48.396 1324 1324 I DEBUG : bfbaee28 40e461c0 [heap]
06-19 11:26:48.396 1324 1324 I DEBUG : bfbaee2c 97be1d2d
06-19 11:26:48.396 1324 1324 I DEBUG : bfbaee30 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:48.396 1324 1324 I DEBUG : bfbaee34 00000000
06-19 11:26:48.396 1324 1324 I DEBUG : bfbaee38 4008f2c9 /system/lib/libcutils.so (__android_log_print+9)
06-19 11:26:48.396 1324 1324 I DEBUG : bfbaee3c 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:48.396 1324 1324 I DEBUG : bfbaee40 00000000
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee44 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee48 40e461c0 [heap]
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee4c 4005ef56 /system/lib/libsurfaceflinger.so (android::HWComposer::HWComposer(android::sp<android::SurfaceFlinger> const&, android::HWComposer::EventHandler&)+710)
06-19 11:26:48.406 1324 1324 I DEBUG : #00 bfbaee50 00000006
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee54 4006b4fa /system/lib/libsurfaceflinger.so
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee58 4006bae6 /system/lib/libsurfaceflinger.so
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee5c 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee60 4022dfe6 /system/lib/libEGL.so
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee64 400ae1b6 /system/lib/libc.so (malloc+6)
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee68 40151fd0 /system/lib/libstdc++.so
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee6c 4014f9ac /system/lib/libstdc++.so (operator new(unsigned int)+28)
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee70 0000000c
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee74 00000000
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee78 4022ce59 /system/lib/libEGL.so (android::Loader::init_api(void*, char const* const*, void (**)(), void (*(*)(char const*))())+9)
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee7c 400aef29 /system/lib/libc.so (pthread_mutex_unlock+25)
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee80 d794354e
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee84 4164ef21
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee88 40267040 /system/lib/libEGL.so
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaee8c 40e462d8 [heap]
06-19 11:26:48.406 1324 1324 I DEBUG : ........ ........
06-19 11:26:48.406 1324 1324 I DEBUG : #01 bfbaef50 40e461c0 [heap]
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaef54 bfbaefb8 [stack]
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaef58 40e44834 [heap]
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaef5c 40190d18 /system/lib/libutils.so (android::String8::appendFormat(char const*, ...)+152)
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaef60 0000000c
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaef64 66666667
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaef68 40097e48 /system/lib/libcutils.so
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaef6c 4008a2cf /system/lib/libcutils.so (set_sched_policy+479)
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaef70 0000000c
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaef74 bfbaefb7 [stack]
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaef78 00000004
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaef7c 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaef80 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaef84 4006b4fa /system/lib/libsurfaceflinger.so
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaef88 40e44838 [heap]
06-19 11:26:48.406 1324 1324 I DEBUG : bfbaef8c 4004ae59 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::onFirstRef()+105)
06-19 11:26:48.406 1324 1324 I DEBUG : ........ ........
06-19 11:26:48.406 1324 1324 I DEBUG :
06-19 11:26:48.406 1324 1324 I DEBUG : memory map around fault addr 4005f461:
06-19 11:26:48.406 1324 1324 I DEBUG : 40027000-40029000 r--
06-19 11:26:48.406 1324 1324 I DEBUG : 40029000-4007a000 r-x /system/lib/libsurfaceflinger.so
06-19 11:26:48.406 1324 1324 I DEBUG : 4007a000-40081000 r-- /system/lib/libsurfaceflinger.so
06-19 11:26:48.536 1321 1321 I ServiceManager: service 'media.audio_flinger' died
06-19 11:26:48.536 1321 1321 I ServiceManager: service 'media.player' died
06-19 11:26:48.536 1321 1321 I ServiceManager: service 'media.camera' died
06-19 11:26:52.576 1431 1431 I Netd : Netd 1.0 starting
06-19 11:26:52.576 1431 1431 W InterfaceController: Warning (dlopen failed: library "/system/lib/libnetcmdiface.so" not found) while opening the net interface command library
06-19 11:26:52.586 1432 1432 I SurfaceFlinger: SurfaceFlinger is starting
06-19 11:26:52.626 1432 1432 I SurfaceFlinger: SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
06-19 11:26:52.626 1432 1432 D libEGL : 3D hardware acceleration is disabled
06-19 11:26:52.626 1432 1432 D libEGL : Emulator without GPU support detected. Fallback to software renderer.
06-19 11:26:52.626 1432 1432 D libEGL : loaded /system/lib/egl/libGLES_android.so
06-19 11:26:52.756 1432 1432 W gralloc : page flipping not supported (yres_virtual=600, requested=1200)
06-19 11:26:52.756 1432 1432 I gralloc : using (fd=14)
06-19 11:26:52.756 1432 1432 I gralloc : id = VESA VGA
06-19 11:26:52.756 1432 1432 I gralloc : xres = 800 px
06-19 11:26:52.756 1432 1432 I gralloc : yres = 600 px
06-19 11:26:52.756 1432 1432 I gralloc : xres_virtual = 800 px
06-19 11:26:52.756 1432 1432 I gralloc : yres_virtual = 600 px
06-19 11:26:52.756 1432 1432 I gralloc : bpp = 16
06-19 11:26:52.756 1432 1432 I gralloc : r = 11:5
06-19 11:26:52.756 1432 1432 I gralloc : g = 5:6
06-19 11:26:52.756 1432 1432 I gralloc : b = 0:5
06-19 11:26:52.756 1432 1432 I gralloc : width = 127 mm (160.000000 dpi)
06-19 11:26:52.756 1432 1432 I gralloc : height = 95 mm (160.421051 dpi)
06-19 11:26:52.756 1432 1432 I gralloc : refresh rate = 91.11 Hz
06-19 11:26:52.756 1432 1432 E SurfaceFlinger: hwcomposer module not found
06-19 11:26:52.756 1432 1432 F libc : Fatal signal 4 (SIGILL) at 0x4005f461 (code=2), thread 1432 (surfaceflinger)
06-19 11:26:52.756 1433 1433 D AndroidRuntime:
06-19 11:26:52.756 1433 1433 D AndroidRuntime: >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
06-19 11:26:52.776 1434 1434 I mediaserver: ServiceManager: 0x411d0db0
06-19 11:26:52.776 1434 1434 I AudioFlinger: Using default 3000 mSec as standby time.
06-19 11:26:52.776 1434 1434 I CameraService: CameraService started (pid=1434)
06-19 11:26:52.776 1434 1434 D Camera_Factory: CameraFactory::CameraFactory
06-19 11:26:52.776 1434 1434 D Camera_Factory: CameraFactory::parseConfig: configFile = /etc/camera.cfg
06-19 11:26:52.776 1434 1434 D Camera_Factory: /etc/camera.cfg not found, using camera configuration defaults
06-19 11:26:52.776 1434 1434 D Camera_Factory: Found device /dev/video0
06-19 11:26:52.776 1433 1433 D AndroidRuntime: CheckJNI is ON
06-19 11:26:52.776 1434 1434 D Camera_Factory: CameraFactory::newCameraConfig: 0 -> /dev/video0 (0)
06-19 11:26:52.776 1434 1434 I CameraService: Loaded "Camera Module" camera module
06-19 11:26:52.776 1434 1434 D Camera_Factory: CameraFactory::get_number_of_cameras
06-19 11:26:52.776 1434 1434 D Camera_Factory: CameraFactory::getCameraNum: 1
06-19 11:26:52.776 1434 1434 I AudioPolicyManagerBase: loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
06-19 11:26:52.776 1434 1434 E audio_hw_primary: Failed to open /system/etc/mixer_paths.xml
06-19 11:26:52.776 1434 1434 I AudioFlinger: loadHwModule() Loaded primary audio interface from Grouper audio HW HAL (audio) handle 1
06-19 11:26:52.776 1434 1434 I AudioFlinger: HAL output buffer size 512 frames, normal mix buffer size 1024 frames
06-19 11:26:52.776 1434 1434 I AudioMixer: found effect "Multichannel Downmix To Stereo" from The Android Open Source Project
06-19 11:26:52.776 1434 1434 E MonoPipe: Failed to fetch local time frequency when constructing a MonoPipe (res = -32). getNextWriteTimestamp calls will be non-functional
06-19 11:26:52.786 1433 1433 D dalvikvm: Trying to load lib libjavacore.so 0x0
06-19 11:26:52.786 1433 1433 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:52.786 1433 1433 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:52.786 1433 1433 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:52.786 1433 1433 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:52.786 1433 1433 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:52.786 1433 1433 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:52.786 1433 1433 D dalvikvm: Added shared lib libjavacore.so 0x0
06-19 11:26:52.786 1433 1433 D dalvikvm: Trying to load lib libnativehelper.so 0x0
06-19 11:26:52.786 1433 1433 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:52.786 1433 1433 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:52.786 1433 1433 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:52.786 1433 1433 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:52.786 1433 1433 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:52.786 1433 1433 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:52.786 1433 1433 D dalvikvm: Added shared lib libnativehelper.so 0x0
06-19 11:26:52.796 1433 1433 D dalvikvm: No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
06-19 11:26:52.836 1433 1433 D dalvikvm: Note: class Landroid/app/ActivityManagerNative; has 179 unimplemented (abstract) methods
06-19 11:26:52.856 1324 1324 I DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
06-19 11:26:52.856 1324 1324 I DEBUG : Build fingerprint: 'unknown'
06-19 11:26:52.856 1324 1324 I DEBUG : Revision: '0'
06-19 11:26:52.856 1324 1324 I DEBUG : pid: 1432, tid: 1432, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
06-19 11:26:52.856 1324 1324 I DEBUG : signal 4 (SIGILL), code 2 (ILL_ILLOPN), fault addr 4005f461
06-19 11:26:52.916 1324 1324 I DEBUG : eax 4006d2e4 ebx 400808d8 ecx 40e4fad0 edx 00000001
06-19 11:26:52.936 1324 1324 I DEBUG : esi 00000000 edi 4006bafe
06-19 11:26:52.936 1324 1324 I DEBUG : xcs 00000073 xds 0000007b xes 0000007b xfs 00000000 xss 0000007b
06-19 11:26:52.936 1324 1324 I DEBUG : eip 4005f461 ebp 40e4f9b0 esp bfedfe40 flags 00010246
06-19 11:26:52.936 1324 1324 E Corkscrew: unrecognized DW_CFA_* instruction: 0x10
06-19 11:26:52.936 1324 1324 I DEBUG :
06-19 11:26:52.936 1324 1324 I DEBUG : backtrace:
06-19 11:26:52.936 1324 1324 I DEBUG : #00 pc 00036461 /system/lib/libsurfaceflinger.so (android::HWComposer::HWComposer(android::sp<android::SurfaceFlinger> const&, android::HWComposer::EventHandler&)+2001)
06-19 11:26:52.936 1324 1324 I DEBUG : #01 pc 0002b2b6 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::init()+182)
06-19 11:26:52.936 1324 1324 I DEBUG : #02 pc 00000931 /system/bin/surfaceflinger (main+209)
06-19 11:26:52.936 1324 1324 I DEBUG :
06-19 11:26:52.936 1324 1324 I DEBUG : stack:
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe00 00000020
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe04 4022db23 /system/lib/libEGL.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe08 40179629 /system/lib/libhardware.so (hw_get_module_by_class+9)
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe0c 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe10 00000000
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe14 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe18 40e4f9b0 [heap]
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe1c 1e327582
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe20 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe24 00000000
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe28 4008f2c9 /system/lib/libcutils.so (__android_log_print+9)
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe2c 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe30 00000000
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe34 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe38 40e4f9b0 [heap]
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe3c 4005ef56 /system/lib/libsurfaceflinger.so (android::HWComposer::HWComposer(android::sp<android::SurfaceFlinger> const&, android::HWComposer::EventHandler&)+710)
06-19 11:26:52.936 1324 1324 I DEBUG : #00 bfedfe40 00000006
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe44 4006b4fa /system/lib/libsurfaceflinger.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe48 4006bae6 /system/lib/libsurfaceflinger.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe4c 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe50 4022dfe6 /system/lib/libEGL.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe54 400ae1b6 /system/lib/libc.so (malloc+6)
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe58 40151fd0 /system/lib/libstdc++.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe5c 4014f9ac /system/lib/libstdc++.so (operator new(unsigned int)+28)
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe60 0000000c
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe64 00000000
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe68 4022ce59 /system/lib/libEGL.so (android::Loader::init_api(void*, char const* const*, void (**)(), void (*(*)(char const*))())+9)
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe6c 400aef29 /system/lib/libc.so (pthread_mutex_unlock+25)
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe70 d794354e
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe74 4164ef21
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe78 40267040 /system/lib/libEGL.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedfe7c 40e4fac8 [heap]
06-19 11:26:52.936 1324 1324 I DEBUG : ........ ........
06-19 11:26:52.936 1324 1324 I DEBUG : #01 bfedff40 40e4f9b0 [heap]
06-19 11:26:52.936 1324 1324 I DEBUG : bfedff44 bfedffa8 [stack]
06-19 11:26:52.936 1324 1324 I DEBUG : bfedff48 40e4d834 [heap]
06-19 11:26:52.936 1324 1324 I DEBUG : bfedff4c 40190d18 /system/lib/libutils.so (android::String8::appendFormat(char const*, ...)+152)
06-19 11:26:52.936 1324 1324 I DEBUG : bfedff50 00000009
06-19 11:26:52.936 1324 1324 I DEBUG : bfedff54 66666667
06-19 11:26:52.936 1324 1324 I DEBUG : bfedff58 40097e48 /system/lib/libcutils.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedff5c 4008a2cf /system/lib/libcutils.so (set_sched_policy+479)
06-19 11:26:52.936 1324 1324 I DEBUG : bfedff60 00000009
06-19 11:26:52.936 1324 1324 I DEBUG : bfedff64 bfedffa7 [stack]
06-19 11:26:52.936 1324 1324 I DEBUG : bfedff68 00000004
06-19 11:26:52.936 1324 1324 I DEBUG : bfedff6c 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedff70 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedff74 4006b4fa /system/lib/libsurfaceflinger.so
06-19 11:26:52.936 1324 1324 I DEBUG : bfedff78 40e4d838 [heap]
06-19 11:26:52.936 1324 1324 I DEBUG : bfedff7c 4004ae59 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::onFirstRef()+105)
06-19 11:26:52.936 1324 1324 I DEBUG : ........ ........
06-19 11:26:52.936 1324 1324 I DEBUG :
06-19 11:26:52.936 1324 1324 I DEBUG : memory map around fault addr 4005f461:
06-19 11:26:52.936 1324 1324 I DEBUG : 40027000-40029000 r--
06-19 11:26:52.936 1324 1324 I DEBUG : 40029000-4007a000 r-x /system/lib/libsurfaceflinger.so
06-19 11:26:52.936 1324 1324 I DEBUG : 4007a000-40081000 r-- /system/lib/libsurfaceflinger.so
06-19 11:26:52.986 1321 1321 I ServiceManager: service 'media.audio_flinger' died
06-19 11:26:52.986 1321 1321 I ServiceManager: service 'media.player' died
06-19 11:26:52.986 1321 1321 I ServiceManager: service 'media.camera' died
06-19 11:26:58.026 1460 1460 I Netd : Netd 1.0 starting
06-19 11:26:58.026 1460 1460 W InterfaceController: Warning (dlopen failed: library "/system/lib/libnetcmdiface.so" not found) while opening the net interface command library
06-19 11:26:58.046 1461 1461 I SurfaceFlinger: SurfaceFlinger is starting
06-19 11:26:58.076 1461 1461 I SurfaceFlinger: SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
06-19 11:26:58.076 1461 1461 D libEGL : 3D hardware acceleration is disabled
06-19 11:26:58.076 1461 1461 D libEGL : Emulator without GPU support detected. Fallback to software renderer.
06-19 11:26:58.076 1461 1461 D libEGL : loaded /system/lib/egl/libGLES_android.so
06-19 11:26:58.216 1462 1462 D AndroidRuntime:
06-19 11:26:58.216 1462 1462 D AndroidRuntime: >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
06-19 11:26:58.236 1461 1461 W gralloc : page flipping not supported (yres_virtual=600, requested=1200)
06-19 11:26:58.236 1461 1461 I gralloc : using (fd=14)
06-19 11:26:58.236 1461 1461 I gralloc : id = VESA VGA
06-19 11:26:58.236 1461 1461 I gralloc : xres = 800 px
06-19 11:26:58.236 1461 1461 I gralloc : yres = 600 px
06-19 11:26:58.236 1461 1461 I gralloc : xres_virtual = 800 px
06-19 11:26:58.236 1461 1461 I gralloc : yres_virtual = 600 px
06-19 11:26:58.236 1461 1461 I gralloc : bpp = 16
06-19 11:26:58.236 1461 1461 I gralloc : r = 11:5
06-19 11:26:58.236 1461 1461 I gralloc : g = 5:6
06-19 11:26:58.236 1461 1461 I gralloc : b = 0:5
06-19 11:26:58.236 1461 1461 I gralloc : width = 127 mm (160.000000 dpi)
06-19 11:26:58.236 1461 1461 I gralloc : height = 95 mm (160.421051 dpi)
06-19 11:26:58.236 1461 1461 I gralloc : refresh rate = 91.11 Hz
06-19 11:26:58.236 1461 1461 E SurfaceFlinger: hwcomposer module not found
06-19 11:26:58.236 1461 1461 F libc : Fatal signal 4 (SIGILL) at 0x4005f461 (code=2), thread 1461 (surfaceflinger)
06-19 11:26:58.236 1462 1462 D AndroidRuntime: CheckJNI is ON
06-19 11:26:58.246 1463 1463 I mediaserver: ServiceManager: 0x41ca3d40
06-19 11:26:58.246 1463 1463 I AudioFlinger: Using default 3000 mSec as standby time.
06-19 11:26:58.246 1463 1463 I CameraService: CameraService started (pid=1463)
06-19 11:26:58.246 1463 1463 D Camera_Factory: CameraFactory::CameraFactory
06-19 11:26:58.246 1463 1463 D Camera_Factory: CameraFactory::parseConfig: configFile = /etc/camera.cfg
06-19 11:26:58.246 1463 1463 D Camera_Factory: /etc/camera.cfg not found, using camera configuration defaults
06-19 11:26:58.246 1463 1463 D Camera_Factory: Found device /dev/video0
06-19 11:26:58.246 1463 1463 D Camera_Factory: CameraFactory::newCameraConfig: 0 -> /dev/video0 (0)
06-19 11:26:58.246 1463 1463 I CameraService: Loaded "Camera Module" camera module
06-19 11:26:58.246 1463 1463 D Camera_Factory: CameraFactory::get_number_of_cameras
06-19 11:26:58.246 1463 1463 D Camera_Factory: CameraFactory::getCameraNum: 1
06-19 11:26:58.246 1463 1463 I AudioPolicyManagerBase: loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
06-19 11:26:58.246 1462 1462 D dalvikvm: Trying to load lib libjavacore.so 0x0
06-19 11:26:58.246 1462 1462 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:58.246 1462 1462 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:58.246 1462 1462 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:58.246 1462 1462 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:58.246 1462 1462 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:58.246 1462 1462 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:58.246 1462 1462 D dalvikvm: Added shared lib libjavacore.so 0x0
06-19 11:26:58.246 1463 1463 E audio_hw_primary: Failed to open /system/etc/mixer_paths.xml
06-19 11:26:58.246 1463 1463 I AudioFlinger: loadHwModule() Loaded primary audio interface from Grouper audio HW HAL (audio) handle 1
06-19 11:26:58.246 1463 1463 I AudioFlinger: HAL output buffer size 512 frames, normal mix buffer size 1024 frames
06-19 11:26:58.246 1463 1463 I AudioMixer: found effect "Multichannel Downmix To Stereo" from The Android Open Source Project
06-19 11:26:58.246 1462 1462 D dalvikvm: Trying to load lib libnativehelper.so 0x0
06-19 11:26:58.246 1463 1463 E MonoPipe: Failed to fetch local time frequency when constructing a MonoPipe (res = -32). getNextWriteTimestamp calls will be non-functional
06-19 11:26:58.256 1462 1462 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:58.256 1462 1462 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:58.256 1462 1462 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:58.256 1462 1462 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:58.256 1462 1462 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:58.256 1462 1462 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:26:58.256 1462 1462 D dalvikvm: Added shared lib libnativehelper.so 0x0
06-19 11:26:58.256 1462 1462 D dalvikvm: No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
06-19 11:26:58.286 1462 1462 D dalvikvm: Note: class Landroid/app/ActivityManagerNative; has 179 unimplemented (abstract) methods
06-19 11:26:58.336 1324 1324 I DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
06-19 11:26:58.336 1324 1324 I DEBUG : Build fingerprint: 'unknown'
06-19 11:26:58.336 1324 1324 I DEBUG : Revision: '0'
06-19 11:26:58.336 1324 1324 I DEBUG : pid: 1461, tid: 1461, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
06-19 11:26:58.336 1324 1324 I DEBUG : signal 4 (SIGILL), code 2 (ILL_ILLOPN), fault addr 4005f461
06-19 11:26:58.376 1324 1324 I DEBUG : eax 4006d2e4 ebx 400808d8 ecx 406a9b90 edx 00000001
06-19 11:26:58.406 1324 1324 I DEBUG : esi 00000000 edi 4006bafe
06-19 11:26:58.406 1324 1324 I DEBUG : xcs 00000073 xds 0000007b xes 0000007b xfs 00000000 xss 0000007b
06-19 11:26:58.406 1324 1324 I DEBUG : eip 4005f461 ebp 406a9a70 esp bf879310 flags 00010246
06-19 11:26:58.406 1324 1324 E Corkscrew: unrecognized DW_CFA_* instruction: 0x10
06-19 11:26:58.406 1324 1324 I DEBUG :
06-19 11:26:58.406 1324 1324 I DEBUG : backtrace:
06-19 11:26:58.406 1324 1324 I DEBUG : #00 pc 00036461 /system/lib/libsurfaceflinger.so (android::HWComposer::HWComposer(android::sp<android::SurfaceFlinger> const&, android::HWComposer::EventHandler&)+2001)
06-19 11:26:58.406 1324 1324 I DEBUG : #01 pc 0002b2b6 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::init()+182)
06-19 11:26:58.406 1324 1324 I DEBUG : #02 pc 00000931 /system/bin/surfaceflinger (main+209)
06-19 11:26:58.406 1324 1324 I DEBUG :
06-19 11:26:58.406 1324 1324 I DEBUG : stack:
06-19 11:26:58.406 1324 1324 I DEBUG : bf8792d0 00000020
06-19 11:26:58.406 1324 1324 I DEBUG : bf8792d4 4022db23 /system/lib/libEGL.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf8792d8 40179629 /system/lib/libhardware.so (hw_get_module_by_class+9)
06-19 11:26:58.406 1324 1324 I DEBUG : bf8792dc 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf8792e0 00000000
06-19 11:26:58.406 1324 1324 I DEBUG : bf8792e4 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf8792e8 406a9a70 [anon:libc_malloc]
06-19 11:26:58.406 1324 1324 I DEBUG : bf8792ec efe06295
06-19 11:26:58.406 1324 1324 I DEBUG : bf8792f0 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf8792f4 00000000
06-19 11:26:58.406 1324 1324 I DEBUG : bf8792f8 4008f2c9 /system/lib/libcutils.so (__android_log_print+9)
06-19 11:26:58.406 1324 1324 I DEBUG : bf8792fc 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf879300 00000000
06-19 11:26:58.406 1324 1324 I DEBUG : bf879304 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf879308 406a9a70 [anon:libc_malloc]
06-19 11:26:58.406 1324 1324 I DEBUG : bf87930c 4005ef56 /system/lib/libsurfaceflinger.so (android::HWComposer::HWComposer(android::sp<android::SurfaceFlinger> const&, android::HWComposer::EventHandler&)+710)
06-19 11:26:58.406 1324 1324 I DEBUG : #00 bf879310 00000006
06-19 11:26:58.406 1324 1324 I DEBUG : bf879314 4006b4fa /system/lib/libsurfaceflinger.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf879318 4006bae6 /system/lib/libsurfaceflinger.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf87931c 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf879320 4022dfe6 /system/lib/libEGL.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf879324 400ae1b6 /system/lib/libc.so (malloc+6)
06-19 11:26:58.406 1324 1324 I DEBUG : bf879328 40151fd0 /system/lib/libstdc++.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf87932c 4014f9ac /system/lib/libstdc++.so (operator new(unsigned int)+28)
06-19 11:26:58.406 1324 1324 I DEBUG : bf879330 0000000c
06-19 11:26:58.406 1324 1324 I DEBUG : bf879334 00000000
06-19 11:26:58.406 1324 1324 I DEBUG : bf879338 4022ce59 /system/lib/libEGL.so (android::Loader::init_api(void*, char const* const*, void (**)(), void (*(*)(char const*))())+9)
06-19 11:26:58.406 1324 1324 I DEBUG : bf87933c 400aef29 /system/lib/libc.so (pthread_mutex_unlock+25)
06-19 11:26:58.406 1324 1324 I DEBUG : bf879340 d794354e
06-19 11:26:58.406 1324 1324 I DEBUG : bf879344 4164ef21
06-19 11:26:58.406 1324 1324 I DEBUG : bf879348 40267040 /system/lib/libEGL.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf87934c 406a9b88 [anon:libc_malloc]
06-19 11:26:58.406 1324 1324 I DEBUG : ........ ........
06-19 11:26:58.406 1324 1324 I DEBUG : #01 bf879410 406a9a70 [anon:libc_malloc]
06-19 11:26:58.406 1324 1324 I DEBUG : bf879414 bf879478 [stack]
06-19 11:26:58.406 1324 1324 I DEBUG : bf879418 406a8024 [anon:libc_malloc]
06-19 11:26:58.406 1324 1324 I DEBUG : bf87941c 40190d18 /system/lib/libutils.so (android::String8::appendFormat(char const*, ...)+152)
06-19 11:26:58.406 1324 1324 I DEBUG : bf879420 00000009
06-19 11:26:58.406 1324 1324 I DEBUG : bf879424 66666667
06-19 11:26:58.406 1324 1324 I DEBUG : bf879428 40097e48 /system/lib/libcutils.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf87942c 4008a2cf /system/lib/libcutils.so (set_sched_policy+479)
06-19 11:26:58.406 1324 1324 I DEBUG : bf879430 00000009
06-19 11:26:58.406 1324 1324 I DEBUG : bf879434 bf879477 [stack]
06-19 11:26:58.406 1324 1324 I DEBUG : bf879438 00000004
06-19 11:26:58.406 1324 1324 I DEBUG : bf87943c 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf879440 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf879444 4006b4fa /system/lib/libsurfaceflinger.so
06-19 11:26:58.406 1324 1324 I DEBUG : bf879448 406a8028 [anon:libc_malloc]
06-19 11:26:58.406 1324 1324 I DEBUG : bf87944c 4004ae59 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::onFirstRef()+105)
06-19 11:26:58.406 1324 1324 I DEBUG : ........ ........
06-19 11:26:58.406 1324 1324 I DEBUG :
06-19 11:26:58.406 1324 1324 I DEBUG : memory map around fault addr 4005f461:
06-19 11:26:58.406 1324 1324 I DEBUG : 40028000-40029000 rw- [anon:libc_malloc]
06-19 11:26:58.406 1324 1324 I DEBUG : 40029000-4007a000 r-x /system/lib/libsurfaceflinger.so
06-19 11:26:58.406 1324 1324 I DEBUG : 4007a000-40081000 r-- /system/lib/libsurfaceflinger.so
06-19 11:26:58.466 1321 1321 I ServiceManager: service 'media.audio_flinger' died
06-19 11:26:58.466 1321 1321 I ServiceManager: service 'media.player' died
06-19 11:26:58.466 1321 1321 I ServiceManager: service 'media.camera' died
06-19 11:27:02.506 1492 1492 I Netd : Netd 1.0 starting
06-19 11:27:02.506 1492 1492 W InterfaceController: Warning (dlopen failed: library "/system/lib/libnetcmdiface.so" not found) while opening the net interface command library
06-19 11:27:02.516 1493 1493 I SurfaceFlinger: SurfaceFlinger is starting
06-19 11:27:02.556 1493 1493 I SurfaceFlinger: SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
06-19 11:27:02.556 1493 1493 D libEGL : 3D hardware acceleration is disabled
06-19 11:27:02.556 1493 1493 D libEGL : Emulator without GPU support detected. Fallback to software renderer.
06-19 11:27:02.556 1493 1493 D libEGL : loaded /system/lib/egl/libGLES_android.so
06-19 11:27:02.696 1493 1493 W gralloc : page flipping not supported (yres_virtual=600, requested=1200)
06-19 11:27:02.696 1493 1493 I gralloc : using (fd=14)
06-19 11:27:02.696 1493 1493 I gralloc : id = VESA VGA
06-19 11:27:02.696 1493 1493 I gralloc : xres = 800 px
06-19 11:27:02.696 1493 1493 I gralloc : yres = 600 px
06-19 11:27:02.696 1493 1493 I gralloc : xres_virtual = 800 px
06-19 11:27:02.696 1493 1493 I gralloc : yres_virtual = 600 px
06-19 11:27:02.696 1493 1493 I gralloc : bpp = 16
06-19 11:27:02.696 1493 1493 I gralloc : r = 11:5
06-19 11:27:02.696 1493 1493 I gralloc : g = 5:6
06-19 11:27:02.696 1493 1493 I gralloc : b = 0:5
06-19 11:27:02.696 1493 1493 I gralloc : width = 127 mm (160.000000 dpi)
06-19 11:27:02.696 1493 1493 I gralloc : height = 95 mm (160.421051 dpi)
06-19 11:27:02.696 1493 1493 I gralloc : refresh rate = 91.11 Hz
06-19 11:27:02.696 1493 1493 E SurfaceFlinger: hwcomposer module not found
06-19 11:27:02.696 1493 1493 F libc : Fatal signal 4 (SIGILL) at 0x4005f461 (code=2), thread 1493 (surfaceflinger)
06-19 11:27:02.696 1494 1494 D AndroidRuntime:
06-19 11:27:02.696 1494 1494 D AndroidRuntime: >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
06-19 11:27:02.706 1494 1494 D AndroidRuntime: CheckJNI is ON
06-19 11:27:02.726 1495 1495 I mediaserver: ServiceManager: 0x411d0db0
06-19 11:27:02.726 1495 1495 I AudioFlinger: Using default 3000 mSec as standby time.
06-19 11:27:02.726 1494 1494 D dalvikvm: Trying to load lib libjavacore.so 0x0
06-19 11:27:02.726 1495 1495 I CameraService: CameraService started (pid=1495)
06-19 11:27:02.726 1495 1495 D Camera_Factory: CameraFactory::CameraFactory
06-19 11:27:02.726 1494 1494 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:27:02.726 1494 1494 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:27:02.726 1494 1494 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:27:02.726 1494 1494 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:27:02.726 1494 1494 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:27:02.726 1494 1494 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:27:02.726 1494 1494 D dalvikvm: Added shared lib libjavacore.so 0x0
06-19 11:27:02.726 1495 1495 D Camera_Factory: CameraFactory::parseConfig: configFile = /etc/camera.cfg
06-19 11:27:02.726 1495 1495 D Camera_Factory: /etc/camera.cfg not found, using camera configuration defaults
06-19 11:27:02.726 1495 1495 D Camera_Factory: Found device /dev/video0
06-19 11:27:02.726 1495 1495 D Camera_Factory: CameraFactory::newCameraConfig: 0 -> /dev/video0 (0)
06-19 11:27:02.726 1495 1495 I CameraService: Loaded "Camera Module" camera module
06-19 11:27:02.726 1495 1495 D Camera_Factory: CameraFactory::get_number_of_cameras
06-19 11:27:02.726 1495 1495 D Camera_Factory: CameraFactory::getCameraNum: 1
06-19 11:27:02.726 1495 1495 I AudioPolicyManagerBase: loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
06-19 11:27:02.726 1495 1495 E audio_hw_primary: Failed to open /system/etc/mixer_paths.xml
06-19 11:27:02.736 1495 1495 I AudioFlinger: loadHwModule() Loaded primary audio interface from Grouper audio HW HAL (audio) handle 1
06-19 11:27:02.736 1495 1495 I AudioFlinger: HAL output buffer size 512 frames, normal mix buffer size 1024 frames
06-19 11:27:02.736 1495 1495 I AudioMixer: found effect "Multichannel Downmix To Stereo" from The Android Open Source Project
06-19 11:27:02.736 1495 1495 E MonoPipe: Failed to fetch local time frequency when constructing a MonoPipe (res = -32). getNextWriteTimestamp calls will be non-functional
06-19 11:27:02.736 1494 1494 D dalvikvm: Trying to load lib libnativehelper.so 0x0
06-19 11:27:02.736 1494 1494 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:27:02.736 1494 1494 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:27:02.736 1494 1494 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:27:02.736 1494 1494 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:27:02.736 1494 1494 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:27:02.736 1494 1494 E houdini_hook: Unable to open libdvm_houdini lib
06-19 11:27:02.736 1494 1494 D dalvikvm: Added shared lib libnativehelper.so 0x0
06-19 11:27:02.736 1494 1494 D dalvikvm: No JNI_OnLoad found in libnativehelper.so 0x0, skipping init
06-19 11:27:02.766 1494 1494 D dalvikvm: Note: class Landroid/app/ActivityManagerNative; has 179 unimplemented (abstract) methods
06-19 11:27:02.796 1324 1324 I DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
06-19 11:27:02.796 1324 1324 I DEBUG : Build fingerprint: 'unknown'
06-19 11:27:02.796 1324 1324 I DEBUG : Revision: '0'
06-19 11:27:02.796 1324 1324 I DEBUG : pid: 1493, tid: 1493, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
06-19 11:27:02.796 1324 1324 I DEBUG : signal 4 (SIGILL), code 2 (ILL_ILLOPN), fault addr 4005f461
06-19 11:27:02.846 1324 1324 I DEBUG : eax 4006d2e4 ebx 400808d8 ecx 41a71ad0 edx 00000001
06-19 11:27:02.846 1324 1324 I DEBUG : esi 00000000 edi 4006bafe
06-19 11:27:02.846 1324 1324 I DEBUG : xcs 00000073 xds 0000007b xes 0000007b xfs 00000000 xss 0000007b
06-19 11:27:02.846 1324 1324 I DEBUG : eip 4005f461 ebp 41a719b0 esp bf996370 flags 00010246
06-19 11:27:02.846 1324 1324 E Corkscrew: unrecognized DW_CFA_* instruction: 0x10
06-19 11:27:02.846 1324 1324 I DEBUG :
06-19 11:27:02.846 1324 1324 I DEBUG : backtrace:
06-19 11:27:02.846 1324 1324 I DEBUG : #00 pc 00036461 /system/lib/libsurfaceflinger.so (android::HWComposer::HWComposer(android::sp<android::SurfaceFlinger> const&, android::HWComposer::EventHandler&)+2001)
06-19 11:27:02.846 1324 1324 I DEBUG : #01 pc 0002b2b6 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::init()+182)
06-19 11:27:02.846 1324 1324 I DEBUG : #02 pc 00000931 /system/bin/surfaceflinger (main+209)
06-19 11:27:02.846 1324 1324 I DEBUG :
06-19 11:27:02.846 1324 1324 I DEBUG : stack:
06-19 11:27:02.846 1324 1324 I DEBUG : bf996330 00000020
06-19 11:27:02.846 1324 1324 I DEBUG : bf996334 4022db23 /system/lib/libEGL.so
06-19 11:27:02.846 1324 1324 I DEBUG : bf996338 40179629 /system/lib/libhardware.so (hw_get_module_by_class+9)
06-19 11:27:02.846 1324 1324 I DEBUG : bf99633c 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:27:02.846 1324 1324 I DEBUG : bf996340 00000000
06-19 11:27:02.846 1324 1324 I DEBUG : bf996344 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:27:02.846 1324 1324 I DEBUG : bf996348 41a719b0 [heap]
06-19 11:27:02.846 1324 1324 I DEBUG : bf99634c 7abad0fe
06-19 11:27:02.846 1324 1324 I DEBUG : bf996350 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:27:02.846 1324 1324 I DEBUG : bf996354 00000000
06-19 11:27:02.846 1324 1324 I DEBUG : bf996358 4008f2c9 /system/lib/libcutils.so (__android_log_print+9)
06-19 11:27:02.846 1324 1324 I DEBUG : bf99635c 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:27:02.846 1324 1324 I DEBUG : bf996360 00000000
06-19 11:27:02.846 1324 1324 I DEBUG : bf996364 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:27:02.846 1324 1324 I DEBUG : bf996368 41a719b0 [heap]
06-19 11:27:02.846 1324 1324 I DEBUG : bf99636c 4005ef56 /system/lib/libsurfaceflinger.so (android::HWComposer::HWComposer(android::sp<android::SurfaceFlinger> const&, android::HWComposer::EventHandler&)+710)
06-19 11:27:02.846 1324 1324 I DEBUG : #00 bf996370 00000006
06-19 11:27:02.846 1324 1324 I DEBUG : bf996374 4006b4fa /system/lib/libsurfaceflinger.so
06-19 11:27:02.856 1324 1324 I DEBUG : bf996378 4006bae6 /system/lib/libsurfaceflinger.so
06-19 11:27:02.856 1324 1324 I DEBUG : bf99637c 4006bafe /system/lib/libsurfaceflinger.so
06-19 11:27:02.856 1324 1324 I DEBUG : bf996380 4022dfe6 /system/lib/libEGL.so
06-19 11:27:02.856 1324 1324 I DEBUG : bf996384 400ae1b6 /system/lib/libc.so (malloc+6)
06-19 11:27:02.856 1324 1324 I DEBUG : bf996388 40151fd0 /system/lib/libstdc++.so
06-19 11:27:02.856 1324 1324 I DEBUG : bf99638c 4014f9ac /system/lib/libstdc++.so (operator new(unsigned int)+28)
06-19 11:27:02.856 1324 1324 I DEBUG : bf996390 0000000c
06-19 11:27:02.856 1324 1324 I DEBUG : bf996394 00000000
06-19 11:27:02.856 1324 1324 I DEBUG : bf996398 4022ce59 /system/lib/libEGL.so (android::Loader::init_api(void*, char const* const*, void (**)(), void (*(*)(char const*))())+9)
06-19 11:27:02.856 1324 1324 I DEBUG : bf99639c 400aef29 /system/lib/libc.so (pthread_mutex_unlock+25)
06-19 11:27:02.856 1324 1324 I DEBUG : bf9963a0 d794354e
06-19 11:27:02.856 1324 1324 I DEBUG : bf9963a4 4164ef21
06-19 11:27:02.856 1324 1324 I DEBUG : bf9963a8 40267040 /system/lib/libEGL.so
06-19 11:27:02.856 1324 1324 I DEBUG : bf9963ac 41a71ac8 [heap]
06-19 11:27:02.856 1324 1324 I DEBUG : ........ ........
06-19 11:27:02.856 1324 1324 I DEBUG : #01 bf996470 41a719b0 [heap]
06-19 11:27:02.856 1324 1324 I DEBUG : bf996474 bf9964d8 [stack]
06-19 11:27:02.856 1324 1324 I DEBUG : bf996478 41a6f834 [heap]
06-19 11:27:02.856 1324 1324 I DEBUG : bf99647c 40190d18 /system/lib/libutils.so (android::String8::appendFormat(char const*, ...)+152)
06-19 11:27:02.856 1324 1324 I DEBUG : bf996480 00000009
06-19 11:27:02.856 1324 1324 I DEBUG : bf996484 66666667
06-19 11:27:02.856 1324 1324 I DEBUG : bf996488 40097e48 /system/lib/libcutils.so
06-19 11:27:02.856 1324 1324 I DEBUG : bf99648c 4008a2cf /system/lib/libcutils.so (set_sched_policy+479)
06-19 11:27:02.856 1324 1324 I DEBUG : bf996490 00000009
06-19 11:27:02.856 1324 1324 I DEBUG : bf996494 bf9964d7 [stack]
06-19 11:27:02.856 1324 1324 I DEBUG : bf996498 00000004
06-19 11:27:02.856 1324 1324 I DEBUG : bf99649c 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:27:02.856 1324 1324 I DEBUG : bf9964a0 400808d8 /system/lib/libsurfaceflinger.so
06-19 11:27:02.856 1324 1324 I DEBUG : bf9964a4 4006b4fa /system/lib/libsurfaceflinger.so
06-19 11:27:02.856 1324 1324 I DEBUG : bf9964a8 41a6f838 [heap]
06-19 11:27:02.856 1324 1324 I DEBUG : bf9964ac 4004ae59 /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::onFirstRef()+105)
06-19 11:27:02.856 1324 1324 I DEBUG : ........ ........
06-19 11:27:02.856 1324 1324 I DEBUG :
06-19 11:27:02.856 1324 1324 I DEBUG : memory map around fault addr 4005f461:
06-19 11:27:02.856 1324 1324 I DEBUG : 40027000-40029000 r--
06-19 11:27:02.856 1324 1324 I DEBUG : 40029000-4007a000 r-x /system/lib/libsurfaceflinger.so
06-19 11:27:02.856 1324 1324 I DEBUG : 4007a000-40081000 r-- /system/lib/libsurfaceflinger.so
06-19 11:27:02.916 1321 1321 I ServiceManager: service 'media.audio_flinger' died
06-19 11:27:02.916 1321 1321 I ServiceManager: service 'media.player' died
06-19 11:27:02.916 1321 1321 I ServiceManager: service 'media.camera' died
06-19 11:27:07.956 1524 1524 I Netd : Netd 1.0 starting
06-19 11:27:07.956 1524 1524 W InterfaceController: Warning (dlopen failed: library "/system/lib/libnetcmdiface.so" not found) while opening the net interface command library
06-19 11:27:07.976 1525 1525 I SurfaceFlinger: SurfaceFlinger is starting
06-19 11:27:08.006 1525 1525 I SurfaceFlinger: SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
06-19 11:27:08.006 1525 1525 D libEGL : 3D hardware acceleration is disabled
06-19 11:27:08.006 1525 1525 D libEGL : Emulator without GPU support detected. Fallback to software renderer.
06-19 11:27:08.006 1525 1525 D libEGL : loaded /system/lib/egl/libGLES_android.so
06-19 11:27:08.136 1525 1525 W gralloc : page flipping not supported (yres_virtual=600, requested=1200)
06-19 11:27:08.136 1525 1525 I gralloc : using (fd=14)
06-19 11:27:08.136 1525 1525 I gralloc : id = VESA VGA
06-19 11:27:08.136 1525 1525 I gralloc : xres = 800 px
06-19 11:27:08.136 1525 1525 I gralloc : yres = 600 px
06-19 11:27:08.136 1525 1525 I gralloc : xres_virtual = 800 px
06-19 11:27:08.136 1525 1525 I gralloc : yres_virtual = 600 px
06-19 11:27:08.136 1525 1525 I gralloc : bpp = 16
06-19 11:27:08.136 1525 1525 I gralloc : r = 11:5
06-19 11:27:08.136 1525 1525 I gralloc : g = 5:6
06-19 11:27:08.136 1525 1525 I gralloc : b = 0:5
06-19 11:27:08.136 1525 1525 I gralloc : width = 127 mm (160.000000 dpi)
06-19 11:27:08.136 1525 1525 I gralloc : height = 95 mm (160.421051 dpi)
06-19 11:27:08.136 1525 1525 I gralloc : refresh rate = 91.11 Hz
06-19 11:27:08.136 1525 1525 E SurfaceFlinger: hwcomposer module not found
06-19 11:27:08.136 1525 1525 F libc : Fatal signal 4 (SIGILL) at 0x4005f461 (code=2), thread 1525 (surfaceflinger)
06-19 11:27:08.156 1526 1526 D AndroidRuntime:
06-19 11:27:08.156 1526 1526 D AndroidRuntime: >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<