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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443 | Begin: Loading essential drivers ... done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... done.
[ 0.213899] mmc0: new SDHC card at address e118
[ 0.219204] mmcblk0: mmc0:e118 SU02G 4.00 GiB
[ 0.219927] mmcblk0: unknown partition table
[ 0.270043] initrd: checking filesystem integrity for the userdata partition
[ 0.270949] EXT4-fs (mmcblk0): couldn't mount as ext3 due to feature incompatibilities
[ 0.278239] EXT4-fs (mmcblk0): couldn't mount as ext2 due to feature incompatibilities
[ 0.290635] EXT4-fs (mmcblk0): mounted filesystem with ordered data mode. Opts: errors=remount-ro
[ 0.305606] mmcblk0: unknown partition table
[ 0.317000] initrd: checking filesystem for userdata took (including e2fsck) 0 seconds
[ 0.317053] initrd: mounting /dev/mmcblk0
[ 0.376426] EXT4-fs: Warning: mounting with data=journal disables delayed allocation and O_DIRECT support!
[ 0.376477] EXT4-fs (mmcblk0): couldn't mount as ext3 due to feature incompatibilities
[ 0.377984] EXT4-fs (mmcblk0): couldn't mount as ext2 due to feature incompatibilities
[ 0.389096] EXT4-fs (mmcblk0): mounted filesystem with journalled data mode. Opts: discard,data=journal
[ 0.389677] initrd: boot mode: ubuntu
[ 0.404289] EXT4-fs (loop0): couldn't mount as ext3 due to feature incompatibilities
[ 0.428456] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null)
[ 0.428619] initrd: mounting system.img (image developer mode)
[ 0.460575] EXT4-fs (loop1): couldn't mount as ext3 due to feature incompatibilities
[ 0.475175] EXT4-fs (loop1): couldn't mount as ext2 due to feature incompatibilities
[ 0.484764] EXT4-fs (loop1): mounted filesystem with ordered data mode. Opts: (null)
[ 0.486449] initrd: device is generic_x86
[ 0.955688] initrd: checking fstab /root/var/lib/lxc/android/rootfs/fstab* for additional mount points
[ 0.972868] initrd: checking mount label mtdblock2
[ 0.973635] initrd: mounting /dev/mtdblock2 as /root/android//cache
mount: mounting /dev/mtdblock2 on /root/android//cache failed: Invalid argument
[ 0.977368] initrd: mounting /root/var/lib/lxc/android/system.img as /root/android/system
Begin: Running /scripts/local-bottom ... done.
done.
Begin: Running /scripts/init-bottom ... done.
main: Using configuration directory /etc/init
Loading configuration from /etc/init.conf
Loading configuration from /etc/init
conf_load_path_with_override: Loading configuration file /etc/init/adbd-emergency-shell.conf
conf_reload_path: Loading adbd-emergency-shell from /etc/init/adbd-emergency-shell.conf
parse_job: Creating new JobClass adbd-emergency-shell
conf_load_path_with_override: Loading configuration file /etc/init/alsa-restore.conf
conf_reload_path: Loading alsa-restore from /etc/init/alsa-restore.conf
parse_job: Creating new JobClass alsa-restore
conf_load_path_with_override: Loading override file /etc/init/alsa-restore.conf for /etc/init/alsa-restore.override
conf_reload_path: Updating alsa-restore (/etc/init/alsa-restore.conf) with /etc/init/alsa-restore.override
parse_job: Reusing JobClass alsa-restore (/com/ubuntu/Upstart/jobs/alsa_2drestore)
stanza_manual: disregarding start on events for alsa-restore
conf_load_path_with_override: Loading configuration file /etc/init/alsa-restore.conf
conf_reload_path: Loading alsa-restore from /etc/init/alsa-restore.conf
parse_job: Creating new JobClass alsa-restore
conf_file_destroy: Destroyed unused job alsa-restore
conf_load_path_with_override: Loading override file /etc/init/alsa-restore.conf for /etc/init/alsa-restore.override
conf_reload_path: Updating alsa-restore (/etc/init/alsa-restore.conf) with /etc/init/alsa-restore.override
parse_job: Reusing JobClass alsa-restore (/com/ubuntu/Upstart/jobs/alsa_2drestore)
stanza_manual: disregarding start on events for alsa-restore
conf_load_path_with_override: Loading configuration file /etc/init/alsa-state.conf
conf_reload_path: Loading alsa-state from /etc/init/alsa-state.conf
parse_job: Creating new JobClass alsa-state
conf_load_path_with_override: Loading configuration file /etc/init/alsa-store.conf
conf_reload_path: Loading alsa-store from /etc/init/alsa-store.conf
parse_job: Creating new JobClass alsa-store
conf_load_path_with_override: Loading override file /etc/init/alsa-store.conf for /etc/init/alsa-store.override
conf_reload_path: Updating alsa-store (/etc/init/alsa-store.conf) with /etc/init/alsa-store.override
parse_job: Reusing JobClass alsa-store (/com/ubuntu/Upstart/jobs/alsa_2dstore)
stanza_manual: disregarding start on events for alsa-store
conf_load_path_with_override: Loading configuration file /etc/init/alsa-store.conf
conf_reload_path: Loading alsa-store from /etc/init/alsa-store.conf
parse_job: Creating new JobClass alsa-store
conf_file_destroy: Destroyed unused job alsa-store
conf_load_path_with_override: Loading override file /etc/init/alsa-store.conf for /etc/init/alsa-store.override
conf_reload_path: Updating alsa-store (/etc/init/alsa-store.conf) with /etc/init/alsa-store.override
parse_job: Reusing JobClass alsa-store (/com/ubuntu/Upstart/jobs/alsa_2dstore)
stanza_manual: disregarding start on events for alsa-store
conf_load_path_with_override: Loading configuration file /etc/init/alsa-utils.conf
conf_reload_path: Loading alsa-utils from /etc/init/alsa-utils.conf
parse_job: Creating new JobClass alsa-utils
conf_load_path_with_override: Loading configuration file /etc/init/android-tools-adbd.conf
conf_reload_path: Loading android-tools-adbd from /etc/init/android-tools-adbd.conf
parse_job: Creating new JobClass android-tools-adbd
conf_load_path_with_override: Loading configuration file /etc/init/android-usb-state.conf
conf_reload_path: Loading android-usb-state from /etc/init/android-usb-state.conf
parse_job: Creating new JobClass android-usb-state
conf_load_path_with_override: Loading configuration file /etc/init/apparmor.conf
conf_reload_path: Loading apparmor from /etc/init/apparmor.conf
parse_job: Creating new JobClass apparmor
conf_load_path_with_override: Loading override file /etc/init/apparmor.conf for /etc/init/apparmor.override
conf_reload_path: Updating apparmor (/etc/init/apparmor.conf) with /etc/init/apparmor.override
parse_job: Reusing JobClass apparmor (/com/ubuntu/Upstart/jobs/apparmor)
conf_load_path_with_override: Loading configuration file /etc/init/apparmor.conf
conf_reload_path: Loading apparmor from /etc/init/apparmor.conf
parse_job: Creating new JobClass apparmor
conf_file_destroy: Destroyed unused job apparmor
conf_load_path_with_override: Loading override file /etc/init/apparmor.conf for /etc/init/apparmor.override
conf_reload_path: Updating apparmor (/etc/init/apparmor.conf) with /etc/init/apparmor.override
parse_job: Reusing JobClass apparmor (/com/ubuntu/Upstart/jobs/apparmor)
conf_load_path_with_override: Loading configuration file /etc/init/apport-noui.conf
conf_reload_path: Loading apport-noui from /etc/init/apport-noui.conf
parse_job: Creating new JobClass apport-noui
conf_load_path_with_override: Loading configuration file /etc/init/apport.conf
conf_reload_path: Loading apport from /etc/init/apport.conf
parse_job: Creating new JobClass apport
conf_load_path_with_override: Loading configuration file /etc/init/bluetooth-touch-flo.conf
conf_reload_path: Loading bluetooth-touch-flo from /etc/init/bluetooth-touch-flo.conf
parse_job: Creating new JobClass bluetooth-touch-flo
conf_load_path_with_override: Loading configuration file /etc/init/bluetooth-touch-grouper.conf
conf_reload_path: Loading bluetooth-touch-grouper from /etc/init/bluetooth-touch-grouper.conf
parse_job: Creating new JobClass bluetooth-touch-grouper
conf_load_path_with_override: Loading configuration file /etc/init/bluetooth-touch-maguro.conf
conf_reload_path: Loading bluetooth-touch-maguro from /etc/init/bluetooth-touch-maguro.conf
parse_job: Creating new JobClass bluetooth-touch-maguro
conf_load_path_with_override: Loading configuration file /etc/init/bluetooth-touch-mako.conf
conf_reload_path: Loading bluetooth-touch-mako from /etc/init/bluetooth-touch-mako.conf
parse_job: Creating new JobClass bluetooth-touch-mako
conf_load_path_with_override: Loading configuration file /etc/init/bluetooth-touch.conf
conf_reload_path: Loading bluetooth-touch from /etc/init/bluetooth-touch.conf
parse_job: Creating new JobClass bluetooth-touch
conf_load_path_with_override: Loading configuration file /etc/init/bluetooth.conf
conf_reload_path: Loading bluetooth from /etc/init/bluetooth.conf
parse_job: Creating new JobClass bluetooth
conf_load_path_with_override: Loading configuration file /etc/init/boot-hooks/extrausers.conf
conf_reload_path: Loading boot-hooks/extrausers from /etc/init/boot-hooks/extrausers.conf
parse_job: Creating new JobClass boot-hooks/extrausers
conf_load_path_with_override: Loading configuration file /etc/init/boot-hooks/wipe-qml-cache.conf
conf_reload_path: Loading boot-hooks/wipe-qml-cache from /etc/init/boot-hooks/wipe-qml-cache.conf
parse_job: Creating new JobClass boot-hooks/wipe-qml-cache
conf_load_path_with_override: Loading configuration file /etc/init/boot-hooks-emit.conf
conf_reload_path: Loading boot-hooks-emit from /etc/init/boot-hooks-emit.conf
parse_job: Creating new JobClass boot-hooks-emit
conf_load_path_with_override: Loading configuration file /etc/init/bootmisc.sh.conf
conf_reload_path: Loading bootmisc.sh from /etc/init/bootmisc.sh.conf
parse_job: Creating new JobClass bootmisc.sh
conf_load_path_with_override: Loading configuration file /etc/init/cgmanager.conf
conf_reload_path: Loading cgmanager from /etc/init/cgmanager.conf
parse_job: Creating new JobClass cgmanager
conf_load_path_with_override: Loading configuration file /etc/init/cgproxy.conf
conf_reload_path: Loading cgproxy from /etc/init/cgproxy.conf
parse_job: Creating new JobClass cgproxy
conf_load_path_with_override: Loading configuration file /etc/init/checkfs.sh.conf
conf_reload_path: Loading checkfs.sh from /etc/init/checkfs.sh.conf
parse_job: Creating new JobClass checkfs.sh
conf_load_path_with_override: Loading configuration file /etc/init/checkroot-bootclean.sh.conf
conf_reload_path: Loading checkroot-bootclean.sh from /etc/init/checkroot-bootclean.sh.conf
parse_job: Creating new JobClass checkroot-bootclean.sh
conf_load_path_with_override: Loading configuration file /etc/init/checkroot.sh.conf
conf_reload_path: Loading checkroot.sh from /etc/init/checkroot.sh.conf
parse_job: Creating new JobClass checkroot.sh
conf_load_path_with_override: Loading configuration file /etc/init/click-system-hooks.conf
conf_reload_path: Loading click-system-hooks from /etc/init/click-system-hooks.conf
parse_job: Creating new JobClass click-system-hooks
conf_load_path_with_override: Loading configuration file /etc/init/console-font.conf
conf_reload_path: Loading console-font from /etc/init/console-font.conf
parse_job: Creating new JobClass console-font
conf_load_path_with_override: Loading configuration file /etc/init/console-setup.conf
conf_reload_path: Loading console-setup from /etc/init/console-setup.conf
parse_job: Creating new JobClass console-setup
conf_load_path_with_override: Loading configuration file /etc/init/console.conf
conf_reload_path: Loading console from /etc/init/console.conf
parse_job: Creating new JobClass console
conf_load_path_with_override: Loading configuration file /etc/init/container-detect.conf
conf_reload_path: Loading container-detect from /etc/init/container-detect.conf
parse_job: Creating new JobClass container-detect
conf_load_path_with_override: Loading configuration file /etc/init/control-alt-delete.conf
conf_reload_path: Loading control-alt-delete from /etc/init/control-alt-delete.conf
parse_job: Creating new JobClass control-alt-delete
conf_load_path_with_override: Loading configuration file /etc/init/cron.conf
conf_reload_path: Loading cron from /etc/init/cron.conf
parse_job: Creating new JobClass cron
conf_load_path_with_override: Loading configuration file /etc/init/custom-apparmor-cache.conf
conf_reload_path: Loading custom-apparmor-cache from /etc/init/custom-apparmor-cache.conf
parse_job: Creating new JobClass custom-apparmor-cache
conf_load_path_with_override: Loading configuration file /etc/init/custom-dconf-update.conf
conf_reload_path: Loading custom-dconf-update from /etc/init/custom-dconf-update.conf
parse_job: Creating new JobClass custom-dconf-update
conf_load_path_with_override: Loading configuration file /etc/init/dbus.conf
conf_reload_path: Loading dbus from /etc/init/dbus.conf
parse_job: Creating new JobClass dbus
conf_load_path_with_override: Loading configuration file /etc/init/device-hacks.conf
conf_reload_path: Loading device-hacks from /etc/init/device-hacks.conf
parse_job: Creating new JobClass device-hacks
conf_load_path_with_override: Loading configuration file /etc/init/dmesg.conf
conf_reload_path: Loading dmesg from /etc/init/dmesg.conf
parse_job: Creating new JobClass dmesg
conf_load_path_with_override: Loading configuration file /etc/init/enable-cpu-hotplugging.conf
conf_reload_path: Loading enable-cpu-hotplugging from /etc/init/enable-cpu-hotplugging.conf
parse_job: Creating new JobClass enable-cpu-hotplugging
conf_load_path_with_override: Loading configuration file /etc/init/failsafe.conf
conf_reload_path: Loading failsafe from /etc/init/failsafe.conf
parse_job: Creating new JobClass failsafe
conf_load_path_with_override: Loading configuration file /etc/init/flush-early-job-log.conf
conf_reload_path: Loading flush-early-job-log from /etc/init/flush-early-job-log.conf
parse_job: Creating new JobClass flush-early-job-log
conf_load_path_with_override: Loading configuration file /etc/init/force-adb.conf
conf_reload_path: Loading force-adb from /etc/init/force-adb.conf
parse_job: Creating new JobClass force-adb
conf_load_path_with_override: Loading configuration file /etc/init/force-mtp.conf
conf_reload_path: Loading force-mtp from /etc/init/force-mtp.conf
parse_job: Creating new JobClass force-mtp
conf_load_path_with_override: Loading configuration file /etc/init/hostname.conf
conf_reload_path: Loading hostname from /etc/init/hostname.conf
parse_job: Creating new JobClass hostname
conf_load_path_with_override: Loading configuration file /etc/init/hostname.sh.conf
conf_reload_path: Loading hostname.sh from /etc/init/hostname.sh.conf
parse_job: Creating new JobClass hostname.sh
conf_load_path_with_override: Loading configuration file /etc/init/hwclock-save.conf
conf_reload_path: Loading hwclock-save from /etc/init/hwclock-save.conf
parse_job: Creating new JobClass hwclock-save
conf_load_path_with_override: Loading configuration file /etc/init/hwclock.conf
conf_reload_path: Loading hwclock from /etc/init/hwclock.conf
parse_job: Creating new JobClass hwclock
conf_load_path_with_override: Loading configuration file /etc/init/hwclock.sh.conf
conf_reload_path: Loading hwclock.sh from /etc/init/hwclock.sh.conf
parse_job: Creating new JobClass hwclock.sh
conf_load_path_with_override: Loading configuration file /etc/init/kmod.conf
conf_reload_path: Loading kmod from /etc/init/kmod.conf
parse_job: Creating new JobClass kmod
conf_load_path_with_override: Loading configuration file /etc/init/lightdm.conf
conf_reload_path: Loading lightdm from /etc/init/lightdm.conf
parse_job: Creating new JobClass lightdm
conf_load_path_with_override: Loading override file /etc/init/lightdm.conf for /etc/init/lightdm.override
conf_reload_path: Updating lightdm (/etc/init/lightdm.conf) with /etc/init/lightdm.override
parse_job: Reusing JobClass lightdm (/com/ubuntu/Upstart/jobs/lightdm)
conf_load_path_with_override: Loading configuration file /etc/init/lightdm.conf
conf_reload_path: Loading lightdm from /etc/init/lightdm.conf
parse_job: Creating new JobClass lightdm
conf_file_destroy: Destroyed unused job lightdm
conf_load_path_with_override: Loading override file /etc/init/lightdm.conf for /etc/init/lightdm.override
conf_reload_path: Updating lightdm (/etc/init/lightdm.conf) with /etc/init/lightdm.override
parse_job: Reusing JobClass lightdm (/com/ubuntu/Upstart/jobs/lightdm)
conf_load_path_with_override: Loading configuration file /etc/init/lxc-android-boot.conf
conf_reload_path: Loading lxc-android-boot from /etc/init/lxc-android-boot.conf
parse_job: Creating new JobClass lxc-android-boot
conf_load_path_with_override: Loading configuration file /etc/init/lxc-android-config.conf
conf_reload_path: Loading lxc-android-config from /etc/init/lxc-android-config.conf
parse_job: Creating new JobClass lxc-android-config
conf_load_path_with_override: Loading configuration file /etc/init/lxc-instance.conf
conf_reload_path: Loading lxc-instance from /etc/init/lxc-instance.conf
parse_job: Creating new JobClass lxc-instance
conf_load_path_with_override: Loading configuration file /etc/init/lxc-net.conf
conf_reload_path: Loading lxc-net from /etc/init/lxc-net.conf
parse_job: Creating new JobClass lxc-net
conf_load_path_with_override: Loading override file /etc/init/lxc-net.conf for /etc/init/lxc-net.override
conf_reload_path: Updating lxc-net (/etc/init/lxc-net.conf) with /etc/init/lxc-net.override
parse_job: Reusing JobClass lxc-net (/com/ubuntu/Upstart/jobs/lxc_2dnet)
stanza_manual: disregarding start on events for lxc-net
conf_load_path_with_override: Loading configuration file /etc/init/lxc-net.conf
conf_reload_path: Loading lxc-net from /etc/init/lxc-net.conf
parse_job: Creating new JobClass lxc-net
conf_file_destroy: Destroyed unused job lxc-net
conf_load_path_with_override: Loading override file /etc/init/lxc-net.conf for /etc/init/lxc-net.override
conf_reload_path: Updating lxc-net (/etc/init/lxc-net.conf) with /etc/init/lxc-net.override
parse_job: Reusing JobClass lxc-net (/com/ubuntu/Upstart/jobs/lxc_2dnet)
stanza_manual: disregarding start on events for lxc-net
conf_load_path_with_override: Loading configuration file /etc/init/lxc.conf
conf_reload_path: Loading lxc from /etc/init/lxc.conf
parse_job: Creating new JobClass lxc
conf_load_path_with_override: Loading configuration file /etc/init/mountall-bootclean.sh.conf
conf_reload_path: Loading mountall-bootclean.sh from /etc/init/mountall-bootclean.sh.conf
parse_job: Creating new JobClass mountall-bootclean.sh
conf_load_path_with_override: Loading configuration file /etc/init/mountall-net.conf
conf_reload_path: Loading mountall-net from /etc/init/mountall-net.conf
parse_job: Creating new JobClass mountall-net
conf_load_path_with_override: Loading configuration file /etc/init/mountall-reboot.conf
conf_reload_path: Loading mountall-reboot from /etc/init/mountall-reboot.conf
parse_job: Creating new JobClass mountall-reboot
conf_load_path_with_override: Loading configuration file /etc/init/mountall-shell.conf
conf_reload_path: Loading mountall-shell from /etc/init/mountall-shell.conf
parse_job: Creating new JobClass mountall-shell
conf_load_path_with_override: Loading configuration file /etc/init/mountall.conf
conf_reload_path: Loading mountall from /etc/init/mountall.conf
parse_job: Creating new JobClass mountall
conf_load_path_with_override: Loading configuration file /etc/init/mountall.sh.conf
conf_reload_path: Loading mountall.sh from /etc/init/mountall.sh.conf
parse_job: Creating new JobClass mountall.sh
conf_load_path_with_override: Loading configuration file /etc/init/mountdevsubfs.sh.conf
conf_reload_path: Loading mountdevsubfs.sh from /etc/init/mountdevsubfs.sh.conf
parse_job: Creating new JobClass mountdevsubfs.sh
conf_load_path_with_override: Loading configuration file /etc/init/mounted-debugfs.conf
conf_reload_path: Loading mounted-debugfs from /etc/init/mounted-debugfs.conf
parse_job: Creating new JobClass mounted-debugfs
conf_load_path_with_override: Loading configuration file /etc/init/mounted-dev.conf
conf_reload_path: Loading mounted-dev from /etc/init/mounted-dev.conf
parse_job: Creating new JobClass mounted-dev
conf_load_path_with_override: Loading configuration file /etc/init/mounted-proc.conf
conf_reload_path: Loading mounted-proc from /etc/init/mounted-proc.conf
parse_job: Creating new JobClass mounted-proc
conf_load_path_with_override: Loading configuration file /etc/init/mounted-run.conf
conf_reload_path: Loading mounted-run from /etc/init/mounted-run.conf
parse_job: Creating new JobClass mounted-run
conf_load_path_with_override: Loading configuration file /etc/init/mounted-tmp.conf
conf_reload_path: Loading mounted-tmp from /etc/init/mounted-tmp.conf
parse_job: Creating new JobClass mounted-tmp
conf_load_path_with_override: Loading configuration file /etc/init/mounted-var.conf
conf_reload_path: Loading mounted-var from /etc/init/mounted-var.conf
parse_job: Creating new JobClass mounted-var
conf_load_path_with_override: Loading configuration file /etc/init/mountkernfs.sh.conf
conf_reload_path: Loading mountkernfs.sh from /etc/init/mountkernfs.sh.conf
parse_job: Creating new JobClass mountkernfs.sh
conf_load_path_with_override: Loading configuration file /etc/init/mountnfs-bootclean.sh.conf
conf_reload_path: Loading mountnfs-bootclean.sh from /etc/init/mountnfs-bootclean.sh.conf
parse_job: Creating new JobClass mountnfs-bootclean.sh
conf_load_path_with_override: Loading configuration file /etc/init/mountnfs.sh.conf
conf_reload_path: Loading mountnfs.sh from /etc/init/mountnfs.sh.conf
parse_job: Creating new JobClass mountnfs.sh
conf_load_path_with_override: Loading configuration file /etc/init/mtab.sh.conf
conf_reload_path: Loading mtab.sh from /etc/init/mtab.sh.conf
parse_job: Creating new JobClass mtab.sh
conf_load_path_with_override: Loading configuration file /etc/init/mtp-state.conf
conf_reload_path: Loading mtp-state from /etc/init/mtp-state.conf
parse_job: Creating new JobClass mtp-state
conf_load_path_with_override: Loading configuration file /etc/init/network-interface-container.conf
conf_reload_path: Loading network-interface-container from /etc/init/network-interface-container.conf
parse_job: Creating new JobClass network-interface-container
conf_load_path_with_override: Loading configuration file /etc/init/network-interface-security.conf
conf_reload_path: Loading network-interface-security from /etc/init/network-interface-security.conf
parse_job: Creating new JobClass network-interface-security
conf_load_path_with_override: Loading configuration file /etc/init/network-interface.conf
conf_reload_path: Loading network-interface from /etc/init/network-interface.conf
parse_job: Creating new JobClass network-interface
conf_load_path_with_override: Loading configuration file /etc/init/network-manager.conf
conf_reload_path: Loading network-manager from /etc/init/network-manager.conf
parse_job: Creating new JobClass network-manager
conf_load_path_with_override: Loading configuration file /etc/init/networking.conf
conf_reload_path: Loading networking from /etc/init/networking.conf
parse_job: Creating new JobClass networking
conf_load_path_with_override: Loading configuration file /etc/init/no-cpu-hotplug.conf
conf_reload_path: Loading no-cpu-hotplug from /etc/init/no-cpu-hotplug.conf
parse_job: Creating new JobClass no-cpu-hotplug
conf_load_path_with_override: Loading configuration file /etc/init/ofono.conf
conf_reload_path: Loading ofono from /etc/init/ofono.conf
parse_job: Creating new JobClass ofono
conf_load_path_with_override: Loading override file /etc/init/ofono.conf for /etc/init/ofono.override
conf_reload_path: Updating ofono (/etc/init/ofono.conf) with /etc/init/ofono.override
parse_job: Reusing JobClass ofono (/com/ubuntu/Upstart/jobs/ofono)
conf_load_path_with_override: Loading configuration file /etc/init/ofono.conf
conf_reload_path: Loading ofono from /etc/init/ofono.conf
parse_job: Creating new JobClass ofono
conf_file_destroy: Destroyed unused job ofono
conf_load_path_with_override: Loading override file /etc/init/ofono.conf for /etc/init/ofono.override
conf_reload_path: Updating ofono (/etc/init/ofono.conf) with /etc/init/ofono.override
parse_job: Reusing JobClass ofono (/com/ubuntu/Upstart/jobs/ofono)
conf_load_path_with_override: Loading configuration file /etc/init/passwd.conf
conf_reload_path: Loading passwd from /etc/init/passwd.conf
parse_job: Creating new JobClass passwd
conf_load_path_with_override: Loading configuration file /etc/init/plymouth-log.conf
conf_reload_path: Loading plymouth-log from /etc/init/plymouth-log.conf
parse_job: Creating new JobClass plymouth-log
conf_load_path_with_override: Loading override file /etc/init/plymouth-log.conf for /etc/init/plymouth-log.override
conf_reload_path: Updating plymouth-log (/etc/init/plymouth-log.conf) with /etc/init/plymouth-log.override
parse_job: Reusing JobClass plymouth-log (/com/ubuntu/Upstart/jobs/plymouth_2dlog)
stanza_manual: disregarding start on events for plymouth-log
conf_load_path_with_override: Loading configuration file /etc/init/plymouth-log.conf
conf_reload_path: Loading plymouth-log from /etc/init/plymouth-log.conf
parse_job: Creating new JobClass plymouth-log
conf_file_destroy: Destroyed unused job plymouth-log
conf_load_path_with_override: Loading override file /etc/init/plymouth-log.conf for /etc/init/plymouth-log.override
conf_reload_path: Updating plymouth-log (/etc/init/plymouth-log.conf) with /etc/init/plymouth-log.override
parse_job: Reusing JobClass plymouth-log (/com/ubuntu/Upstart/jobs/plymouth_2dlog)
stanza_manual: disregarding start on events for plymouth-log
conf_load_path_with_override: Loading configuration file /etc/init/plymouth-ready.conf
conf_reload_path: Loading plymouth-ready from /etc/init/plymouth-ready.conf
parse_job: Creating new JobClass plymouth-ready
conf_load_path_with_override: Loading configuration file /etc/init/plymouth-shutdown.conf
conf_reload_path: Loading plymouth-shutdown from /etc/init/plymouth-shutdown.conf
parse_job: Creating new JobClass plymouth-shutdown
conf_load_path_with_override: Loading override file /etc/init/plymouth-shutdown.conf for /etc/init/plymouth-shutdown.override
conf_reload_path: Updating plymouth-shutdown (/etc/init/plymouth-shutdown.conf) with /etc/init/plymouth-shutdown.override
parse_job: Reusing JobClass plymouth-shutdown (/com/ubuntu/Upstart/jobs/plymouth_2dshutdown)
stanza_manual: disregarding start on events for plymouth-shutdown
conf_load_path_with_override: Loading configuration file /etc/init/plymouth-shutdown.conf
conf_reload_path: Loading plymouth-shutdown from /etc/init/plymouth-shutdown.conf
parse_job: Creating new JobClass plymouth-shutdown
conf_file_destroy: Destroyed unused job plymouth-shutdown
conf_load_path_with_override: Loading override file /etc/init/plymouth-shutdown.conf for /etc/init/plymouth-shutdown.override
conf_reload_path: Updating plymouth-shutdown (/etc/init/plymouth-shutdown.conf) with /etc/init/plymouth-shutdown.override
parse_job: Reusing JobClass plymouth-shutdown (/com/ubuntu/Upstart/jobs/plymouth_2dshutdown)
stanza_manual: disregarding start on events for plymouth-shutdown
conf_load_path_with_override: Loading configuration file /etc/init/plymouth-splash.conf
conf_reload_path: Loading plymouth-splash from /etc/init/plymouth-splash.conf
parse_job: Creating new JobClass plymouth-splash
conf_load_path_with_override: Loading configuration file /etc/init/plymouth-stop.conf
conf_reload_path: Loading plymouth-stop from /etc/init/plymouth-stop.conf
parse_job: Creating new JobClass plymouth-stop
conf_load_path_with_override: Loading configuration file /etc/init/plymouth-upstart-bridge.conf
conf_reload_path: Loading plymouth-upstart-bridge from /etc/init/plymouth-upstart-bridge.conf
parse_job: Creating new JobClass plymouth-upstart-bridge
conf_load_path_with_override: Loading override file /etc/init/plymouth-upstart-bridge.conf for /etc/init/plymouth-upstart-bridge.override
conf_reload_path: Updating plymouth-upstart-bridge (/etc/init/plymouth-upstart-bridge.conf) with /etc/init/plymouth-upstart-bridge.override
parse_job: Reusing JobClass plymouth-upstart-bridge (/com/ubuntu/Upstart/jobs/plymouth_2dupstart_2dbridge)
stanza_manual: disregarding start on events for plymouth-upstart-bridge
conf_load_path_with_override: Loading configuration file /etc/init/plymouth-upstart-bridge.conf
conf_reload_path: Loading plymouth-upstart-bridge from /etc/init/plymouth-upstart-bridge.conf
parse_job: Creating new JobClass plymouth-upstart-bridge
conf_file_destroy: Destroyed unused job plymouth-upstart-bridge
conf_load_path_with_override: Loading override file /etc/init/plymouth-upstart-bridge.conf for /etc/init/plymouth-upstart-bridge.override
conf_reload_path: Updating plymouth-upstart-bridge (/etc/init/plymouth-upstart-bridge.conf) with /etc/init/plymouth-upstart-bridge.override
parse_job: Reusing JobClass plymouth-upstart-bridge (/com/ubuntu/Upstart/jobs/plymouth_2dupstart_2dbridge)
stanza_manual: disregarding start on events for plymouth-upstart-bridge
conf_load_path_with_override: Loading configuration file /etc/init/plymouth.conf
conf_reload_path: Loading plymouth from /etc/init/plymouth.conf
parse_job: Creating new JobClass plymouth
conf_load_path_with_override: Loading override file /etc/init/plymouth.conf for /etc/init/plymouth.override
conf_reload_path: Updating plymouth (/etc/init/plymouth.conf) with /etc/init/plymouth.override
parse_job: Reusing JobClass plymouth (/com/ubuntu/Upstart/jobs/plymouth)
stanza_manual: disregarding start on events for plymouth
conf_load_path_with_override: Loading configuration file /etc/init/plymouth.conf
conf_reload_path: Loading plymouth from /etc/init/plymouth.conf
parse_job: Creating new JobClass plymouth
conf_file_destroy: Destroyed unused job plymouth
conf_load_path_with_override: Loading override file /etc/init/plymouth.conf for /etc/init/plymouth.override
conf_reload_path: Updating plymouth (/etc/init/plymouth.conf) with /etc/init/plymouth.override
parse_job: Reusing JobClass plymouth (/com/ubuntu/Upstart/jobs/plymouth)
stanza_manual: disregarding start on events for plymouth
conf_load_path_with_override: Loading configuration file /etc/init/powerd.conf
conf_reload_path: Loading powerd from /etc/init/powerd.conf
parse_job: Creating new JobClass powerd
conf_load_path_with_override: Loading configuration file /etc/init/procps-instance.conf
conf_reload_path: Loading procps-instance from /etc/init/procps-instance.conf
parse_job: Creating new JobClass procps-instance
conf_load_path_with_override: Loading configuration file /etc/init/procps.conf
conf_reload_path: Loading procps from /etc/init/procps.conf
parse_job: Creating new JobClass procps
conf_load_path_with_override: Loading configuration file /etc/init/pulseaudio.conf
conf_reload_path: Loading pulseaudio from /etc/init/pulseaudio.conf
parse_job: Creating new JobClass pulseaudio
conf_load_path_with_override: Loading configuration file /etc/init/rc-sysinit.conf
conf_reload_path: Loading rc-sysinit from /etc/init/rc-sysinit.conf
parse_job: Creating new JobClass rc-sysinit
conf_load_path_with_override: Loading configuration file /etc/init/rc.conf
conf_reload_path: Loading rc from /etc/init/rc.conf
parse_job: Creating new JobClass rc
conf_load_path_with_override: Loading configuration file /etc/init/rcS.conf
conf_reload_path: Loading rcS from /etc/init/rcS.conf
parse_job: Creating new JobClass rcS
conf_load_path_with_override: Loading configuration file /etc/init/resolvconf.conf
conf_reload_path: Loading resolvconf from /etc/init/resolvconf.conf
parse_job: Creating new JobClass resolvconf
conf_load_path_with_override: Loading configuration file /etc/init/rfkill-restore.conf
conf_reload_path: Loading rfkill-restore from /etc/init/rfkill-restore.conf
parse_job: Creating new JobClass rfkill-restore
conf_load_path_with_override: Loading configuration file /etc/init/rfkill-store.conf
conf_reload_path: Loading rfkill-store from /etc/init/rfkill-store.conf
parse_job: Creating new JobClass rfkill-store
conf_load_path_with_override: Loading configuration file /etc/init/rild.conf
conf_reload_path: Loading rild from /etc/init/rild.conf
parse_job: Creating new JobClass rild
conf_load_path_with_override: Loading configuration file /etc/init/rsyslog.conf
conf_reload_path: Loading rsyslog from /etc/init/rsyslog.conf
parse_job: Creating new JobClass rsyslog
conf_load_path_with_override: Loading configuration file /etc/init/set.pretty-hostname.conf
conf_reload_path: Loading set.pretty-hostname from /etc/init/set.pretty-hostname.conf
parse_job: Creating new JobClass set.pretty-hostname
conf_load_path_with_override: Loading configuration file /etc/init/setvtrgb.conf
conf_reload_path: Loading setvtrgb from /etc/init/setvtrgb.conf
parse_job: Creating new JobClass setvtrgb
conf_load_path_with_override: Loading override file /etc/init/setvtrgb.conf for /etc/init/setvtrgb.override
conf_reload_path: Updating setvtrgb (/etc/init/setvtrgb.conf) with /etc/init/setvtrgb.override
parse_job: Reusing JobClass setvtrgb (/com/ubuntu/Upstart/jobs/setvtrgb)
stanza_manual: disregarding start on events for setvtrgb
conf_load_path_with_override: Loading configuration file /etc/init/setvtrgb.conf
conf_reload_path: Loading setvtrgb from /etc/init/setvtrgb.conf
parse_job: Creating new JobClass setvtrgb
conf_file_destroy: Destroyed unused job setvtrgb
conf_load_path_with_override: Loading override file /etc/init/setvtrgb.conf for /etc/init/setvtrgb.override
conf_reload_path: Updating setvtrgb (/etc/init/setvtrgb.conf) with /etc/init/setvtrgb.override
parse_job: Reusing JobClass setvtrgb (/com/ubuntu/Upstart/jobs/setvtrgb)
stanza_manual: disregarding start on events for setvtrgb
conf_load_path_with_override: Loading configuration file /etc/init/shutdown.conf
conf_reload_path: Loading shutdown from /etc/init/shutdown.conf
parse_job: Creating new JobClass shutdown
conf_load_path_with_override: Loading configuration file /etc/init/ssh-keygen.conf
conf_reload_path: Loading ssh-keygen from /etc/init/ssh-keygen.conf
parse_job: Creating new JobClass ssh-keygen
conf_load_path_with_override: Loading configuration file /etc/init/ssh-property-watcher.conf
conf_reload_path: Loading ssh-property-watcher from /etc/init/ssh-property-watcher.conf
parse_job: Creating new JobClass ssh-property-watcher
conf_load_path_with_override: Loading configuration file /etc/init/ssh.conf
conf_reload_path: Loading ssh from /etc/init/ssh.conf
parse_job: Creating new JobClass ssh
conf_load_path_with_override: Loading override file /etc/init/ssh.conf for /etc/init/ssh.override
conf_reload_path: Updating ssh (/etc/init/ssh.conf) with /etc/init/ssh.override
parse_job: Reusing JobClass ssh (/com/ubuntu/Upstart/jobs/ssh)
stanza_manual: disregarding start on events for ssh
conf_load_path_with_override: Loading configuration file /etc/init/ssh.conf
conf_reload_path: Loading ssh from /etc/init/ssh.conf
parse_job: Creating new JobClass ssh
conf_file_destroy: Destroyed unused job ssh
conf_load_path_with_override: Loading override file /etc/init/ssh.conf for /etc/init/ssh.override
conf_reload_path: Updating ssh (/etc/init/ssh.conf) with /etc/init/ssh.override
parse_job: Reusing JobClass ssh (/com/ubuntu/Upstart/jobs/ssh)
stanza_manual: disregarding start on events for ssh
conf_load_path_with_override: Loading configuration file /etc/init/system-watchdog.conf
conf_reload_path: Loading system-watchdog from /etc/init/system-watchdog.conf
parse_job: Creating new JobClass system-watchdog
conf_load_path_with_override: Loading configuration file /etc/init/tethering.conf
conf_reload_path: Loading tethering from /etc/init/tethering.conf
parse_job: Creating new JobClass tethering
conf_load_path_with_override: Loading configuration file /etc/init/tty1.conf
conf_reload_path: Loading tty1 from /etc/init/tty1.conf
parse_job: Creating new JobClass tty1
conf_load_path_with_override: Loading override file /etc/init/tty1.conf for /etc/init/tty1.override
conf_reload_path: Updating tty1 (/etc/init/tty1.conf) with /etc/init/tty1.override
parse_job: Reusing JobClass tty1 (/com/ubuntu/Upstart/jobs/tty1)
stanza_manual: disregarding start on events for tty1
conf_load_path_with_override: Loading configuration file /etc/init/tty1.conf
conf_reload_path: Loading tty1 from /etc/init/tty1.conf
parse_job: Creating new JobClass tty1
conf_file_destroy: Destroyed unused job tty1
conf_load_path_with_override: Loading override file /etc/init/tty1.conf for /etc/init/tty1.override
conf_reload_path: Updating tty1 (/etc/init/tty1.conf) with /etc/init/tty1.override
parse_job: Reusing JobClass tty1 (/com/ubuntu/Upstart/jobs/tty1)
stanza_manual: disregarding start on events for tty1
conf_load_path_with_override: Loading configuration file /etc/init/tty2.conf
conf_reload_path: Loading tty2 from /etc/init/tty2.conf
parse_job: Creating new JobClass tty2
conf_load_path_with_override: Loading override file /etc/init/tty2.conf for /etc/init/tty2.override
conf_reload_path: Updating tty2 (/etc/init/tty2.conf) with /etc/init/tty2.override
parse_job: Reusing JobClass tty2 (/com/ubuntu/Upstart/jobs/tty2)
stanza_manual: disregarding start on events for tty2
conf_load_path_with_override: Loading configuration file /etc/init/tty2.conf
conf_reload_path: Loading tty2 from /etc/init/tty2.conf
parse_job: Creating new JobClass tty2
conf_file_destroy: Destroyed unused job tty2
conf_load_path_with_override: Loading override file /etc/init/tty2.conf for /etc/init/tty2.override
conf_reload_path: Updating tty2 (/etc/init/tty2.conf) with /etc/init/tty2.override
parse_job: Reusing JobClass tty2 (/com/ubuntu/Upstart/jobs/tty2)
stanza_manual: disregarding start on events for tty2
conf_load_path_with_override: Loading configuration file /etc/init/tty3.conf
conf_reload_path: Loading tty3 from /etc/init/tty3.conf
parse_job: Creating new JobClass tty3
conf_load_path_with_override: Loading override file /etc/init/tty3.conf for /etc/init/tty3.override
conf_reload_path: Updating tty3 (/etc/init/tty3.conf) with /etc/init/tty3.override
parse_job: Reusing JobClass tty3 (/com/ubuntu/Upstart/jobs/tty3)
stanza_manual: disregarding start on events for tty3
conf_load_path_with_override: Loading configuration file /etc/init/tty3.conf
conf_reload_path: Loading tty3 from /etc/init/tty3.conf
parse_job: Creating new JobClass tty3
conf_file_destroy: Destroyed unused job tty3
conf_load_path_with_override: Loading override file /etc/init/tty3.conf for /etc/init/tty3.override
conf_reload_path: Updating tty3 (/etc/init/tty3.conf) with /etc/init/tty3.override
parse_job: Reusing JobClass tty3 (/com/ubuntu/Upstart/jobs/tty3)
stanza_manual: disregarding start on events for tty3
conf_load_path_with_override: Loading configuration file /etc/init/tty4.conf
conf_reload_path: Loading tty4 from /etc/init/tty4.conf
parse_job: Creating new JobClass tty4
conf_load_path_with_override: Loading override file /etc/init/tty4.conf for /etc/init/tty4.override
conf_reload_path: Updating tty4 (/etc/init/tty4.conf) with /etc/init/tty4.override
parse_job: Reusing JobClass tty4 (/com/ubuntu/Upstart/jobs/tty4)
stanza_manual: disregarding start on events for tty4
conf_load_path_with_override: Loading configuration file /etc/init/tty4.conf
conf_reload_path: Loading tty4 from /etc/init/tty4.conf
parse_job: Creating new JobClass tty4
conf_file_destroy: Destroyed unused job tty4
conf_load_path_with_override: Loading override file /etc/init/tty4.conf for /etc/init/tty4.override
conf_reload_path: Updating tty4 (/etc/init/tty4.conf) with /etc/init/tty4.override
parse_job: Reusing JobClass tty4 (/com/ubuntu/Upstart/jobs/tty4)
stanza_manual: disregarding start on events for tty4
conf_load_path_with_override: Loading configuration file /etc/init/tty5.conf
conf_reload_path: Loading tty5 from /etc/init/tty5.conf
parse_job: Creating new JobClass tty5
conf_load_path_with_override: Loading override file /etc/init/tty5.conf for /etc/init/tty5.override
conf_reload_path: Updating tty5 (/etc/init/tty5.conf) with /etc/init/tty5.override
parse_job: Reusing JobClass tty5 (/com/ubuntu/Upstart/jobs/tty5)
stanza_manual: disregarding start on events for tty5
conf_load_path_with_override: Loading configuration file /etc/init/tty5.conf
conf_reload_path: Loading tty5 from /etc/init/tty5.conf
parse_job: Creating new JobClass tty5
conf_file_destroy: Destroyed unused job tty5
conf_load_path_with_override: Loading override file /etc/init/tty5.conf for /etc/init/tty5.override
conf_reload_path: Updating tty5 (/etc/init/tty5.conf) with /etc/init/tty5.override
parse_job: Reusing JobClass tty5 (/com/ubuntu/Upstart/jobs/tty5)
stanza_manual: disregarding start on events for tty5
conf_load_path_with_override: Loading configuration file /etc/init/tty6.conf
conf_reload_path: Loading tty6 from /etc/init/tty6.conf
parse_job: Creating new JobClass tty6
conf_load_path_with_override: Loading override file /etc/init/tty6.conf for /etc/init/tty6.override
conf_reload_path: Updating tty6 (/etc/init/tty6.conf) with /etc/init/tty6.override
parse_job: Reusing JobClass tty6 (/com/ubuntu/Upstart/jobs/tty6)
stanza_manual: disregarding start on events for tty6
conf_load_path_with_override: Loading configuration file /etc/init/tty6.conf
conf_reload_path: Loading tty6 from /etc/init/tty6.conf
parse_job: Creating new JobClass tty6
conf_file_destroy: Destroyed unused job tty6
conf_load_path_with_override: Loading override file /etc/init/tty6.conf for /etc/init/tty6.override
conf_reload_path: Updating tty6 (/etc/init/tty6.conf) with /etc/init/tty6.override
parse_job: Reusing JobClass tty6 (/com/ubuntu/Upstart/jobs/tty6)
stanza_manual: disregarding start on events for tty6
conf_load_path_with_override: Loading configuration file /etc/init/ubuntu-espoo-service.conf
conf_reload_path: Loading ubuntu-espoo-service from /etc/init/ubuntu-espoo-service.conf
parse_job: Creating new JobClass ubuntu-espoo-service
conf_load_path_with_override: Loading configuration file /etc/init/ubuntu-location-provider-here-after-wizard.conf
conf_reload_path: Loading ubuntu-location-provider-here-after-wizard from /etc/init/ubuntu-location-provider-here-after-wizard.conf
parse_job: Creating new JobClass ubuntu-location-provider-here-after-wizard
conf_load_path_with_override: Loading configuration file /etc/init/ubuntu-location-provider-here-posclientd.conf
conf_reload_path: Loading ubuntu-location-provider-here-posclientd from /etc/init/ubuntu-location-provider-here-posclientd.conf
parse_job: Creating new JobClass ubuntu-location-provider-here-posclientd
conf_load_path_with_override: Loading configuration file /etc/init/ubuntu-location-provider-here-slpgwd.conf
conf_reload_path: Loading ubuntu-location-provider-here-slpgwd from /etc/init/ubuntu-location-provider-here-slpgwd.conf
parse_job: Creating new JobClass ubuntu-location-provider-here-slpgwd
conf_load_path_with_override: Loading configuration file /etc/init/ubuntu-location-service.conf
conf_reload_path: Loading ubuntu-location-service from /etc/init/ubuntu-location-service.conf
parse_job: Creating new JobClass ubuntu-location-service
conf_load_path_with_override: Loading override file /etc/init/ubuntu-location-service.conf for /etc/init/ubuntu-location-service.override
conf_reload_path: Updating ubuntu-location-service (/etc/init/ubuntu-location-service.conf) with /etc/init/ubuntu-location-service.override
parse_job: Reusing JobClass ubuntu-location-service (/com/ubuntu/Upstart/jobs/ubuntu_2dlocation_2dservice)
conf_load_path_with_override: Loading configuration file /etc/init/ubuntu-location-service.conf
conf_reload_path: Loading ubuntu-location-service from /etc/init/ubuntu-location-service.conf
parse_job: Creating new JobClass ubuntu-location-service
conf_file_destroy: Destroyed unused job ubuntu-location-service
conf_load_path_with_override: Loading override file /etc/init/ubuntu-location-service.conf for /etc/init/ubuntu-location-service.override
conf_reload_path: Updating ubuntu-location-service (/etc/init/ubuntu-location-service.conf) with /etc/init/ubuntu-location-service.override
parse_job: Reusing JobClass ubuntu-location-service (/com/ubuntu/Upstart/jobs/ubuntu_2dlocation_2dservice)
conf_load_path_with_override: Loading configuration file /etc/init/udev-fallback-graphics.conf
conf_reload_path: Loading udev-fallback-graphics from /etc/init/udev-fallback-graphics.conf
parse_job: Creating new JobClass udev-fallback-graphics
conf_load_path_with_override: Loading configuration file /etc/init/udev-finish.conf
conf_reload_path: Loading udev-finish from /etc/init/udev-finish.conf
parse_job: Creating new JobClass udev-finish
conf_load_path_with_override: Loading configuration file /etc/init/udev.conf
conf_reload_path: Loading udev from /etc/init/udev.conf
parse_job: Creating new JobClass udev
conf_load_path_with_override: Loading override file /etc/init/udev.conf for /etc/init/udev.override
conf_reload_path: Updating udev (/etc/init/udev.conf) with /etc/init/udev.override
parse_job: Reusing JobClass udev (/com/ubuntu/Upstart/jobs/udev)
conf_load_path_with_override: Loading configuration file /etc/init/udev.conf
conf_reload_path: Loading udev from /etc/init/udev.conf
parse_job: Creating new JobClass udev
conf_file_destroy: Destroyed unused job udev
conf_load_path_with_override: Loading override file /etc/init/udev.conf for /etc/init/udev.override
conf_reload_path: Updating udev (/etc/init/udev.conf) with /etc/init/udev.override
parse_job: Reusing JobClass udev (/com/ubuntu/Upstart/jobs/udev)
conf_load_path_with_override: Loading configuration file /etc/init/udevmonitor.conf
conf_reload_path: Loading udevmonitor from /etc/init/udevmonitor.conf
parse_job: Creating new JobClass udevmonitor
conf_load_path_with_override: Loading configuration file /etc/init/udevtrigger.conf
conf_reload_path: Loading udevtrigger from /etc/init/udevtrigger.conf
parse_job: Creating new JobClass udevtrigger
conf_load_path_with_override: Loading configuration file /etc/init/ufw.conf
conf_reload_path: Loading ufw from /etc/init/ufw.conf
parse_job: Creating new JobClass ufw
conf_load_path_with_override: Loading configuration file /etc/init/upstart-file-bridge.conf
conf_reload_path: Loading upstart-file-bridge from /etc/init/upstart-file-bridge.conf
parse_job: Creating new JobClass upstart-file-bridge
conf_load_path_with_override: Loading configuration file /etc/init/upstart-local-bridge.conf
conf_reload_path: Loading upstart-local-bridge from /etc/init/upstart-local-bridge.conf
parse_job: Creating new JobClass upstart-local-bridge
conf_load_path_with_override: Loading configuration file /etc/init/upstart-socket-bridge.conf
conf_reload_path: Loading upstart-socket-bridge from /etc/init/upstart-socket-bridge.conf
parse_job: Creating new JobClass upstart-socket-bridge
conf_load_path_with_override: Loading configuration file /etc/init/upstart-udev-bridge.conf
conf_reload_path: Loading upstart-udev-bridge from /etc/init/upstart-udev-bridge.conf
parse_job: Creating new JobClass upstart-udev-bridge
conf_load_path_with_override: Loading configuration file /etc/init/ureadahead-other.conf
conf_reload_path: Loading ureadahead-other from /etc/init/ureadahead-other.conf
parse_job: Creating new JobClass ureadahead-other
conf_load_path_with_override: Loading override file /etc/init/ureadahead-other.conf for /etc/init/ureadahead-other.override
conf_reload_path: Updating ureadahead-other (/etc/init/ureadahead-other.conf) with /etc/init/ureadahead-other.override
parse_job: Reusing JobClass ureadahead-other (/com/ubuntu/Upstart/jobs/ureadahead_2dother)
stanza_manual: disregarding start on events for ureadahead-other
conf_load_path_with_override: Loading configuration file /etc/init/ureadahead-other.conf
conf_reload_path: Loading ureadahead-other from /etc/init/ureadahead-other.conf
parse_job: Creating new JobClass ureadahead-other
conf_file_destroy: Destroyed unused job ureadahead-other
conf_load_path_with_override: Loading override file /etc/init/ureadahead-other.conf for /etc/init/ureadahead-other.override
conf_reload_path: Updating ureadahead-other (/etc/init/ureadahead-other.conf) with /etc/init/ureadahead-other.override
parse_job: Reusing JobClass ureadahead-other (/com/ubuntu/Upstart/jobs/ureadahead_2dother)
stanza_manual: disregarding start on events for ureadahead-other
conf_load_path_with_override: Loading configuration file /etc/init/ureadahead-touch.conf
conf_reload_path: Loading ureadahead-touch from /etc/init/ureadahead-touch.conf
parse_job: Creating new JobClass ureadahead-touch
conf_load_path_with_override: Loading configuration file /etc/init/ureadahead.conf
conf_reload_path: Loading ureadahead from /etc/init/ureadahead.conf
parse_job: Creating new JobClass ureadahead
conf_load_path_with_override: Loading override file /etc/init/ureadahead.conf for /etc/init/ureadahead.override
conf_reload_path: Updating ureadahead (/etc/init/ureadahead.conf) with /etc/init/ureadahead.override
parse_job: Reusing JobClass ureadahead (/com/ubuntu/Upstart/jobs/ureadahead)
stanza_manual: disregarding start on events for ureadahead
conf_load_path_with_override: Loading configuration file /etc/init/ureadahead.conf
conf_reload_path: Loading ureadahead from /etc/init/ureadahead.conf
parse_job: Creating new JobClass ureadahead
conf_file_destroy: Destroyed unused job ureadahead
conf_load_path_with_override: Loading override file /etc/init/ureadahead.conf for /etc/init/ureadahead.override
conf_reload_path: Updating ureadahead (/etc/init/ureadahead.conf) with /etc/init/ureadahead.override
parse_job: Reusing JobClass ureadahead (/com/ubuntu/Upstart/jobs/ureadahead)
stanza_manual: disregarding start on events for ureadahead
conf_load_path_with_override: Loading configuration file /etc/init/urfkill.conf
conf_reload_path: Loading urfkill from /etc/init/urfkill.conf
parse_job: Creating new JobClass urfkill
conf_load_path_with_override: Loading configuration file /etc/init/wait-for-state.conf
conf_reload_path: Loading wait-for-state from /etc/init/wait-for-state.conf
parse_job: Creating new JobClass wait-for-state
conf_load_path_with_override: Loading configuration file /etc/init/whoopsie.conf
conf_reload_path: Loading whoopsie from /etc/init/whoopsie.conf
parse_job: Creating new JobClass whoopsie
conf_load_path_with_override: Loading configuration file /etc/init/zram-touch.conf
conf_reload_path: Loading zram-touch from /etc/init/zram-touch.conf
parse_job: Creating new JobClass zram-touch
[ 1.201463] init: Handling startup event
[ 1.201528] init: mountall goal changed from stop to start
[ 1.201550] init: mountall state changed from waiting to starting
[ 1.201613] init: hostname goal changed from stop to start
[ 1.201634] init: hostname state changed from waiting to starting
[ 1.201677] init: plymouth-ready (startup) goal changed from stop to start
[ 1.201699] init: plymouth-ready (startup) state changed from waiting to starting
[ 1.201745] init: ureadahead-touch goal changed from stop to start
[ 1.201766] init: ureadahead-touch state changed from waiting to starting
[ 1.201795] init: Handling starting event
[ 1.201853] init: hwclock goal changed from stop to start
[ 1.201875] init: hwclock state changed from waiting to starting
[ 1.201940] init: Handling starting event
[ 1.202016] init: hostname state changed from starting to security-spawning
[ 1.202038] init: hostname state changed from security-spawning to security
[ 1.202056] init: hostname state changed from security to pre-starting
[ 1.202075] init: hostname state changed from pre-starting to pre-start
[ 1.202094] init: hostname state changed from pre-start to spawning
[ 1.202247] init: hostname main process (460)
[ 1.202285] init: hostname state changed from spawning to spawned
[ 1.202312] init: Handling starting event
[ 1.202580] init: plymouth-ready (startup) state changed from starting to security-spawning
[ 1.202602] init: plymouth-ready (startup) state changed from security-spawning to security
[ 1.202621] init: plymouth-ready (startup) state changed from security to pre-starting
[ 1.202639] init: plymouth-ready (startup) state changed from pre-starting to pre-start
[ 1.202657] init: plymouth-ready (startup) state changed from pre-start to spawning
[ 1.202774] init: plymouth-ready (startup) main process (461)
[ 1.202811] init: plymouth-ready (startup) state changed from spawning to spawned
[ 1.203155] init: Handling starting event
[ 1.203428] init: ureadahead-touch state changed from starting to security-spawning
[ 1.203452] init: ureadahead-touch state changed from security-spawning to security
[ 1.203471] init: ureadahead-touch state changed from security to pre-starting
[ 1.203490] init: ureadahead-touch state changed from pre-starting to pre-start
[ 1.203509] init: ureadahead-touch state changed from pre-start to spawning
[ 1.203627] init: ureadahead-touch main process (462)
[ 1.203664] init: ureadahead-touch state changed from spawning to spawned
[ 1.203691] init: Handling starting event
[ 1.203958] init: hwclock.sh goal changed from stop to start
[ 1.203982] init: hwclock.sh state changed from waiting to starting
[ 1.204036] init: Handling starting event
[ 1.204115] init: hwclock.sh state changed from starting to security-spawning
[ 1.204137] init: hwclock.sh state changed from security-spawning to security
[ 1.204157] init: hwclock.sh state changed from security to pre-starting
[ 1.204176] init: hwclock.sh state changed from pre-starting to pre-start
[ 1.204195] init: hwclock.sh state changed from pre-start to spawning
[ 1.204213] init: hwclock.sh state changed from spawning to spawned
[ 1.204232] init: hwclock.sh state changed from spawned to post-starting
[ 1.204251] init: hwclock.sh state changed from post-starting to post-start
[ 1.204269] init: hwclock.sh state changed from post-start to running
[ 1.204297] init: Handling started event
[ 1.204377] init: hwclock state changed from starting to security-spawning
[ 1.204400] init: hwclock state changed from security-spawning to security
[ 1.204418] init: hwclock state changed from security to pre-starting
[ 1.204437] init: hwclock state changed from pre-starting to pre-start
[ 1.204456] init: hwclock state changed from pre-start to spawning
[ 1.204582] init: hwclock main process (463)
[ 1.204618] init: hwclock state changed from spawning to spawned
[ 1.235970] init: plymouth-ready (startup) state changed from spawned to post-starting
[ 1.236020] init: plymouth-ready (startup) state changed from post-starting to post-start
[ 1.236042] init: plymouth-ready (startup) state changed from post-start to running
[ 1.236103] init: ureadahead-touch state changed from spawned to post-starting
[ 1.236126] init: ureadahead-touch state changed from post-starting to post-start
[ 1.236146] init: ureadahead-touch state changed from post-start to running
[ 1.236200] init: Handling started event
[ 1.236425] init: Handling started event
[ 1.236672] init: hwclock state changed from spawned to post-starting
[ 1.236698] init: hwclock state changed from post-starting to post-start
[ 1.236717] init: hwclock state changed from post-start to running
[ 1.236758] init: Handling started event
[ 1.263651] init: hostname state changed from spawned to post-starting
[ 1.263690] init: hostname state changed from post-starting to post-start
[ 1.263712] init: hostname state changed from post-start to running
[ 1.263774] init: Handling started event
[ 1.268303] init: hostname main process (460) exited normally
[ 1.268411] init: hostname goal changed from start to stop
[ 1.268459] init: hostname state changed from running to stopping
[ 1.268557] init: Handling stopping event
[ 1.268642] init: hostname state changed from stopping to killed
[ 1.268666] init: hostname state changed from killed to post-stopping
[ 1.268687] init: hostname state changed from post-stopping to post-stop
[ 1.268706] init: hostname state changed from post-stop to waiting
[ 1.268744] init: Handling stopped event
[ 1.268809] init: hostname.sh goal changed from stop to start
[ 1.268832] init: hostname.sh state changed from waiting to starting
[ 1.268887] init: Handling starting event
[ 1.268968] init: hostname.sh state changed from starting to security-spawning
[ 1.268990] init: hostname.sh state changed from security-spawning to security
[ 1.269009] init: hostname.sh state changed from security to pre-starting
[ 1.269029] init: hostname.sh state changed from pre-starting to pre-start
[ 1.269070] init: hostname.sh state changed from pre-start to spawning
[ 1.269109] init: hostname.sh state changed from spawning to spawned
[ 1.269154] init: hostname.sh state changed from spawned to post-starting
[ 1.269173] init: hostname.sh state changed from post-starting to post-start
[ 1.269192] init: hostname.sh state changed from post-start to running
[ 1.269220] init: Handling started event
[ 1.302931] init: hwclock main process (463) exited normally
[ 1.302994] init: hwclock goal changed from start to stop
[ 1.303017] init: hwclock state changed from running to stopping
[ 1.303064] init: Handling stopping event
[ 1.303177] init: hwclock state changed from stopping to killed
[ 1.303211] init: hwclock state changed from killed to post-stopping
[ 1.303232] init: hwclock state changed from post-stopping to post-stop
[ 1.303256] init: hwclock state changed from post-stop to waiting
[ 1.303320] init: Handling stopped event
[ 1.303430] init: mountall state changed from starting to security-spawning
[ 1.303464] init: mountall state changed from security-spawning to security
[ 1.303484] init: mountall state changed from security to pre-starting
[ 1.303506] init: mountall state changed from pre-starting to pre-start
[ 1.303526] init: mountall state changed from pre-start to spawning
[ 1.303645] init: mountall main process (467)
[ 1.303691] init: mountall state changed from spawning to spawned
[ 1.314275] init: Connection from private client
[ 1.345301] init: mountall main process (467) executable changed
[ 1.378058] init: plymouth-ready (startup) main process (461) exited normally
[ 1.378125] init: plymouth-ready (startup) goal changed from start to stop
[ 1.378149] init: plymouth-ready (startup) state changed from running to stopping
[ 1.378196] init: Handling stopping event
[ 1.378333] init: plymouth-ready (startup) state changed from stopping to killed
[ 1.378366] init: plymouth-ready (startup) state changed from killed to post-stopping
[ 1.378386] init: plymouth-ready (startup) state changed from post-stopping to post-stop
[ 1.378411] init: plymouth-ready (startup) state changed from post-stop to waiting
[ 1.378455] init: Handling stopped event
[ 1.395185] init: ureadahead-touch main process (462) terminated with status 5
[ 1.395266] init: ureadahead-touch goal changed from start to stop
[ 1.395295] init: ureadahead-touch state changed from running to stopping
[ 1.395356] init: Handling stopping event
[ 1.395453] init: ureadahead-touch state changed from stopping to killed
[ 1.395488] init: ureadahead-touch state changed from killed to post-stopping
[ 1.395510] init: ureadahead-touch state changed from post-stopping to post-stop
[ 1.395532] init: ureadahead-touch state changed from post-stop to waiting
[ 1.395574] init: Handling stopped event
[ 1.510236] init: Connection from private client
[ 1.517004] init: mountall main process (467) became new process (469)
[ 1.517750] init: mountall main process (469) became new process (470)
[ 1.519255] init: mountall state changed from spawned to post-starting
[ 1.519358] init: mountall state changed from post-starting to post-start
[ 1.519404] init: mountall state changed from post-start to running
[ 1.519481] init: Handling started event
[ 1.520002] init: Handling mounted event
[ 1.520084] init: checkroot.sh goal changed from stop to start
[ 1.520122] init: checkroot.sh state changed from waiting to starting
[ 1.520202] init: checkfs.sh goal changed from stop to start
[ 1.520236] init: checkfs.sh state changed from waiting to starting
[ 1.520336] init: checkroot-bootclean.sh goal changed from stop to start
[ 1.520371] init: checkroot-bootclean.sh state changed from waiting to starting
[ 1.520434] init: Handling mounted event
[ 1.520511] init: mounted-proc goal changed from stop to start
[ 1.520547] init: mounted-proc state changed from waiting to starting
[ 1.520616] init: Handling mounted event
[ 1.520710] init: Handling mounted event
[ 1.520801] init: mounted-dev goal changed from stop to start
[ 1.520837] init: mounted-dev state changed from waiting to starting
[ 1.520889] init: Handling mounted event
[ 1.521011] init: Handling mounted event
[ 1.521102] init: resolvconf goal changed from stop to start
[ 1.521150] init: resolvconf state changed from waiting to starting
[ 1.521228] init: mounted-run goal changed from stop to start
[ 1.521263] init: mounted-run state changed from waiting to starting
[ 1.521373] init: container-detect goal changed from stop to start
[ 1.521409] init: container-detect state changed from waiting to starting
[ 1.521462] init: Handling mounted event
[ 1.521566] init: Handling mounted event
[ 1.521665] init: Handling starting event
[ 1.521752] init: checkroot.sh state changed from starting to security-spawning
[ 1.521788] init: checkroot.sh state changed from security-spawning to security
[ 1.521820] init: checkroot.sh state changed from security to pre-starting
[ 1.521855] init: checkroot.sh state changed from pre-starting to pre-start
[ 1.521887] init: checkroot.sh state changed from pre-start to spawning
[ 1.521922] init: checkroot.sh state changed from spawning to spawned
[ 1.521954] init: checkroot.sh state changed from spawned to post-starting
[ 1.521987] init: checkroot.sh state changed from post-starting to post-start
[ 1.522019] init: checkroot.sh state changed from post-start to running
[ 1.522075] init: Handling starting event
[ 1.522169] init: checkfs.sh state changed from starting to security-spawning
[ 1.522206] init: checkfs.sh state changed from security-spawning to security
[ 1.522239] init: checkfs.sh state changed from security to pre-starting
[ 1.522291] init: checkfs.sh state changed from pre-starting to pre-start
[ 1.522340] init: checkfs.sh state changed from pre-start to spawning
[ 1.522373] init: checkfs.sh state changed from spawning to spawned
[ 1.522406] init: checkfs.sh state changed from spawned to post-starting
[ 1.522438] init: checkfs.sh state changed from post-starting to post-start
[ 1.522471] init: checkfs.sh state changed from post-start to running
[ 1.522538] init: Handling starting event
[ 1.522627] init: checkroot-bootclean.sh state changed from starting to security-spawning
[ 1.522662] init: checkroot-bootclean.sh state changed from security-spawning to security
[ 1.522695] init: checkroot-bootclean.sh state changed from security to pre-starting
[ 1.522728] init: checkroot-bootclean.sh state changed from pre-starting to pre-start
[ 1.522760] init: checkroot-bootclean.sh state changed from pre-start to spawning
[ 1.522794] init: checkroot-bootclean.sh state changed from spawning to spawned
[ 1.522826] init: checkroot-bootclean.sh state changed from spawned to post-starting
[ 1.522860] init: checkroot-bootclean.sh state changed from post-starting to post-start
[ 1.522891] init: checkroot-bootclean.sh state changed from post-start to running
[ 1.522962] init: Handling starting event
[ 1.523063] init: mounted-proc state changed from starting to security-spawning
[ 1.523096] init: mounted-proc state changed from security-spawning to security
[ 1.523127] init: mounted-proc state changed from security to pre-starting
[ 1.523157] init: mounted-proc state changed from pre-starting to pre-start
[ 1.523188] init: mounted-proc state changed from pre-start to spawning
[ 1.524159] init: mounted-proc main process (471)
[ 1.524211] init: mounted-proc state changed from spawning to spawned
[ 1.524452] init: Handling starting event
[ 1.524762] init: mounted-dev state changed from starting to security-spawning
[ 1.524843] init: mounted-dev state changed from security-spawning to security
[ 1.524921] init: mounted-dev state changed from security to pre-starting
[ 1.524994] init: mounted-dev state changed from pre-starting to pre-start
[ 1.525094] init: mounted-dev state changed from pre-start to spawning
[ 1.525344] init: mounted-dev main process (472)
[ 1.525387] init: mounted-dev state changed from spawning to spawned
[ 1.525549] init: Handling starting event
[ 1.525865] init: resolvconf state changed from starting to security-spawning
[ 1.525962] init: resolvconf state changed from security-spawning to security
[ 1.526037] init: resolvconf state changed from security to pre-starting
[ 1.526223] init: resolvconf pre-start process (473)
[ 1.526313] init: resolvconf state changed from pre-starting to pre-start
[ 1.526457] init: Handling starting event
[ 1.526728] init: mounted-run state changed from starting to security-spawning
[ 1.526801] init: mounted-run state changed from security-spawning to security
[ 1.526871] init: mounted-run state changed from security to pre-starting
[ 1.526968] init: mounted-run state changed from pre-starting to pre-start
[ 1.527037] init: mounted-run state changed from pre-start to spawning
[ 1.527231] init: mounted-run main process (474)
[ 1.527284] init: mounted-run state changed from spawning to spawned
[ 1.527430] init: Handling starting event
[ 1.527787] init: container-detect state changed from starting to security-spawning
[ 1.528461] init: container-detect state changed from security-spawning to security
[ 1.529003] init: container-detect state changed from security to pre-starting
[ 1.529304] init: container-detect pre-start process (475)
[ 1.529348] init: container-detect state changed from pre-starting to pre-start
[ 1.529852] init: Handling started event
[ 1.530089] init: Handling started event
[ 1.530760] init: Handling started event
[ 1.536074] init: mounted-proc state changed from spawned to post-starting
[ 1.536124] init: mounted-proc state changed from post-starting to post-start
[ 1.536160] init: mounted-proc state changed from post-start to running
[ 1.536211] init: mounted-dev state changed from spawned to post-starting
[ 1.536245] init: mounted-dev state changed from post-starting to post-start
[ 1.536277] init: mounted-dev state changed from post-start to running
[ 1.536330] init: mounted-run state changed from spawned to post-starting
[ 1.536364] init: mounted-run state changed from post-starting to post-start
[ 1.536395] init: mounted-run state changed from post-start to running
[ 1.536472] init: Handling mounted event
[ 1.536580] init: Handling mounted event
[ 1.536691] init: Handling mounted event
[ 1.536783] init: Handling mounted event
[ 1.536872] init: Handling mounted event
[ 1.536961] init: Handling mounted event
[ 1.537085] init: Handling mountallServer event
[ 1.537166] init: Handling started event
[ 1.537259] init: Handling started event
[ 1.537379] init: Handling started event
[ 1.544084] init: Handling mounting event
[ 1.544219] init: Handling mounting event
[ 1.544361] init: Handling mounting event
[ 1.544493] init: Handling mounting event
[ 1.544608] init: Handling mounting event
[ 1.544710] init: Handling mounting event
[ 1.544806] init: Handling mounting event
[ 1.544911] init: Handling mounting event
[ 1.545016] init: Handling mounting event
[ 1.545167] init: Handling mounting event
[ 1.545292] init: Handling mounting event
[ 1.545413] init: Handling mounting event
[ 1.545543] init: Handling mounting event
[ 1.545667] init: Handling mounting event
[ 1.545786] init: Handling mounting event
[ 1.545912] init: Handling mounting event
[ 1.546523] init: Handling mounting event
[ 1.546637] init: Handling mounting event
[ 1.546734] init: Handling mounting event
[ 1.546824] init: Handling mounting event
[ 1.546914] init: Handling mounting event
[ 1.547003] init: Handling mounting event
[ 1.547093] init: Handling mounting event
[ 1.547182] init: Handling mounting event
[ 1.547293] init: Handling mounting event
[ 1.547400] init: Handling mounting event
[ 1.547558] init: Handling mounting event
[ 1.547653] init: Handling mounting event
[ 1.547747] init: Handling mounting event
[ 1.547875] init: Handling mounting event
[ 1.548005] init: Handling mounting event
[ 1.548340] init: Handling mounting event
[ 1.548470] init: Handling mounting event
[ 1.548603] init: Handling mounting event
[ 1.548717] init: Handling mounting event
[ 1.548808] init: Handling mounting event
[ 1.548899] init: Handling mounting event
[ 1.548993] init: Handling mounting event
[ 1.549091] init: Handling mounting event
[ 1.549184] init: Handling mounting event
[ 1.549274] init: Handling mounting event
[ 1.549381] init: Handling mounting event
[ 1.549516] init: Handling mounting event
[ 1.549633] init: Handling mounting event
[ 1.549736] init: Handling mounting event
[ 1.549827] init: Handling mounting event
[ 1.565483] init: mounted-proc main process (471) exited normally
[ 1.565586] init: mounted-proc goal changed from start to stop
[ 1.565635] init: mounted-proc state changed from running to stopping
[ 1.565701] init: Handling stopping event
[ 1.565781] init: mounted-proc state changed from stopping to killed
[ 1.565817] init: mounted-proc state changed from killed to post-stopping
[ 1.565852] init: mounted-proc state changed from post-stopping to post-stop
[ 1.565887] init: mounted-proc state changed from post-stop to waiting
[ 1.565969] init: Handling stopped event
[ 1.577746] init: mounted-dev main process (472) exited normally
[ 1.577843] init: mounted-dev goal changed from start to stop
[ 1.577889] init: mounted-dev state changed from running to stopping
[ 1.577953] init: Handling stopping event
[ 1.578029] init: mounted-dev state changed from stopping to killed
[ 1.578062] init: mounted-dev state changed from killed to post-stopping
[ 1.578094] init: mounted-dev state changed from post-stopping to post-stop
[ 1.578126] init: mounted-dev state changed from post-stop to waiting
[ 1.578201] init: Handling stopped event
[ 1.639426] init: Connection from private client
[ 1.640663] init: Handling not-container event
[ 1.641562] init: Connection from private client
[ 1.642921] init: container-detect goal changed from start to stop
[ 1.643446] init: container-detect pre-start process (475) exited normally
[ 1.643539] init: container-detect state changed from pre-start to stopping
[ 1.643608] init: Handling stopping event
[ 1.643681] init: container-detect state changed from stopping to killed
[ 1.643720] init: container-detect state changed from killed to post-stopping
[ 1.643757] init: container-detect state changed from post-stopping to post-stop
[ 1.643795] init: container-detect state changed from post-stop to waiting
[ 1.643891] init: Handling stopped event
[ 1.652357] init: Handling all-swaps event
[ 1.682762] init: mounted-run main process (474) exited normally
[ 1.682883] init: mounted-run goal changed from start to stop
[ 1.682930] init: mounted-run state changed from running to stopping
[ 1.682992] init: Handling stopping event
[ 1.683072] init: mounted-run state changed from stopping to killed
[ 1.683107] init: mounted-run state changed from killed to post-stopping
[ 1.683140] init: mounted-run state changed from post-stopping to post-stop
[ 1.683172] init: mounted-run state changed from post-stop to waiting
[ 1.683251] init: Handling stopped event
[ 1.709200] init: Handling mounted event
[ 1.711304] init: Handling mounted event
[ 1.711486] init: cgmanager goal changed from stop to start
[ 1.711540] init: cgmanager state changed from waiting to starting
[ 1.711620] init: Handling starting event
[ 1.711723] init: cgmanager state changed from starting to security-spawning
[ 1.711768] init: cgmanager state changed from security-spawning to security
[ 1.711799] init: cgmanager state changed from security to pre-starting
[ 1.712802] init: cgmanager pre-start process (498)
[ 1.712860] init: cgmanager state changed from pre-starting to pre-start
[ 1.714248] init: Connection from private client
[ 1.719378] init: Handling mounted event
[ 1.719541] init: Handling mounted event
[ 1.721382] init: mounted-debugfs goal changed from stop to start
[ 1.721490] init: mounted-debugfs state changed from waiting to starting
[ 1.721660] init: Handling starting event
[ 1.721767] init: mounted-debugfs state changed from starting to security-spawning
[ 1.723628] init: mounted-debugfs state changed from security-spawning to security
[ 1.723864] init: mounted-debugfs state changed from security to pre-starting
[ 1.724162] init: mounted-debugfs state changed from pre-starting to pre-start
[ 1.724416] init: mounted-debugfs state changed from pre-start to spawning
[ 1.724778] init: mounted-debugfs main process (504)
[ 1.724843] init: mounted-debugfs state changed from spawning to spawned
[ 1.726584] init: Handling mounted event
[ 1.730576] init: mounted-debugfs state changed from spawned to post-starting
[ 1.730653] init: mounted-debugfs state changed from post-starting to post-start
[ 1.730694] init: mounted-debugfs state changed from post-start to running
[ 1.730755] init: mounted-debugfs main process (504) exited normally
[ 1.730888] init: mounted-debugfs goal changed from start to stop
[ 1.730942] init: mounted-debugfs state changed from running to stopping
[ 1.731003] init: Handling started event
[ 1.731165] init: Handling stopping event
[ 1.731266] init: mounted-debugfs state changed from stopping to killed
[ 1.731658] init: mounted-debugfs state changed from killed to post-stopping
[ 1.731697] init: mounted-debugfs state changed from post-stopping to post-stop
[ 1.731731] init: mounted-debugfs state changed from post-stop to waiting
[ 1.731813] init: Handling stopped event
[ 1.736723] init: Handling mounted event
[ 1.736845] init: mounted-tmp goal changed from stop to start
[ 1.736886] init: mounted-tmp state changed from waiting to starting
[ 1.736935] init: Handling starting event
[ 1.737021] init: mounted-tmp state changed from starting to security-spawning
[ 1.737093] init: mounted-tmp state changed from security-spawning to security
[ 1.737132] init: mounted-tmp state changed from security to pre-starting
[ 1.737166] init: mounted-tmp state changed from pre-starting to pre-start
[ 1.737199] init: mounted-tmp state changed from pre-start to spawning
[ 1.741199] init: mounted-tmp main process (516)
[ 1.741276] init: mounted-tmp state changed from spawning to spawned
[ 1.741507] init: Handling mounted event
[ 1.742757] init: mounted-tmp state changed from spawned to post-starting
[ 1.742857] init: mounted-tmp state changed from post-starting to post-start
[ 1.742896] init: mounted-tmp state changed from post-start to running
[ 1.742958] init: Handling started event
[ 1.744454] init: Handling mounted event
[ 1.745770] init: Handling mounted event
[ 1.746166] init: Handling mounted event
[ 1.753327] init: Handling mounted event
[ 1.755858] init: Handling mounted event
[ 1.759130] init: Handling mounted event
[ 1.763726] init: Handling mounted event
[ 1.768523] init: Handling mounted event
[ 1.771115] init: cgmanager pre-start process (498) exited normally
[ 1.771217] init: cgmanager state changed from pre-start to spawning
[ 1.771401] init: cgmanager main process (526)
[ 1.771451] init: cgmanager state changed from spawning to spawned
[ 1.777363] init: Handling mounted event
[ 1.779985] init: Handling mounted event
[ 1.782556] init: Handling mounted event
[ 1.785439] init: Handling mounted event
[ 1.797962] init: Handling mounted event
[ 1.800865] init: Handling mounted event
[ 1.803841] init: Handling mounted event
[ 1.806820] init: Handling mounted event
[ 1.810250] init: Handling mounted event
[ 1.814749] init: Handling mounted event
[ 1.819144] init: Handling mounted event
[ 1.826260] init: Handling mounted event
[ 1.830072] init: Handling mounted event
[ 1.834071] init: Handling mounted event
[ 1.838475] init: Handling mounted event
[ 1.842767] init: Handling mounted event
[ 1.847922] init: Handling mounted event
[ 1.854862] init: Handling mounted event
[ 1.869324] init: Handling mounted event
[ 1.872398] init: Handling mounted event
[ 1.876396] init: Handling mounted event
[ 1.879866] init: Handling mounted event
[ 1.883711] init: Handling mounted event
[ 1.891758] init: Handling mounted event
[ 1.894309] init: Handling mounted event
[ 1.900787] init: Handling mounted event
[ 1.905411] init: cgmanager main process (526) stopped by STOP signal
[ 1.905480] init: cgmanager state changed from spawned to post-starting
[ 1.905665] init: cgmanager post-start process (554)
[ 1.905734] init: cgmanager state changed from post-starting to post-start
[ 1.905822] init: cgmanager main process (526) continued by CONT signal
[ 1.907431] init: Connection from private client
[ 1.917475] init: Handling mounted event
[ 1.918227] init: cgmanager post-start process (554) exited normally
[ 1.918329] init: cgmanager state changed from post-start to running
[ 1.918442] init: Handling started event
[ 1.918556] init: cgproxy goal changed from stop to start
[ 1.918600] init: cgproxy state changed from waiting to starting
[ 1.918671] init: Handling starting event
[ 1.918757] init: cgproxy state changed from starting to security-spawning
[ 1.918798] init: cgproxy state changed from security-spawning to security
[ 1.918839] init: cgproxy state changed from security to pre-starting
[ 1.919821] init: cgproxy pre-start process (558)
[ 1.919878] init: cgproxy state changed from pre-starting to pre-start
[ 1.920340] init: Handling mounted event
[ 1.922373] init: cgproxy pre-start process (558) exited normally
[ 1.922599] init: cgproxy state changed from pre-start to spawning
[ 1.922931] init: cgproxy main process (559)
[ 1.922990] init: cgproxy state changed from spawning to spawned
[ 1.926419] init: cgproxy main process (559) stopped by STOP signal
[ 1.926682] init: cgproxy state changed from spawned to post-starting
[ 1.926836] init: cgproxy post-start process (561)
[ 1.926886] init: cgproxy state changed from post-starting to post-start
[ 1.926950] init: cgproxy main process (559) continued by CONT signal
[ 1.926993] init: Handling mounted event
[ 1.929061] init: Connection from private client
[ 1.931613] init: Handling mounted event
[ 1.932739] init: Connection from private client
[ 1.933674] init: Handling cgmanager-ready event
[ 1.933788] init: lxc-android-config goal changed from stop to start
[ 1.935477] init: lxc-android-config state changed from waiting to starting
[ 1.935586] init: Handling starting event
[ 1.939788] init: upstart-local-bridge goal changed from stop to start
[ 1.939882] init: upstart-local-bridge state changed from waiting to starting
[ 1.940710] init: Handling starting event
[ 1.940819] init: upstart-local-bridge state changed from starting to security-spawning
[ 1.940965] init: upstart-local-bridge state changed from security-spawning to security
[ 1.941174] init: upstart-local-bridge state changed from security to pre-starting
[ 1.941503] init: upstart-local-bridge pre-start process (565)
[ 1.941555] init: upstart-local-bridge state changed from pre-starting to pre-start
[ 1.942691] init: cgproxy post-start process (561) exited normally
[ 1.942789] init: cgproxy state changed from post-start to running
[ 1.942898] init: Handling started event
[ 1.943214] init: Handling mounted event
[ 1.945481] init: upstart-local-bridge pre-start process (565) exited normally
[ 1.945572] init: upstart-local-bridge state changed from pre-start to spawning
[ 1.945893] init: upstart-local-bridge main process (567)
[ 1.945946] init: upstart-local-bridge state changed from spawning to spawned
[ 1.988488] init: upstart-local-bridge main process (567) executable changed
[ 1.989229] init: Connection from private client
[ 1.990389] init: upstart-local-bridge main process (567) became new process (568)
[ 1.990624] init: upstart-local-bridge main process (568) became new process (569)
[ 1.990906] init: upstart-local-bridge state changed from spawned to post-starting
[ 1.991083] init: upstart-local-bridge state changed from post-starting to post-start
[ 1.991278] init: upstart-local-bridge state changed from post-start to running
[ 1.991464] init: lxc-android-config state changed from starting to security-spawning
[ 1.991643] init: lxc-android-config state changed from security-spawning to security
[ 1.991781] init: lxc-android-config state changed from security to pre-starting
[ 1.992140] init: lxc-android-config state changed from pre-starting to pre-start
[ 1.992312] init: lxc-android-config state changed from pre-start to spawning
[ 1.992554] init: lxc-android-config main process (570)
[ 1.992619] init: lxc-android-config state changed from spawning to spawned
[ 1.992984] init: Handling started event
[ 2.002786] init: lxc-android-config state changed from spawned to post-starting
[ 2.002938] init: lxc-android-config post-start process (574)
[ 2.003008] init: lxc-android-config state changed from post-starting to post-start
[ 2.064511] init: mounted-tmp main process (516) exited normally
[ 2.064622] init: mounted-tmp goal changed from start to stop
[ 2.064689] init: mounted-tmp state changed from running to stopping
[ 2.064762] init: Handling stopping event
[ 2.064912] init: mounted-tmp state changed from stopping to killed
[ 2.064965] init: mounted-tmp state changed from killed to post-stopping
[ 2.065006] init: mounted-tmp state changed from post-stopping to post-stop
[ 2.065053] init: mounted-tmp state changed from post-stop to waiting
[ 2.065169] init: Handling stopped event
[ 2.166792] init: resolvconf pre-start process (473) exited normally
[ 2.166884] init: resolvconf state changed from pre-start to spawning
[ 2.166884] init: resolvconf state changed from spawning to spawned
[ 2.166884] init: resolvconf state changed from spawned to post-starting
[ 2.166884] init: resolvconf state changed from post-starting to post-start
[ 2.166884] init: resolvconf state changed from post-start to running
[ 2.166884] init: Handling started event
[ 2.166884] init: Handling virtual-filesystems event
[ 2.168062] init: mountnfs-bootclean.sh goal changed from stop to start
[ 2.168189] init: mountnfs-bootclean.sh state changed from waiting to starting
[ 2.168453] init: console-setup goal changed from stop to start
[ 2.168575] init: console-setup state changed from waiting to starting
[ 2.168852] init: procps-instance (virtual-filesystems) goal changed from stop to start
[ 2.168979] init: procps-instance (virtual-filesystems) state changed from waiting to starting
[ 2.169303] init: mountkernfs.sh goal changed from stop to start
[ 2.169427] init: mountkernfs.sh state changed from waiting to starting
[ 2.169710] init: bootmisc.sh goal changed from stop to start
[ 2.169844] init: bootmisc.sh state changed from waiting to starting
[ 2.170121] init: mountdevsubfs.sh goal changed from stop to start
[ 2.170245] init: mountdevsubfs.sh state changed from waiting to starting
[ 2.170508] init: mtab.sh goal changed from stop to start
[ 2.170627] init: mtab.sh state changed from waiting to starting
[ 2.170917] init: mountall-bootclean.sh goal changed from stop to start
[ 2.171037] init: mountall-bootclean.sh state changed from waiting to starting
[ 2.171171] init: Handling starting event
[ 2.171273] init: mountnfs-bootclean.sh state changed from starting to security-spawning
[ 2.171391] init: mountnfs-bootclean.sh state changed from security-spawning to security
[ 2.171511] init: mountnfs-bootclean.sh state changed from security to pre-starting
[ 2.173158] init: mountnfs-bootclean.sh state changed from pre-starting to pre-start
[ 2.173290] init: mountnfs-bootclean.sh state changed from pre-start to spawning
[ 2.173412] init: mountnfs-bootclean.sh state changed from spawning to spawned
[ 2.173533] init: mountnfs-bootclean.sh state changed from spawned to post-starting
[ 2.173652] init: mountnfs-bootclean.sh state changed from post-starting to post-start
[ 2.173772] init: mountnfs-bootclean.sh state changed from post-start to running
[ 2.174015] init: Handling starting event
[ 2.174115] init: console-setup state changed from starting to security-spawning
[ 2.174233] init: console-setup state changed from security-spawning to security
[ 2.174352] init: console-setup state changed from security to pre-starting
[ 2.174471] init: console-setup state changed from pre-starting to pre-start
[ 2.174590] init: console-setup state changed from pre-start to spawning
[ 2.174814] init: console-setup main process (591)
[ 2.174871] init: console-setup state changed from spawning to spawned
[ 2.175125] init: Handling starting event
[ 2.175342] init: procps-instance (virtual-filesystems) state changed from starting to security-spawning
[ 2.175463] init: procps-instance (virtual-filesystems) state changed from security-spawning to security
[ 2.175584] init: procps-instance (virtual-filesystems) state changed from security to pre-starting
[ 2.176444] init: procps-instance (virtual-filesystems) state changed from pre-starting to pre-start
[ 2.176573] init: procps-instance (virtual-filesystems) state changed from pre-start to spawning
[ 2.176813] init: procps-instance (virtual-filesystems) main process (592)
[ 2.176884] init: procps-instance (virtual-filesystems) state changed from spawning to spawned
[ 2.177185] init: Handling starting event
[ 2.177507] init: mountkernfs.sh state changed from starting to security-spawning
[ 2.181986] init: mountkernfs.sh state changed from security-spawning to security
[ 2.182432] init: mountkernfs.sh state changed from security to pre-starting
[ 2.182572] init: mountkernfs.sh state changed from pre-starting to pre-start
[ 2.182701] init: mountkernfs.sh state changed from pre-start to spawning
[ 2.182831] init: mountkernfs.sh state changed from spawning to spawned
[ 2.183689] init: mountkernfs.sh state changed from spawned to post-starting
[ 2.183843] init: mountkernfs.sh state changed from post-starting to post-start
[ 2.183971] init: mountkernfs.sh state changed from post-start to running
[ 2.184214] init: Handling starting event
[ 2.184325] init: bootmisc.sh state changed from starting to security-spawning
[ 2.184443] init: bootmisc.sh state changed from security-spawning to security
[ 2.184563] init: bootmisc.sh state changed from security to pre-starting
[ 2.184681] init: bootmisc.sh state changed from pre-starting to pre-start
[ 2.184799] init: bootmisc.sh state changed from pre-start to spawning
[ 2.184925] init: bootmisc.sh state changed from spawning to spawned
[ 2.185049] init: bootmisc.sh state changed from spawned to post-starting
[ 2.185169] init: bootmisc.sh state changed from post-starting to post-start
[ 2.185288] init: bootmisc.sh state changed from post-start to running
[ 2.185520] init: Handling starting event
[ 2.185612] init: mountdevsubfs.sh state changed from starting to security-spawning
[ 2.188411] init: mountdevsubfs.sh state changed from security-spawning to security
[ 2.188540] init: mountdevsubfs.sh state changed from security to pre-starting
[ 2.188662] init: mountdevsubfs.sh state changed from pre-starting to pre-start
[ 2.188782] init: mountdevsubfs.sh state changed from pre-start to spawning
[ 2.188910] init: mountdevsubfs.sh state changed from spawning to spawned
[ 2.189031] init: mountdevsubfs.sh state changed from spawned to post-starting
[ 2.189197] init: mountdevsubfs.sh state changed from post-starting to post-start
[ 2.189356] init: mountdevsubfs.sh state changed from post-start to running
[ 2.189624] init: Handling starting event
[ 2.189718] init: mtab.sh state changed from starting to security-spawning
[ 2.189845] init: mtab.sh state changed from security-spawning to security
[ 2.189966] init: mtab.sh state changed from security to pre-starting
[ 2.190085] init: mtab.sh state changed from pre-starting to pre-start
[ 2.190204] init: mtab.sh state changed from pre-start to spawning
[ 2.190323] init: mtab.sh state changed from spawning to spawned
[ 2.190442] init: mtab.sh state changed from spawned to post-starting
[ 2.190560] init: mtab.sh state changed from post-starting to post-start
[ 2.190678] init: mtab.sh state changed from post-start to running
[ 2.190921] init: Handling starting event
[ 2.191011] init: mountall-bootclean.sh state changed from starting to security-spawning
[ 2.191130] init: mountall-bootclean.sh state changed from security-spawning to security
[ 2.191250] init: mountall-bootclean.sh state changed from security to pre-starting
[ 2.191369] init: mountall-bootclean.sh state changed from pre-starting to pre-start
[ 2.191488] init: mountall-bootclean.sh state changed from pre-start to spawning
[ 2.191607] init: mountall-bootclean.sh state changed from spawning to spawned
[ 2.191726] init: mountall-bootclean.sh state changed from spawned to post-starting
[ 2.191854] init: mountall-bootclean.sh state changed from post-starting to post-start
[ 2.191974] init: mountall-bootclean.sh state changed from post-start to running
[ 2.192212] init: Handling started event
[ 2.192408] init: Handling started event
[ 2.192601] init: Handling started event
[ 2.192798] init: Handling started event
[ 2.193000] init: Handling started event
[ 2.193553] init: Handling started event
[ 2.194011] init: procps-instance (virtual-filesystems) state changed from spawned to post-starting
[ 2.195576] init: procps-instance (virtual-filesystems) state changed from post-starting to post-start
[ 2.195707] init: procps-instance (virtual-filesystems) state changed from post-start to running
[ 2.195870] init: Handling started event
[ 2.196092] init: procps goal changed from stop to start
[ 2.196214] init: procps state changed from waiting to starting
[ 2.196348] init: Handling starting event
[ 2.196481] init: procps state changed from starting to security-spawning
[ 2.196652] init: procps state changed from security-spawning to security
[ 2.196829] init: procps state changed from security to pre-starting
[ 2.196935] init: procps state changed from pre-starting to pre-start
[ 2.196935] init: procps state changed from pre-start to spawning
[ 2.196935] init: procps state changed from spawning to spawned
[ 2.196935] init: procps state changed from spawned to post-starting
[ 2.196935] init: procps state changed from post-starting to post-start
[ 2.196935] init: procps state changed from post-start to running
[ 2.197890] init: Handling started event
[ 2.198390] init: console-setup state changed from spawned to post-starting
[ 2.198529] init: console-setup state changed from post-starting to post-start
[ 2.198660] init: console-setup state changed from post-start to running
[ 2.201144] init: Handling local-filesystems event
[ 2.201338] init: mountall.sh goal changed from stop to start
[ 2.201470] init: mountall.sh state changed from waiting to starting
[ 2.201757] init: dbus goal changed from stop to start
[ 2.201900] init: dbus state changed from waiting to starting
[ 2.202212] init: custom-dconf-update goal changed from stop to start
[ 2.202342] init: custom-dconf-update state changed from waiting to starting
[ 2.202624] init: no-cpu-hotplug goal changed from stop to start
[ 2.202751] init: no-cpu-hotplug state changed from waiting to starting
[ 2.203032] init: rfkill-restore goal changed from stop to start
[ 2.203155] init: rfkill-restore state changed from waiting to starting
[ 2.203413] init: boot-hooks-emit goal changed from stop to start
[ 2.203535] init: boot-hooks-emit state changed from waiting to starting
[ 2.203667] init: Handling started event
[ 2.203886] init: Handling starting event
[ 2.203983] init: mountall.sh state changed from starting to security-spawning
[ 2.204104] init: mountall.sh state changed from security-spawning to security
[ 2.204226] init: mountall.sh state changed from security to pre-starting
[ 2.204347] init: mountall.sh state changed from pre-starting to pre-start
[ 2.204468] init: mountall.sh state changed from pre-start to spawning
[ 2.204588] init: mountall.sh state changed from spawning to spawned
[ 2.204708] init: mountall.sh state changed from spawned to post-starting
[ 2.204837] init: mountall.sh state changed from post-starting to post-start
[ 2.204959] init: mountall.sh state changed from post-start to running
[ 2.205204] init: Handling starting event
[ 2.205310] init: dbus state changed from starting to security-spawning
[ 2.206933] init: dbus state changed from security-spawning to security
[ 2.207076] init: dbus state changed from security to pre-starting
[ 2.207310] init: dbus pre-start process (600)
[ 2.207356] init: dbus state changed from pre-starting to pre-start
[ 2.207621] init: Handling starting event
[ 2.207890] init: custom-dconf-update state changed from starting to security-spawning
[ 2.208018] init: custom-dconf-update state changed from security-spawning to security
[ 2.208142] init: custom-dconf-update state changed from security to pre-starting
[ 2.208264] init: custom-dconf-update state changed from pre-starting to pre-start
[ 2.208384] init: custom-dconf-update state changed from pre-start to spawning
[ 2.208605] init: custom-dconf-update main process (601)
[ 2.208649] init: custom-dconf-update state changed from spawning to spawned
[ 2.211324] init: Handling starting event
[ 2.211656] init: no-cpu-hotplug state changed from starting to security-spawning
[ 2.211787] init: no-cpu-hotplug state changed from security-spawning to security
[ 2.211915] init: no-cpu-hotplug state changed from security to pre-starting
[ 2.212564] init: no-cpu-hotplug state changed from pre-starting to pre-start
[ 2.212696] init: no-cpu-hotplug state changed from pre-start to spawning
[ 2.212928] init: no-cpu-hotplug main process (602)
[ 2.212968] init: no-cpu-hotplug state changed from spawning to spawned
[ 2.213876] init: Handling starting event
[ 2.214107] init: rfkill-restore state changed from starting to security-spawning
[ 2.214237] init: rfkill-restore state changed from security-spawning to security
[ 2.214363] init: rfkill-restore state changed from security to pre-starting
[ 2.214487] init: rfkill-restore state changed from pre-starting to pre-start
[ 2.214609] init: rfkill-restore state changed from pre-start to spawning
[ 2.214854] init: rfkill-restore main process (603)
[ 2.214898] init: rfkill-restore state changed from spawning to spawned
[ 2.215671] init: Handling starting event
[ 2.215917] init: boot-hooks-emit state changed from starting to security-spawning
[ 2.217433] init: boot-hooks-emit state changed from security-spawning to security
[ 2.217570] init: boot-hooks-emit state changed from security to pre-starting
[ 2.217696] init: boot-hooks-emit state changed from pre-starting to pre-start
[ 2.217830] init: boot-hooks-emit state changed from pre-start to spawning
[ 2.218065] init: boot-hooks-emit main process (604)
[ 2.218109] init: boot-hooks-emit state changed from spawning to spawned
[ 2.218870] init: Handling started event
[ 2.219388] init: custom-dconf-update state changed from spawned to post-starting
[ 2.222306] init: custom-dconf-update state changed from post-starting to post-start
[ 2.222443] init: custom-dconf-update state changed from post-start to running
[ 2.222593] init: no-cpu-hotplug state changed from spawned to post-starting
[ 2.222723] init: no-cpu-hotplug state changed from post-starting to post-start
[ 2.222854] init: no-cpu-hotplug state changed from post-start to running
[ 2.222997] init: rfkill-restore state changed from spawned to post-starting
[ 2.223597] init: rfkill-restore state changed from post-starting to post-start
[ 2.223729] init: rfkill-restore state changed from post-start to running
[ 2.223895] init: Handling remote-filesystems event
[ 2.224092] init: mountnfs.sh goal changed from stop to start
[ 2.224215] init: mountnfs.sh state changed from waiting to starting
[ 2.224391] init: Handling started event
[ 2.224603] init: Handling started event
[ 2.224810] init: Handling started event
[ 2.225008] init: Handling starting event
[ 2.225114] init: mountnfs.sh state changed from starting to security-spawning
[ 2.225254] init: mountnfs.sh state changed from security-spawning to security
[ 2.225396] init: mountnfs.sh state changed from security to pre-starting
[ 2.225575] init: mountnfs.sh state changed from pre-starting to pre-start
[ 2.225766] init: mountnfs.sh state changed from pre-start to spawning
[ 2.225913] init: mountnfs.sh state changed from spawning to spawned
[ 2.227814] init: mountnfs.sh state changed from spawned to post-starting
[ 2.227974] init: mountnfs.sh state changed from post-starting to post-start
[ 2.228131] init: mountnfs.sh state changed from post-start to running
[ 2.228388] init: Handling started event
[ 2.229346] init: boot-hooks-emit state changed from spawned to post-starting
[ 2.229472] init: boot-hooks-emit state changed from post-starting to post-start
[ 2.229578] init: boot-hooks-emit state changed from post-start to running
[ 2.231973] init: mountall main process (470) exited normally
[ 2.232080] init: mountall goal changed from start to stop
[ 2.232182] init: mountall state changed from running to stopping
[ 2.232313] init: no-cpu-hotplug main process (602) terminated with status 1
[ 2.232531] init: no-cpu-hotplug goal changed from start to stop
[ 2.232623] init: no-cpu-hotplug state changed from running to stopping
[ 2.232751] init: rfkill-restore main process (603) exited normally
[ 2.232859] init: rfkill-restore goal changed from start to stop
[ 2.232970] init: rfkill-restore state changed from running to stopping
[ 2.233100] init: Handling filesystem event
[ 2.234369] init: passwd goal changed from stop to start
[ 2.234472] init: passwd state changed from waiting to starting
[ 2.234668] init: rsyslog goal changed from stop to start
[ 2.234759] init: rsyslog state changed from waiting to starting
[ 2.234950] init: click-system-hooks goal changed from stop to start
[ 2.235038] init: click-system-hooks state changed from waiting to starting
[ 2.235256] init: lxc-android-boot goal changed from stop to start
[ 2.235346] init: lxc-android-boot state changed from waiting to starting
[ 2.235553] init: flush-early-job-log goal changed from stop to start
[ 2.235641] init: flush-early-job-log state changed from waiting to starting
[ 2.235853] init: upstart-file-bridge goal changed from stop to start
[ 2.235943] init: upstart-file-bridge state changed from waiting to starting
[ 2.236057] init: Handling started event
|