forked from nemomobile/dsme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1706 lines (1025 loc) · 45.6 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
commit acaa7fba388552c4894076fcf5a192b6ef0459fc
Author: Markus Lehtonen <[email protected]>
Convert DSME to use autotools
commit 601099561b088919ed2665a401add9f3b58eb9db
Author: Semi Malinen <[email protected]>
bump version to 0.61.24
commit 83ca81b99bef1742e2e58a097edbabeffd6dee33
Author: Semi Malinen <[email protected]>
reduce nagging for nonoptimal iphb waiting times (Fixes: NB#192322)
commit ea34895cdd18aea8d1620b1886145b71756e3ed6
Author: Semi Malinen <[email protected]>
Tune syslog and console logging (Fixes: NB#184690)
commit 93842e2881fd8df934535384c133126e8142aeb4
Author: Semi Malinen <[email protected]>
update surface temperature estimation
commit f904758aa337c37f286bf34929643b4f62aa2b56
Author: Semi Malinen <[email protected]>
fix licensing in depend_filter.py; this time for real
commit 515f81994fae8bc455d67e5faeb8fe4c5598156b
Author: Semi Malinen <[email protected]>
fix licensing in depend_filter.py
commit 29e7115a76adf0b692140d8e5662d63bb9ee611d
Author: Markus Lehtonen <[email protected]>
Add start/stop priority to SysV init script
commit 7a49645dfbfdd22c6fbcb8dc72920d419e306151
Author: Markus Lehtonen <[email protected]>
Lower the static priority of dsme-server.
commit 3867cf82f04080fe84d504267c0bd20eaefb2f55
Author: Markus Lehtonen <[email protected]>
Make libpowerontimer build-time configurable
commit a3ffd31424c777fb141cf7e10b05808530be1864
Author: Markus Lehtonen <[email protected]>
Introduce MeeGo style (SysV) init script.
commit 71c00a787b2d7f6f25c9b02b2b7d3d49b193365e
Author: Markus Lehtonen <[email protected]>
Add build-time option to exclude upstart.
commit eabab62a1b3ec66ba8bd48afd762b60ba14733b8
Author: Simo Piiroinen <[email protected]>
Changelog formatting fixed
commit a4fc28c2ff1254a5c31db24cb4f787d4c170441e
Author: Matias Muhonen <[email protected]>
Add changelog entry for thermal management tuning
commit b0a5961f7867dea699c17290f92d695478ac683e
Author: Matias Muhonen <[email protected]>
Thermal management tuning, forget to add the author tags
commit 41ae4124f6379281fe3401886069bee5a641f726
Author: Matias Muhonen <[email protected]>
Thermal management tuning
commit 8addcd1afbba153ca97f7587c9b5dab70fddc499
Author: Simo Piiroinen <[email protected]>
Power on timer module implemented
commit 88d6715f4eab73c1ecc1f58918b2b8264381552b
Author: Semi Malinen <[email protected]>
bump version to 0.61.22
commit 7d3a51c89b276dd5088a7e96e20b1abb6ebe8661
Author: Semi Malinen <[email protected]>
use lower logging level for internal iphb wait requests
commit d41918f3bfa12f7abed779335bbf46e6c68cafa1
Author: Semi Malinen <[email protected]>
bump version to 0.61.21
commit 146fc70662c842e8f2019a2f88f1efdb95b8831b
Author: Semi Malinen <[email protected]>
add module for obtaining RD flags
commit 9d8e23321affa05380c7bfd7c3c3e6302ef50277
Author: Semi Malinen <[email protected]>
remove obsolete CAL related files
commit 25d3ded614a8da09481c4aa6a615870d4339857c
Author: Semi Malinen <[email protected]>
get RD flags from environment instead of CAL
commit 324127b6fccdf03fc82b798c1aea1c3619cac08d
Author: Semi Malinen <[email protected]>
bump version to 0.61.20
commit 513025f554c1ad6bf1b895bee34a95754190e43c
Author: Semi Malinen <[email protected]>
make dsme grok active alarms
commit 42e687ce6e14170257ba44e4d31d630facfe68d8
Author: Semi Malinen <[email protected]>
bump version to 0.61.19
commit e997d17f5ffafb88760b5632349955f6bc8a3293
Author: Semi Malinen <[email protected]>
first stab at aegis support for DeviceStateControl token
commit 61c1c0b84d2c88f10ec361038136aa56c5333851
Author: Semi Malinen <[email protected]>
make valgrind happy
commit ed34b96de2c587a55220c9ce06a7853d95b7a146
Author: Semi Malinen <[email protected]>
bump version to 0.61.18
commit 6466e8990dd22770ff10c7f0a58ab2a79f1efcd8
Author: Semi Malinen <[email protected]>
minor edit
commit f08f746569be2a3c4e5627123c3d8696e0b0d79f
Author: Semi Malinen <[email protected]>
add silly timestamp logging for testing
commit 3bc78a7cf03154613bc81a739ca8e309f24a9dd2
Author: Semi Malinen <[email protected]>
ack events to iphb kernel module
commit bb3c460a874c8c8a3ac6d8361cb064f9aae4acd9
Author: Semi Malinen <[email protected]>
make thermal manager use iphb
commit 1be595f03aa57bcf33a05a60842e21308ac0a644
Author: Semi Malinen <[email protected]>
make processwd use iphb
commit 43d194f6477d7eec5ed4c058f61db5afe5b8df2a
Author: Semi Malinen <[email protected]>
support internal clients and syncing with hwwd in iphb module
commit 40e46131aea89174383f52e589f335e36215eca6
Author: Semi Malinen <[email protected]>
prepare hwwd feeder for syncing with iphb
commit d34657bb6b5c3222244909c04d12f5407708e736
Author: Semi Malinen <[email protected]>
minor edit
commit 8476c0a30b37b4989ec6d869396db5753603bbae
Author: Semi Malinen <[email protected]>
add IDLE message
commit d453368421466616a533d2be84662b850223a928
Author: Semi Malinen <[email protected]>
fix a coverity finding
commit 3238cdc674c337cadef7efaf15604d76bd319355
Author: Semi Malinen <[email protected]>
fix a coverity finding
commit dc59ddcf58321e833ee51468e81e917184f5ac00
Author: Semi Malinen <[email protected]>
fix a coverity finding
commit d3294ed29d3c8a901232bd1dc3e36fb77f3ec9a1
Author: Semi Malinen <[email protected]>
bump version
commit 852153ea86f601ef63514db73d0d1b6d4b1cf214
Author: Semi Malinen <[email protected]>
By Matias Muhonen: fix NB#159310 by adding D-Bus policy configuration
commit 317260615806cc07d67b24a5f66cbf3c261a3346
Author: Semi Malinen <[email protected]>
bump version
commit a9ae3dfce666327933c618c7e7a860f32cbb5eed
Author: Semi Malinen <[email protected]>
take reboot detection into use
commit 54bf47e200796bc8f60b0d3428509f30277d3c78
Author: Semi Malinen <[email protected]>
make reboot loop detector more testable
commit fa0266bc3179fb562277aef5cd457821a503fe5a
Author: Semi Malinen <[email protected]>
add test cases for reboot loop detector
commit bab57218d67e4ffd0926f885ad15dcedd0597699
Author: Semi Malinen <[email protected]>
first cut at reboot loop detection
commit 1a03e68b9104660ab001234c17728c3d8d27873e
Author: Semi Malinen <[email protected]>
NB#170378: depend on the new libdsme
commit f39703ffa09e12b1b2eb8d86fce4863315b7f570
Author: Semi Malinen <[email protected]>
bump version
commit 0274e7ce10a3c8b8211abb853b81b2c442e980c1
Author: Semi Malinen <[email protected]>
make dsme grok alarm queue becoming empty
commit 56bb11816f48fc915f5a5f4a3b2cd0cc926957ac
Author: Semi Malinen <[email protected]>
bump version
commit 19c979949a33aa1c448e8e29377e5b02ed858b42
Author: Semi Malinen <[email protected]>
update dependency on new libdsme
commit 0f3c621c3443ac99c99bb862054675b8cb83da0d
Author: Semi Malinen <[email protected]>
proxy state queries from D-Bus
commit 94d76433ac668ede75fbacf4b03266b2ef2fe16e
Author: Semi Malinen <[email protected]>
support replies from internal message queue to D-Bus handlers
commit a2099c7475d1084e05f538285d92823688e211df
Author: Semi Malinen <[email protected]>
do not parameterize shutdown ind on D-Bus
commit 5ba4666a8593b740283585528e28c21adab8d400
Author: Semi Malinen <[email protected]>
proxy state changes to D-Bus
commit b528a5713a5e4ce50d20e3c9ff9f6e15b04fabfc
Author: Semi Malinen <[email protected]>
update timed D-Bus i/f name
commit 559eb884de28a8ccd8879ab7d4308f718dc7df37
Author: Semi Malinen <[email protected]>
save runlevel to /var/lib/dsme/saved_state, utmp & wtmp
commit 204ad40cd6b8c6157f785a1dbc0658f4a694e7d0
Author: Semi Malinen <[email protected]>
first cut at supporting telinit ACTDEAD
commit 1cb2f53d4e68d0236793ed20fe9e6c8510ed6e65
Author: Semi Malinen <[email protected]>
support all current state change requests also via DSM_MSGTYPE_TELINIT
commit 325f1d791cb5d9dd48aeec2d8507d019d42cb0a5
Author: Semi Malinen <[email protected]>
add skeleton support for DSM_MSGTYPE_TELINIT
commit 52a931f736b56a7cb844b93552674d0df5a5e54e
Author: Semi Malinen <[email protected]>
add support for changing logging verbosity on the run
commit c762d362a83213a330cfdc82d82870306ede3ad8
Author: Semi Malinen <[email protected]>
support --telinit in dsmetool
commit dcafcc9aab821894a2b737de2d5e097653f66c45
Author: Semi Malinen <[email protected]>
add upstart module
commit 4196938c398b6f1ef9955c7567818b9cb81c97a7
Author: Semi Malinen <[email protected]>
minor edit: remove unused THERMAL_SHUTDOWN_IND from dbusproxy
commit d9633eca568fd148b0546e8e773424b5bcc8517f
Author: Semi Malinen <[email protected]>
Port fix to NB#139135 from Fremantle: parameterize shutdown ind on D-Bus
commit bdf9bf5485a242c25e4e58d6a4a57068514edf78
Author: Semi Malinen <[email protected]>
bump version
commit ef75297a353aba54365c2391e59cac946ab2855b
Author: Semi Malinen <[email protected]>
fix comment
commit f0d82ce984442ab48e1b35c3b22642040ad7912e
Author: Semi Malinen <[email protected]>
port from using alarmd to using timed
commit 4b87b50e745f221e333a7de0fa034adb0a6e94a3
Author: Semi Malinen <[email protected]>
readjust to changes in usb_moded's D-Bus i/f
commit c360094b6db494557f76e3b98acb7d42d9e7e723
Author: Semi Malinen <[email protected]>
bump version
commit af5d6cd19106a7d0420a2f3f6e6c5b4d3878b59d
Author: Semi Malinen <[email protected]>
Fixes: NB#167251: exit dsme-server process if dsme process dies uncleanly
commit 56cf101e406e76a75c84be0413e737553c8634f5
Author: Semi Malinen <[email protected]>
adjust to changes in usb_moded's D-Bus i/f
commit db9114951caab1753783ff9cd3a36f1a51127d15
Author: Semi Malinen <[email protected]>
remove unnecessary #includes
commit 4de0fc3f2d133b6e76ecf825de3d826063fc45fb
Author: Semi Malinen <[email protected]>
remove deprecated flags from Makefile
commit 0998fcec60d94f85b6e06c9a64242d6db1a61c73
Author: Semi Malinen <[email protected]>
version bump
commit 279962268e904a0cdbef71fad2089fa3bf588178
Author: Semi Malinen <[email protected]>
remove dsme-exec-helper since it is no longer used
commit 4910c56d7953d30da4f7aca6d2621c190cb0d019
Author: Semi Malinen <[email protected]>
install dsmetemperature
commit 839b6a80bbf3bc874dea8c10ff2926b867cbcb99
Author: Semi Malinen <[email protected]>
version bump
commit f001910292b9c9864c283b679c841696cb18509c
Author: Semi Malinen <[email protected]>
also consider desktop alarms when broadcasting DSM_MSGTYPE_SET_ALARM_STATE
commit 42717cdede51f5dd657584eddaa133191be44f10
Author: Semi Malinen <[email protected]>
Add a script for logging estimated surface temperature.
commit d9e3c8ec0fbb2a593fef9301e7729dc742536ce2
Merge: 49f3ff2 2739e7a
Author: Semi Malinen <[email protected]>
Merge branch 'master' of ssh://gitorious.org/dsme/dsme
commit 2739e7ae1460f1b485964e1662f74e42b082ee14
Author: Semi Malinen <[email protected]>
support estimate_surface_temperature on System Bus
commit da18fe889738c03851f4dbf00a0a6b76ee2c329f
Author: Semi Malinen <[email protected]>
support appending ints to D-Bus messages
commit 49f3ff2511f523fcc67aad05d41c535b8b24e10d
Author: Semi Malinen <[email protected]>
bump version
commit eaa8c57227a46e28375126023d4864f261a8ff30
Author: Semi Malinen <[email protected]>
link thermal manager plug-in against its D-Bus interface
commit 1fdc71ed7bb8afd8881460ead76c74a68448c83c
Author: Semi Malinen <[email protected]>
bump version
commit 4b044343d51010db69b1b38dae7a8f09e311bb9c
Author: Semi Malinen <[email protected]>
update usb_moded signal name
commit 5a6e9e5cb6d0a6d97dd4339357884ac721c8352f
Author: Semi Malinen <[email protected]>
fix USB state tracking
commit b0092194cc6658f2167418c8535ecd64a1f7c258
Author: Semi Malinen <[email protected]>
fix compilation errors
commit 0f0611d17595348ea8b794c2a676703345fa8860
Author: Semi Malinen <[email protected]>
first cut at tracking usb state via usb_moded
commit 16d353105e35f7957c5918203b80600fd284c1bf
Author: Semi Malinen <[email protected]>
there is no runlevel for MALF; use RUNLEVEL_SHUTDOWN instead
commit be5b430906683e24b1c9912592f5127cc212ae97
Author: Raimo Vuonnala <[email protected]>
Allow 1 sec slippage for wakeup
commit 234213ee6c8f10ab39f145082328ea50d7c3ec19
Author: Semi Malinen <[email protected]>
use libdsme instead of hardcoding D-Bus i/f
commit 6a1dc030825b8a02955ba59a210dd703702e0e19
Author: Raimo Vuonnala <[email protected]>
- I_woke_up errorcode fix
commit 142bcba38420a8bb0210d77222e2ae7b40033061
Author: Semi Malinen <[email protected]>
remove left-overs from lifeguard
commit 629e8156a9ede28633927d60ff2d0734537bd85e
Author: Semi Malinen <[email protected]>
remove lifeguard
commit 8a6475edf8d9f5da11fb581420cc7804ca420959
Author: Raimo Vuonnala <[email protected]>
Added HBTEST
commit a6d52848a4e101aaa047c3c7b710e3c07bc37568
Author: Semi Malinen <[email protected]>
remove console debug messages
commit f2cb3abda012ade00829612b55a15bcf804b6bf1
Author: Semi Malinen <[email protected]>
update changelog
commit febde1e35d79fc5aedb3a1cc993be4acb677ef68
Author: Semi Malinen <[email protected]>
version bump
commit 3fc90f06032decbf975dda9de9d1bb0e046d0b27
Author: Semi Malinen <[email protected]>
print version number on console
commit f8a74322e9b035e398d354de042eecca1b285a21
Author: Semi Malinen <[email protected]>
also install dsme-server
commit a599483e3ccdc43f1a062f29cdc4e7923485f96e
Author: Semi Malinen <[email protected]>
fix dsme-server path
commit eeed6e4c625824ce7a0e87a761793eca6363baa1
Author: Semi Malinen <[email protected]>
do not use g_main_loop_quit() from a signal handler
commit e714647e32837d4034de18033e421dadb5aa9098
Author: Semi Malinen <[email protected]>
indent
commit 3ee13babac5ba976d5c4933f4dccfd520d865e0a
Author: Semi Malinen <[email protected]>
add a TODO note
commit 8585ddf446ade884d0f55db8e94d8a9790e763b3
Author: Semi Malinen <[email protected]>
merge the hwwd split branch to trunk
commit 6ed472e76e9a95d20761c59c8c5414f9fd1a5506
Author: Semi Malinen <[email protected]>
bump version numbers, fix libiphb install dir
commit 054d7f9112dd35140eb2a99dc0efe76bfe33a18b
Author: Tapio Rantala <[email protected]>
Attempt to clean up dependencies
commit 813a988a8c9e61feed83c88d25e376d163f57819
Author: Tapio Rantala <[email protected]>
Add Provides-statements
commit eab019346e42ac239e990002c6f083089f630a54
Author: Tapio Rantala <[email protected]>
Fixed defects found by coverity tool
commit 735a5f058e082ff63e3cf65579def48b157b6705
Author: Semi Malinen <[email protected]>
merge the iphb branch to trunk
commit 6a4f37dda651cc8a7d3da2a7b6e8147c84e466bc
Author: Semi Malinen <[email protected]>
use printf instead of echo -e for SUSv3 compatibility
commit b9f9261d80ca75ca8ac3f8d3b63fe87ce01b7afe
Author: Semi Malinen <[email protected]>
version bump
commit 6fe78b4abd197cd9a17f08d5a01e77735e76403f
Author: Semi Malinen <[email protected]>
version bump
commit 685e7e8e7e61be8b835097d2395386ea9e991566
Author: Semi Malinen <[email protected]>
re-enable thermal mgr; use 98 deg C as the fatal limit
commit e8b1a5d70900412aa5003887d89b16f05db3dd5e
Author: Semi Malinen <[email protected]>
version bump
commit 06a0549631bfbe777805b1bd92af7130ae90ef9e
Author: Semi Malinen <[email protected]>
add support for no-ext-wd
commit 703f64da71b7ac85e77e14da5b3b4f40f320d554
Author: Semi Malinen <[email protected]>
version bump
commit 1eba8a23d6f0a52c0df38da01aeb92d74239cecc
Author: Semi Malinen <[email protected]>
do not install upstart init files
commit ea577cd1b041207dc0126509e22a528577910782
Author: Semi Malinen <[email protected]>
fix a typo
commit 7a5d4e8eba0bbbc85ab19749c27f18ee889d7a1a
Author: Semi Malinen <[email protected]>
stop spamming console with LOG_CRIT messages
commit ac73fbc43c8e179e7e9e6800b189bb9b5ced0529
Author: Semi Malinen <[email protected]>
NB#149526: define _GNU_SOURCE for alarmtracker
commit dff5f55e439642dd63a29a09dff5685be64e6869
Author: Semi Malinen <[email protected]>
update build dependency to libdsme
commit d7132e972cfa3112e2efb4d01124cad1b3ff9fe4
Author: Semi Malinen <[email protected]>
version bump
commit 1880d2936db5763d8287fbffcaa5623bed1fef9e
Author: Semi Malinen <[email protected]>
update module tests
commit d2ad03d6681f4a8c32fedd887e32cb84775a68a8
Author: Semi Malinen <[email protected]>
add battery_empty_ind
commit e94271363c35dd3148caa93c83c1828876ddefc7
Author: Semi Malinen <[email protected]>
do not reboot when going to actdead
commit acc87e2d43c4a46bf57d1fa2883f00d47b3d6e96
Author: Semi Malinen <[email protected]>
version bump
commit 6ac112c73798f0bfb2edcac02e62878b464626a6
Author: Semi Malinen <[email protected]>
temporarily drop libbmeipc-dev from build dependencies
commit 45b9663bca8fbe7a1bbc07504f895e1d1b3a746c
Author: Semi Malinen <[email protected]>
disable battery thermal management for Harmattan development
commit 7b1971319fcde58344e106b53f1dc0a39140526b
Author: Semi Malinen <[email protected]>
version bump
commit 08016f40111347fe134535e17cea5c43319f1045
Author: Semi Malinen <[email protected]>
NB#144351: send alarm state in addition to normal state query response
commit 2fc9519cc7e243003a13d18ec264c437a03ed81e
Author: Semi Malinen <[email protected]>
NB#144351: reflect alarm queue changes to dsmesock clients
commit 259f499a13c0d263e730f0f99c51b05a735cb3f5
Author: Semi Malinen <[email protected]>
version bump
commit aa903e80816859675bb42fca51a4d59e7823718b
Author: Semi Malinen <[email protected]>
NB#144351: broadcast alarm state message
commit 5b0a2c85ca34ad61e86851ca96e865280932747e
Author: Semi Malinen <[email protected]>
version bump
commit 64a0241035fba376176a646c39685a2a3575b3c7
Author: Semi Malinen <[email protected]>
version bump
commit 5ce12a8464863baa3a096abb05383dd0b3b47fe3
Author: Semi Malinen <[email protected]>
revert partial fix to NB#138594 to make sales release with fix to NB#142959 only
commit 8c720c3c7d509e0cc931f6872a89998fc6d984e8
Author: Semi Malinen <[email protected]>
version bump
commit e20839fb5880d36495eccfdd420b14606009ebe0
Author: Semi Malinen <[email protected]>
reflect THERMAL_SHUTDOWN_IND removal in module tests
commit 8b84f348c1b5e8a0cb6c6277edb0dce2351bee12
Author: Semi Malinen <[email protected]>
NB#142959: do not send THERMAL_SHUTDOWN_IND
commit 3330dbfffcaaa99b806d0260d3e48611a682e6a0
Author: Semi Malinen <[email protected]>
update state module tests
commit 15644792acc6b706b1f26a05e402ae0f23f2a8d2
Author: Semi Malinen <[email protected]>
NB#138594: do not accept new lifeguard clients during reboot/shutdown
commit a64b45944cd60a9a498a411ef5445f3db0933749
Author: Semi Malinen <[email protected]>
minor edit: use bool for a boolean
commit 91f259a63e7afcfaf0795f775f441c61f8e665a3
Author: Semi Malinen <[email protected]>
minor edit: indent
commit 7bccd930fac415ea5ab3cd60eb7ed68cfa4a8045
Author: Semi Malinen <[email protected]>
minor edit: only get ucred if needed
commit f3fa61fa52ca58862fca5ad423b2a68b67c1b558
Author: Semi Malinen <[email protected]>
add _GNU_SOURCE to dsmetool.c
commit 887f762b3b61700fa282ddd5400e570f09d75b9c
Author: Semi Malinen <[email protected]>
fix changelog
commit c12d355beda015e9433d5fe8f831f5b8e872737f
Author: Semi Malinen <[email protected]>
bump version
commit 918c605c16f77d02b2925cc7c39b8bd3cb879719
Author: Semi Malinen <[email protected]>
Stop lifeguarding during a reboot/shutdown
commit 46369c753af8ad8068eb978558bf6d2aecd524da
Author: Semi Malinen <[email protected]>
bump version
commit 224f5bce8c3c2cf4d6efbf5f217efd16ae3474c0
Author: Semi Malinen <[email protected]>
remove dsmetool-session
commit 223d2700566ea7b042d87ad90219cd66ee209d7a
Author: Semi Malinen <[email protected]>
fix the changelog
commit d931b8b2eae3e11c04f6133d18e9063d00631ad3
Author: Semi Malinen <[email protected]>
version bump
commit ba1edafa4917c76d856a3bc88868c6e8f4f224c8
Author: Semi Malinen <[email protected]>
NB#132619: Split libdsme into a separate source package
commit e3dbebf9b5191a0d1885d3d45b393bc9bb8d5a34
Author: Semi Malinen <[email protected]>
Fixes: NB#127507: partial fix: retry write() to wd device in case of EAGAIN
commit c4ed0659145153aec80103837078e2d549cc0eb7
Author: Semi Malinen <[email protected]>
update todo list
commit 0d2268af3784c603ddb5185a14c264bdab32d04e
Author: Semi Malinen <[email protected]>
put back the 2s delay before shutdown/reboot (NB#127466 was de-prioritized)
commit d741baf4e26a852000088c94f99938dbe543d52d
Author: Semi Malinen <[email protected]>
version bump
commit f24943c24b6cd0a96677e884aa6a076bb69abc00
Author: Semi Malinen <[email protected]>
NB#127466: remove the 2s delay before shutdown/reboot
commit d7b2d25a02ba05078b8d9a23653594b9b830f7d0
Author: Semi Malinen <[email protected]>
do not interrupt thermal shutdown sequence even if the temps come down
commit fa8102d9a13c81ea4150460309086e6f28fd58ee
Author: Semi Malinen <[email protected]>
fix the changelog
commit 54c1da6cca3e55dc2e6e33178d27c15eaa05a443
Author: Semi Malinen <[email protected]>
version bump
commit 8ab10d9e0f3a2f3a8d0df09eac6d33f2b11b9ff7
Author: Semi Malinen <[email protected]>
NB#127507: merge changes from the hwwd_high_prio_thread branch
commit 232f8f4507ede2f0751db386b6ab44cab7df0ba0
Author: Semi Malinen <[email protected]>
protect from OOM killer before spawning threads
commit 361cf1cd9ca50a399931d888ad1a764264dbf05c
Author: Semi Malinen <[email protected]>
NB#127507: call g_thread_init() to set up GLib for multi-threading
commit 49571f02b169c979e953755eeeaec03de9586c84
Author: Semi Malinen <[email protected]>
version bump
commit 37cf385b96b1354555b01e909f3902f9db6f63bf
Author: Semi Malinen <[email protected]>
use -pthread for .so's as well
commit 4679bac63d51dcf02d3207e925da40a7efed6482
Author: Semi Malinen <[email protected]>
use the proper logging method from the logger thread
commit 8df80cc16c2e44cf55cff334f4000ad9ff6d2d3e
Author: Semi Malinen <[email protected]>
add the missing -pthread flag
commit 53b5acefc78407bdc045f6ea0051774e002dc65c
Author: Semi Malinen <[email protected]>
lower scheduling priority of child immediately after fork
commit 5d6bdba638e0655c39984a6af8cb308089f12355
Author: Semi Malinen <[email protected]>
minor edit: remove unnecessary logging
commit 2439acc303ce8ea3331debaa090114f8f5d21076
Author: Semi Malinen <[email protected]>
install dsme-exec-helper to /sbin/
commit e3d6b83a49e57c1368e89c20c5bfd346154cca63
Author: Semi Malinen <[email protected]>
NB#127507: first cut at providing dsme-exec-helper
commit e067ec852198ca5f3f81e237c60c05438df249d4
Author: Semi Malinen <[email protected]>
log if hwwd kicking happens more than 100 ms later than anticipated
commit 657ac201b260424e0de2056f687d1e053b3f3f56
Author: Semi Malinen <[email protected]>
NB#127507: do not try to fopen() thermal tuning file unless in TA test
commit 307172eaf120e0f6a3a71a91c16f899cf3836888
Author: Semi Malinen <[email protected]>
NB#127507: off-load alarm queue status saving to the logger thread
commit 999f4a29d74098b654d854dcd0cb7c04deafbc33
Author: Semi Malinen <[email protected]>
version bump
commit ed8ee145aef64521827b2d7db26f7f0d483733bb
Author: Semi Malinen <[email protected]>
log ping counts
commit 2dbfb77b9b39d72401f5cf6d93b79921374db66f
Author: Semi Malinen <[email protected]>
fflush() before fork(); use _exit() in child
commit 1e5175a8d50c7cacd4db64f1bcb99a281f5987ac
Author: Semi Malinen <[email protected]>
NB#127507: replace g_spawn_async() with fork'n'exec() to unblock parent
commit 6c2ff70d98f2e10710f22e3ff7dcbb0349808ee5
Author: Semi Malinen <[email protected]>
minor edit: increase logging verbosity when exiting dsme
commit 7d3c015601c23dc2d9ba19b7a1e1eb830e76dab6
Author: Semi Malinen <[email protected]>
NB#127507: remove logging and related calls from setup_child()
commit 1147eff0c7cb78275d228ecf63ea4aad115c7f4e
Author: Semi Malinen <[email protected]>
remove all child watches when unloading lifeguard
commit 7a9f763ccc8b129ca3c7648fc117c288755fe137
Author: Semi Malinen <[email protected]>
minor edit: fix a typo
commit 20f7734dec1c959386bcb13535f40a5fd9fdd260
Author: Semi Malinen <[email protected]>
minor edit: use the correct state for checking reboot request acceptability
commit 108f458904a8a1939db62f81ecf6dfe434b43d16
Author: Semi Malinen <[email protected]>
do not try to load usbtracker module
commit 52a3a5608d126f5c25e56229a1a2240308eac6d7
Author: Semi Malinen <[email protected]>
introduce USB mass storage mode detection
commit 4e7e5347d009fcd27c5bdc11722f9224e8a6802c
Author: Semi Malinen <[email protected]>
remove USB tracker module
commit 4012394b9fa03b976fd33d2913b573617ea5d3e5
Author: Semi Malinen <[email protected]>
fix erroneous dsme_log calls
commit f4dd4c248a2c4f9f1e941a83345f655e9427263a
Author: Semi Malinen <[email protected]>
improve logging
commit a905ff0b073c6e6b550fefa066e8eb9e16649f60
Author: Semi Malinen <[email protected]>
spawn_proc: use _exit in the child branch of the fork
commit 542cbc4c4d59638d9399a0a7825948cebf6a7c4c
Author: Semi Malinen <[email protected]>
version bump
commit d147d5118f17b18995f2f2ecc52e9464b7dbb7d0
Author: Semi Malinen <[email protected]>
NB#123145: only prevent shutdown/reboot in USER mode
commit 9879037198b923f58f8bc2123954ea03b8c1bf42
Author: Semi Malinen <[email protected]>
update changelog
commit f513beeb367c48cb7b0504efa959c70e966b9368
Author: Semi Malinen <[email protected]>
fix a memory leak
commit 57d381203cff514a988800438d4cdf4eb69a96db
Author: Simo Piiroinen <[email protected]>
- updating lifeguard statistics files is moved