-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1977 lines (1531 loc) · 78.1 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
# ChangeLog for gentoo-vdr-scripts
*gentoo-vdr-scripts-3.0_rc2 (12 Feb 2022)
- systemd: reload systemd after modification of EnvironmentFile
- add config file for virtual/tmpfiles tool
- change hardcoded static vdr homedir to dynamically looked-up vdr homedir
taken from system
- change in Makefile: remove directory var/lib/vdr/tmp, let install create
it
- removed deprecated logger output for
new svdrp port
- moved vdr homedir /var/vdr -> /var/lib/vdr
nedded for new acct/{user,group} handling
- moved path in all files from /var/vdr -> /var/lib/vdr
*gentoo-vdr-scripts-3.0_rc1 (11 Jan 2020)
- removed rtc-wakeup, anounced in privius version
Suggested-by: Lucian Muresan <[email protected]>
- fixed path to functions.sh
rather depend on sys-apps/gentoo-functions than relaying on the
existence of openrc
Suggested-by: Lucian Muresan <[email protected]>
- added support for the DISPLAY=:0.0 environment variable
(needed for media-plugins/vdr-softhddevice supporting OpenGL OSD)
Suggested-by: Lucian Muresan <[email protected]>
- whitespace, removed useless Id lines, fixed initsrcipt header to
Gentoo Authors
*gentoo-vdr-scripts-2.8 (15 Dec 2019)
SYMLINK_LIB=no / 17.1 profiles wrt bug #688174
support for Baselayout 1 removed, this will fix wrt bug #646518
shuts the vdr down even if nvram-wakup fails, fix wrt bug #298785
white space cleanup
*gentoo-vdr-scripts-2.7.5.1 (12 Jun 2016)
12 Jun 2016; Joerg Bornkessel <[email protected]>
usr/share/vdr/inc/plugin-functions.sh:
rewritten plugin_dir detection, as the old test failed under arch arm64;
thanks to Thomas Reufer to point this out
*gentoo-vdr-scripts-2.7.5 (01 May 2016)
*gentoo-vdr-scripts-2.7.4 (01 May 2016)
01 May 2016; Joerg Bornkessel <[email protected]>
usr/share/vdr/rcscript/pre-start-30-parameter.sh, etc/init.d/vdr,
etc/init.d/vdr-x11, etc/init.d/wakeup-reboot-halt:
typo; fixed init scripts to use openrc-run
01 May 2016; Joerg Bornkessel <[email protected]>
usr/share/vdr/rcscript/pre-start-30-parameter.sh, etc/conf.d/vdr:
added ionice support to vdr initscript, suggested by T.Loescher
*gentoo-vdr-scripts-2.7.3 (08 May 2015)
08 May 2015; Joerg Bornkessel <[email protected]>
usr/share/vdr/shutdown/pre-shutdown-05-time-calculations.sh,
usr/share/vdr/rcscript/pre-start-45-locales.sh,
usr/share/vdr/shutdown/pre-shutdown-90-systohc.sh, Makefile, README.grub2,
README.shutdown-jobs, README.systemd, README.vdrcaps, etc/Makefile,
etc/conf.d/Makefile, etc/init.d/Makefile, etc/init.d/vdr-x11,
etc/sudoers.d/Makefile, etc/systemd/system/vdr.service.d/Makefile,
etc/vdr/Makefile, etc/vdr/commands/Makefile, etc/vdr/reccmds/Makefile,
usr/Makefile, usr/sbin/Makefile, usr/sbin/rtc-wakeup.sh,
usr/share/portage/config/sets/Makefile, usr/share/vdr/Makefile,
usr/share/vdr/bin/Makefile, usr/share/vdr/dvdchanger/Makefile,
usr/share/vdr/dvdchanger/dvdchanger_readdvd.sh,
usr/share/vdr/dvdchanger/dvdchanger_writedvd.sh, usr/share/vdr/inc/Makefile,
usr/share/vdr/inc/commands-functions.sh, usr/share/vdr/inc/rc-functions.sh,
usr/share/vdr/rcscript/Makefile, usr/share/vdr/record/Makefile,
usr/share/vdr/shutdown/Makefile, usr/share/vdr/shutdown/wakeup-none.sh,
usr/share/vdr/shutdown/wakeup-rtc.sh, usr/share/vdr/systemd/Makefile,
var/vdr/tmp/Makefile, vdrplugin-rebuild/Makefile,
vdrplugin-rebuild/vdrplugin-rebuild:
whitespace; moved 'source' to '.' to be POSIX compliant, wrt bug 548550;
add Id tags for better versioning info
*gentoo-vdr-scripts-2.7.1 (02 Mar 2015)
02 Mar 2015; Joerg Bornkessel <[email protected]> etc/init.d/vdr,
etc/init.d/vdr-x11:
update lizense info
02 Mar 2015; Joerg Bornkessel <[email protected]>
usr/share/vdr/bin/vdrrecord-gate.sh, usr/share/vdr/bin/vdrshutdown-gate.sh:
moved include call to later point
*gentoo-vdr-scripts-2.7 (18 Feb 2015)
13 Feb 2015; Joerg Bornkessel <[email protected]>
usr/share/vdr/rcscript/pre-start-30-parameter.sh,
usr/share/vdr/rcscript/pre-start-50-shutdown.sh, +COPYING,
etc/systemd/system/vdr.service.d/00-gentoo-vdr-user.conf,
usr/share/vdr/shutdown/wakeup-rtc.sh,
usr/share/vdr/systemd/vdr-systemd_helper.sh:
code review; typos; blank lines; COPYING added
11 Feb 2015; Joerg Bornkessel <[email protected]>
usr/share/vdr/rcscript/pre-start-30-parameter.sh,
usr/share/vdr/rcscript/post-start-50-svdrp.sh:
cleanup; adde handling new command line --chartab
*gentoo-vdr-scripts-2.6 (06 Feb 2015)
05 Feb 2015; Joerg Bornkessel <[email protected]> +README.x11-setup,
etc/init.d/Makefile, +etc/init.d/vdr-frontend, +etc/init.d/vdr-x11:
start x11 init script support
05 Feb 2015; Joerg Bornkessel <[email protected]>
usr/share/portage/config/sets/vdr.conf:
wrong inherit in @vdr-plugin-rebuild fixed, thx to M.Dummer
*gentoo-vdr-scripts-2.5 (01 Jan 2015)
01 Jan 2015; Joerg Bornkessel <[email protected]>
usr/share/vdr/rcscript/pre-start-45-locales.sh,
usr/share/vdr/systemd/vdr-systemd_helper.sh:
fixed LANG handling, some cleanups for baselayout1; fixed fails to set locale
on systemd, thx to D.Ferdinand for reporting and some hints how to fix it,
wrt bug #530690
27 Nov 2014; Joerg Bornkessel <[email protected]> README, README.systemd,
etc/conf.d/vdr, etc/systemd/system/vdr.service.d/00-gentoo-vdr-user.conf:
systemd readme, written by L.Muresan; added L.Muresan as maintainer for
systemd support
27 Nov 2014; Joerg Bornkessel <[email protected]> etc/init.d/vdr:
wrt bug 530828, services misusing 'need net'
*gentoo-vdr-scripts-2.5_rc4 (22 Oct 2014)
*gentoo-vdr-scripts-2.5_rc4 (22 Oct 2014)
*gentoo-vdr-scripts-2.5_rc3 (21 Oct 2014)
21 Oct 2014; Joerg Bornkessel <[email protected]>
usr/lib/systemd/system/vdr.service:
fixed typo, reported by L.Muresan
*gentoo-vdr-scripts-2.5_rc2 (18 Oct 2014)
18 Oct 2014; Joerg Bornkessel <[email protected]> etc/conf.d/vdr,
etc/systemd/system/vdr.service.d/00-gentoo-vdr-user.conf,
usr/lib/systemd/system/vdr.service,
usr/share/vdr/systemd/vdr-systemd_helper.sh, var/vdr/tmp/Makefile,
-var/vdr/tmp/plugins_skipped_ALL:
reverted changes for vdrplugin-rebuild -s paramater; fixed systemd support
wrt bug 353492#33 ff, thx to L.Muresan
01 Oct 2014; Joerg Bornkessel <[email protected]> var/vdr/tmp/Makefile,
+var/vdr/tmp/plugins_skipped_ALL, vdrplugin-rebuild/vdrplugin-rebuild:
added --keep-going to vdrplugin-rebuild; added empty file plugins_skipped_ALL
to fix the fail on vdrplugin-rebuild -s parameter; bump to
vdrplugin-rebuild-0.5
*gentoo-vdr-scripts-2.5_rc1 (23 Sep 2014)
11 Jul 2014; Joerg Bornkessel <[email protected]>
usr/share/vdr/rcscript/pre-start-30-parameter.sh:
create cachedir on the fly, wrt bug 4994444
14 Apr 2014; Joerg Bornkessel <[email protected]>
vdrplugin-rebuild/vdrplugin-rebuild:
fixed 'portageq portdir' deprecated warning
15 Feb 2014; Joerg Bornkessel <[email protected]> Makefile,
etc/systemd/system/vdr.service.d/00-gentoo-vdr-user.conf,
usr/lib/systemd/system/vdr.service,
usr/share/vdr/systemd/vdr-systemd_helper.sh:
some fixes, reported by M.Perrudin (comment 28, #353492)
26 Jan 2014; Joerg Bornkessel <[email protected]> Makefile,
usr/lib/systemd/system/vdr.service,
usr/share/vdr/systemd/vdr-systemd_helper.sh:
user vdr/root for vdr systemd will read now from script set,
etc/systemd/system/vdr.service.d/* is obsolet
20 Jan 2014; Joerg Bornkessel <[email protected]>
usr/lib/systemd/system/vdr.service:
some changes again
20 Jan 2014; Joerg Bornkessel <[email protected]> Makefile,
usr/share/vdr/Makefile:
something goes wrong with last commit, again
20 Jan 2014; Joerg Bornkessel <[email protected]>
+usr/share/vdr/systemd/Makefile,
+usr/share/vdr/systemd/vdr-systemd_helper.sh,
-usr/share/vdr/bin/vdr-systemd_helper.sh, Makefile,
usr/lib/systemd/system/vdr.service, usr/share/vdr/Makefile:
moved systemd helper scripts in its own/new dir
19 Jan 2014; Joerg Bornkessel <[email protected]> Makefile:
systemd default disabled
19 Jan 2014; Joerg Bornkessel <[email protected]> Makefile,
usr/lib/systemd/system/Makefile:
typo
19 Jan 2014; Joerg Bornkessel <[email protected]> +README.systemd,
+etc/systemd/system/vdr.service.d/00-gentoo-vdr-user.conf,
+etc/systemd/system/vdr.service.d/Makefile, +usr/lib/systemd/system/Makefile,
+var/vdr/tmp/Makefile, +var/vdr/tmp/systemd_env, Makefile, README,
README.grub2, README.shutdown-jobs, README.vdrcaps, TODO:
added Makefiles for systemd relevanted files; systemd handling in main
Makefile added
19 Jan 2014; Joerg Bornkessel <[email protected]>
+usr/lib/systemd/system/vdr.service,
+usr/share/vdr/bin/vdr-systemd_helper.sh:
added systemd service file, systemd helper script
06 Jan 2014; Joerg Bornkessel <[email protected]>
usr/share/vdr/rcscript/pre-start-50-shutdown.sh:
removed useless/unusable sudoers check, reported by Lucian Muresan
*gentoo-vdr-scripts-2.0.0 (30 Mar 2013)
30 Mar 2013; Joerg Bornkessel <[email protected]> +README.grub2, README,
etc/conf.d/vdr:
more cleanups, added example README.grub2 with example how to use grub2
syntax
30 Mar 2013; Joerg Bornkessel <[email protected]>
usr/share/vdr/shutdown/pre-shutdown-05-time-calculations.sh, README.vdrcaps,
etc/conf.d/vdr, usr/share/vdr/bin/vdr-bg.sh,
usr/share/vdr/bin/vdrrecord-gate.sh, usr/share/vdr/bin/vdrshutdown-gate.sh,
usr/share/vdr/bin/vdrshutdown-periodic-thread.sh,
usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
cleanup from old code, depended for "old" vdr versions
*gentoo-vdr-scripts-2.0.0_rc2 (16 Mar 2013)
15 Mar 2013; Joerg Bornkessel <[email protected]>
usr/share/vdr/rcscript/pre-start-30-parameter.sh, bump.sh, etc/conf.d/vdr:
better default handling for value EPGFILE, thx to [email protected] on
#post 1132342
*gentoo-vdr-scripts-2.0.0_rc1 (26 Jan 2013)
26 Jan 2013; Joerg Bornkessel <[email protected]>
usr/share/vdr/rcscript/pre-start-30-parameter.sh,
usr/share/vdr/rcscript/post-start-50-svdrp.sh, etc/conf.d/vdr:
added --cachedir to support the new vdr FHS handling,
removed support for svdrp 2001 port,
removed --rcu support, use media-plugins/vdr-rcu
*gentoo-vdr-scripts-0.5.3 (07 Oct 2012)
07 Oct 2012; Joerg Bornkessel <[email protected]> etc/conf.d/vdr.shutdown,
usr/share/vdr/shutdown/shutdown-reboot.sh:
grub2 support added
29 Apr 2012; Joerg Bornkessel <[email protected]>
vdrplugin-rebuild/vdrplugin-rebuild:
changed parameter for paludis, fix trigger for full systemupdate
31 Mar 2012; Joerg Bornkessel <[email protected]>
usr/share/vdr/rcscript/pre-start-50-shutdown.sh, etc/conf.d/vdr.shutdown,
usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
wakup method acpi is depricated since kernel 2.6.39, use rtc or nvram
instead, added a warning message/logger for using acpi wakeup method
*gentoo-vdr-scripts-0.5.2 (14 Mar 2012)
06 Mar 2012; Joerg Bornkessel <[email protected]> etc/init.d/vdr:
svdrp_command function now included
05 Mar 2012; Joerg Bornkessel <[email protected]>
usr/share/vdr/rcscript/pre-start-30-parameter.sh:
fixed --rcu handling, used from >=media-video/vdr-1.7.25 in plugin
media-video/vdr-rcu
*gentoo-vdr-scripts-0.5.1 (24 Feb 2012)
24 Feb 2012; Joerg Bornkessel <[email protected]> bump.sh, etc/init.d/vdr:
last changes for svdrpsend/svdrpsend.pl handling
*gentoo-vdr-scripts-0.5.0 (24 Feb 2012)
23 Feb 2012; Joerg Bornkessel <[email protected]>
usr/share/vdr/rcscript/pre-start-50-shutdown.sh:
move to new sudo handling, /etc/sudoers entry is depricated
22 Feb 2012; Joerg Bornkessel <[email protected]>
+usr/share/portage/config/sets/Makefile, usr/Makefile:
install fix for #bug 331453
22 Feb 2012; Joerg Bornkessel <[email protected]> +etc/sudoers.d/Makefile:
another makefile for new sudoers handling
21 Feb 2012; Joerg Bornkessel <[email protected]> +etc/sudoers.d/vdr,
etc/Makefile:
some adds for new sudoers handling
*gentoo-vdr-scripts-0.5.0_rc2 (20 Feb 2012)
20 Feb 2012; Joerg Bornkessel <[email protected]>
usr/share/vdr/rcscript/post-start-50-svdrp.sh:
typo fixed
*gentoo-vdr-scripts-0.5.0_rc1 (19 Feb 2012)
17 Feb 2012; Joerg Bornkessel <[email protected]>
usr/share/vdr/rcscript/post-start-05-plugins.sh,
usr/share/vdr/shutdown/pre-shutdown-05-time-calculations.sh,
usr/share/vdr/rcscript/pre-start-10-chuid.sh,
usr/share/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh,
usr/share/vdr/rcscript/pre-start-20-dvb-device.sh,
usr/share/vdr/rcscript/watchdog-restart-20-modules.sh,
usr/share/vdr/shutdown/pre-shutdown-40-time.sh,
usr/share/vdr/rcscript/pre-start-45-locales.sh,
usr/share/vdr/rcscript/pre-start-45-nptl-check.sh,
usr/share/vdr/shutdown/periodic-50-epgscan.sh,
usr/share/vdr/rcscript/pre-start-50-shutdown.sh,
usr/share/vdr/rcscript/post-start-50-svdrp.sh,
usr/share/vdr/rcscript/post-start-60-check-syslog-errors.sh,
usr/share/vdr/rcscript/pre-start-60-check-syslog-errors.sh,
usr/share/vdr/rcscript/pre-start-98-wait-conditions.sh,
usr/share/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
usr/sbin/acpi-wakeup.sh, usr/sbin/dvb-reload-modules, usr/sbin/rtc-wakeup.sh,
usr/sbin/vdr-get-header-checksum, usr/sbin/vdr-watchdogd,
usr/share/vdr/bin/vdrrecord-gate.sh, usr/share/vdr/bin/vdrshutdown-gate.sh,
usr/share/vdr/bin/vdrshutdown-periodic-thread.sh,
usr/share/vdr/bin/vdrshutdown-really.sh,
usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh,
usr/share/vdr/dvdchanger/dvdchanger_readdvd.sh,
usr/share/vdr/dvdchanger/dvdchanger_writedvd.sh,
usr/share/vdr/inc/commands-functions.sh, usr/share/vdr/inc/functions.sh,
usr/share/vdr/inc/rc-functions.sh, usr/share/vdr/inc/svdrpcmd.sh,
usr/share/vdr/inc/time.sh:
Qouting, whitespace, minor fixes
17 Feb 2012; Joerg Bornkessel <[email protected]>
usr/share/vdr/shutdown/periodic-50-epgscan.sh,
usr/share/vdr/rcscript/post-start-50-svdrp.sh,
+usr/share/vdr/inc/svdrpcmd.sh, usr/share/vdr/bin/vdrrecord-gate.sh,
usr/share/vdr/bin/vdrshutdown-gate.sh,
usr/share/vdr/bin/vdrshutdown-periodic-thread.sh,
usr/share/vdr/bin/vdrshutdown-really.sh,
usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh,
usr/share/vdr/dvdchanger/dvdchanger_readdvd.sh,
usr/share/vdr/dvdchanger/dvdchanger_writedvd.sh:
svdrpsend.pl/svdrpsend detection, command will works now with all vdr
versions
*gentoo-vdr-scripts-0.4.10.1 (13 Feb 2012)
13 Feb 2012; Joerg Bornkessel <[email protected]> ChangeLog:
moved now alls svdrpsend.pl to svdrpsend
12 Feb 2012; Joerg Bornkessel <[email protected]>
+usr/share/vdr/shutdown/shutdown-custom_cmd.sh,
-usr/share/vdr/bin/shutdown-custom_cmd.sh:
moved shutdown-custom script in the right dir
*gentoo-vdr-scripts-0.4.10 (08 Feb 2012)
08 Feb 2012; Joerg Bornkessel <[email protected]>
+usr/share/vdr/bin/shutdown-custom_cmd.sh, etc/conf.d/vdr.shutdown,
etc/init.d/vdr, usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
moved svdrpsend.pl to svdrpsend command, used from vdr-1.7.23
08 Feb 2012; Joerg Bornkessel <[email protected]>
+usr/share/vdr/bin/shutdown-custom_cmd.sh, etc/conf.d/vdr.shutdown,
etc/init.d/vdr, usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
add custom shutdown command, bug 389371
07 Feb 2012; Joerg Bornkessel <[email protected]> ChangeLog:
added paludis/cave support to vdrplugin-rebuild script, bug 394251
*gentoo-vdr-scripts-0.4.9 (09 Oct 2011)
09 Oct 2011; Joerg Bornkessel <[email protected]> etc/conf.d/vdr,
etc/init.d/vdr, etc/init.d/wakeup-reboot-halt:
fix for depricated opts warning in newer openrc
*gentoo-vdr-scripts-0.4.8 (25 Jan 2011)
24 Jan 2011; Joerg Bornkessel <[email protected]>
+usr/share/portage/config/sets/vdr.conf:
merged vdr-plugin-rebuild set for Portage-2.2; bug #331453
18 Dec 2010; Matthias Schwarzott <[email protected]> etc/conf.d/vdr.shutdown:
Improve description of SHUTDOWN_SYSTOHC
*gentoo-vdr-scripts-0.4.8_rc2 (07 Dec 2010)
*gentoo-vdr-scripts-0.4.8_rc1 (05 Dec 2010)
14 Nov 2010; Matthias Schwarzott <[email protected]>
usr/share/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
usr/share/vdr/bin/vdrshutdown-really.sh, usr/share/vdr/inc/functions.sh:
Improve error handling of reading files with timestamps.
06 Sep 2010; Joerg Bornkessel <[email protected]>
usr/share/vdr/rcscript/pre-start-30-parameter.sh,
usr/share/vdr/rcscript/post-start-50-svdrp.sh, etc/conf.d/vdr,
usr/share/vdr/inc/rc-functions.sh:
fix syntax error
*gentoo-vdr-scripts-0.4.7 (05 Sep 2010)
23 Feb 2010; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-45-nptl-check.sh, etc/conf.d/vdr:
Change default of FORCE_OLD_THREADS to no. Suggested by chub in
#gentoo-vdr.
17 Nov 2009; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-30-parameter.sh, etc/init.d/vdr:
Use new lirc socket path if it exists. Now depend on virtual service lirc
to be able to use different lirc daemons.
*gentoo-vdr-scripts-0.4.6 (31 Jan 2009)
31 Jan 2009; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
Simplify marking system for reboot. No longer calc timestamps. This will
work regardless of timezone settings. Tested by ploto from vdr-portal.de
*gentoo-vdr-scripts-0.4.5 (28 Aug 2008)
*gentoo-vdr-scripts-0.4.5_rc2 (14 Aug 2008)
07 Aug 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-really.sh:
Remove svdrp queue as we are already forked to background.
07 Aug 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-really.sh,
usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
Simplify checking for needed reboot.
*gentoo-vdr-scripts-0.4.5_rc1 (02 Aug 2008)
*gentoo-vdr-scripts-0.4.5_pre3 (31 Jul 2008)
31 Jul 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-really.sh,
usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
Fix shutdown not working.
*gentoo-vdr-scripts-0.4.5_pre2 (30 Jul 2008)
30 Jul 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-really.sh,
usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
Add full path to wakeup-helper.
30 Jul 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-really.sh:
Fixed wakeup times did not work, fix it. Thanks to berti for noticing.
30 Jul 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
Simplify shutdown code a bit.
30 Jul 2008; Matthias Schwarzott <[email protected]>
+usr/share/vdr/bin/vdrshutdown-gate.sh,
usr/share/vdr/bin/vdrshutdown-really.sh,
usr/share/vdr/bin/vdrshutdown-wakeup-helper.sh:
Add nnew mini-script to call the new root-parts of shutdown.
30 Jul 2008; Matthias Schwarzott <[email protected]> ++,
-usr/share/vdr/bin/vdrshutdown-gate.sh:
Move old user-part of shutdown to sudo entry point.
30 Jul 2008; Matthias Schwarzott <[email protected]> ++,
-usr/share/vdr/bin/vdrshutdown-really.sh:
Moved old root-part of shutdown to temp name.
30 Jul 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-45-locales.sh:
Check locale setup as does all users of it, checking LC_ALL LC_CTYPE LANG.
Improved log output of locale setup.
29 Jul 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-45-locales.sh:
Tried to improve messages of locale handling code. Removed LC_MESSAGES=C
setting.
29 Jul 2008; Matthias Schwarzott <[email protected]>
-usr/share/vdr/rcscript/pre-start-45-utf8-check.sh, ++:
Renamed file that handles locales to reflect that.
*gentoo-vdr-scripts-0.4.5_pre1 (07 Jul 2008)
06 Jul 2008; Matthias Schwarzott <[email protected]> etc/init.d/vdr:
Try to handle signals in init-script better. Make sure that vdr does not
run if init-script gets killed, and at end of stop.
06 Jul 2008; Matthias Schwarzott <[email protected]> etc/init.d/vdr,
usr/sbin/vdr-watchdogd:
Changed message about died vdr process.
06 Jul 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/post-start-50-svdrp.sh,
usr/share/vdr/rcscript/post-start-60-check-syslog-errors.sh,
usr/share/vdr/rcscript/pre-start-60-check-syslog-errors.sh,
etc/conf.d/vdr, etc/init.d/vdr, usr/share/vdr/inc/rc-functions.sh:
Run post-start addons also when vdr did not start. This will print syslog
output then. Add config-setting to disable syslog parsing.
06 Jul 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-20-dvb-device.sh,
usr/share/vdr/rcscript/pre-start-40-config-files.sh,
usr/share/vdr/rcscript/post-start-50-svdrp.sh, etc/conf.d/vdr,
usr/share/vdr/inc/rc-functions.sh:
Simplified waitfor function. Renamed DEVICE_CHECK to DVB_DEVICE_WAIT. Make
timeout non-fatal.
06 Jul 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-really.sh,
usr/share/vdr/inc/plugin-functions.sh, usr/share/vdr/inc/rc-functions.sh,
usr/share/vdr/inc/shutdown-functions.sh,
vdrplugin-rebuild/vdrplugin-rebuild:
Do not use header-path hardcoded in commands.
06 Jul 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-10-chuid.sh, etc/conf.d/vdr:
Add possibility to enable --userdump.
06 Jul 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/inc/plugin-functions.sh:
Rename variable.
06 Jul 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/shutdown/pre-shutdown-05-time-calculations.sh,
usr/share/vdr/shutdown/pre-shutdown-10-check-enabled.sh,
usr/share/vdr/rcscript/pre-start-10-chuid.sh,
usr/share/vdr/rcscript/pre-start-20-dvb-device.sh,
usr/share/vdr/rcscript/watchdog-restart-20-modules.sh,
usr/share/vdr/shutdown/pre-shutdown-30-check-logins.sh,
usr/share/vdr/rcscript/pre-start-30-parameter.sh,
usr/share/vdr/rcscript/pre-start-45-nptl-check.sh,
usr/share/vdr/shutdown/periodic-50-epgscan.sh,
usr/share/vdr/rcscript/pre-start-50-shutdown.sh,
usr/share/vdr/shutdown/pre-shutdown-99-periodic-thread.sh, etc/conf.d/vdr,
etc/init.d/vdr, usr/share/vdr/bin/vdrshutdown-gate.sh,
usr/share/vdr/inc/functions.sh, usr/share/vdr/inc/plugin-functions.sh,
usr/share/vdr/inc/rc-functions.sh,
usr/share/vdr/inc/shutdown-functions.sh,
usr/share/vdr/shutdown/wakeup-none.sh:
Use yesno from openrc, but provide replacement for older baselayout.
04 Jul 2008; Matthias Schwarzott <[email protected]>
vdrplugin-rebuild/vdrplugin-rebuild:
Add hack to use an existing checksum file if plugin-name != ebuild-name.
04 Jul 2008; Matthias Schwarzott <[email protected]>
vdrplugin-rebuild/vdrplugin-rebuild:
Let vdrplugin-rebuild match all plugins installed by an ebuild.
04 Jul 2008; Matthias Schwarzott <[email protected]> etc/conf.d/vdr,
usr/share/vdr/inc/plugin-functions.sh:
Add setting to disable patchlevel check.
03 Jul 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-10-chuid.sh, etc/conf.d/vdr:
Add config-setting to disable usage of the vdr -u option.
29 Jun 2008; Matthias Schwarzott <[email protected]>
etc/conf.d/vdr.shutdown, usr/share/vdr/bin/vdrshutdown-gate.sh,
usr/share/vdr/bin/vdrshutdown-really.sh:
Remove 'Shutdown is retried soon' message. Reduce DRY_SHUTDOWN to one
single point.
24 Jun 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-98-wait-conditions.sh:
Fix typo.
21 Jun 2008; Matthias Schwarzott <[email protected]>
vdrplugin-rebuild/vdrplugin-rebuild:
Do not print ignored plugins.
21 Jun 2008; Matthias Schwarzott <[email protected]>
vdrplugin-rebuild/vdrplugin-rebuild:
Added option to only rebuild packages that have a different header
checksum than current vdr.
21 Jun 2008; Matthias Schwarzott <[email protected]> etc/init.d/vdr:
Moved clearing of logfile to better place right at start.
21 Jun 2008; Matthias Schwarzott <[email protected]> usr/sbin/Makefile,
+usr/sbin/vdr-get-header-checksum, usr/share/vdr/inc/plugin-functions.sh:
Factored out checksum creation to extra executable.
19 Jun 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/watchdog-restart-20-modules.sh,
usr/sbin/dvb-reload-modules:
Add commands for reload and for only unload of modules.
17 Jun 2008; Matthias Schwarzott <[email protected]> etc/init.d/vdr:
Simplify openvt usage.
17 Jun 2008; Matthias Schwarzott <[email protected]> etc/init.d/vdr,
usr/share/vdr/inc/functions.sh, usr/share/vdr/inc/plugin-functions.sh,
usr/share/vdr/inc/rc-functions.sh:
No longer check old location for addons and the caps file.
17 Jun 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/post-stop-05-plugins.sh,
usr/share/vdr/rcscript/post-start-05-plugins.sh,
usr/share/vdr/rcscript/pre-stop-95-plugins.sh,
usr/share/vdr/rcscript/pre-start-95-plugins.sh, etc/init.d/vdr,
usr/share/vdr/inc/plugin-functions.sh:
Cleanup of init-script and plugin loader structure.
15 Jun 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/post-stop-05-plugins.sh,
usr/share/vdr/rcscript/post-start-05-plugins.sh,
usr/share/vdr/rcscript/pre-stop-95-plugins.sh,
usr/share/vdr/rcscript/pre-start-95-plugins.sh, etc/init.d/vdr,
usr/share/vdr/inc/plugin-functions.sh:
Cleanup of plugin loading code.
15 Jun 2008; Matthias Schwarzott <[email protected]> etc/init.d/vdr:
Fix watchdogrestart for now by running stop and start in subshells.
12 Jun 2008; Matthias Schwarzott <[email protected]>
-usr/share/vdr/rcscript/pre-stop-10-watchdog.sh,
-usr/share/vdr/rcscript/post-start-90-watchdog.sh, etc/init.d/vdr,
usr/share/vdr/inc/rc-functions.sh:
Move watchdog code directly into init-script.
02 Jun 2008; Matthias Schwarzott <[email protected]> etc/init.d/vdr:
Remove forgotten line.
30 May 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh,
usr/share/vdr/shutdown/pre-shutdown-99-periodic-thread.sh, etc/init.d/vdr,
usr/share/vdr/inc/rc-functions.sh:
Small cleanup.
29 May 2008; Matthias Schwarzott <[email protected]> etc/init.d/vdr,
-usr/share/vdr/inc/message-functions.sh,
usr/share/vdr/inc/rc-functions.sh:
Absorbed message-functions into init-script.
29 May 2008; Matthias Schwarzott <[email protected]>
-usr/sbin/vdr-inform-watchdog.sh, usr/sbin/vdr-watchdogd:
Rewrite of vdr-watchdog.
21 May 2008; Matthias Schwarzott <[email protected]>
vdrplugin-rebuild/vdrplugin-rebuild:
Do not produce errors when no plugins were skipped at last start.
21 May 2008; Matthias Schwarzott <[email protected]>
vdrplugin-rebuild/vdrplugin-rebuild:
Allow to only merge plugins that are enabled, or ones that were skipped at
last vdr start.
21 May 2008; Matthias Schwarzott <[email protected]>
vdrplugin-rebuild/vdrplugin-rebuild:
Remove dead code.
21 May 2008; Matthias Schwarzott <[email protected]>
vdrplugin-rebuild/vdrplugin-rebuild:
Simplified cmdline parsing. Allowing to pass parameters to emerge.
21 May 2008; Matthias Schwarzott <[email protected]>
vdrplugin-rebuild/vdrplugin-rebuild:
Renamed old stuff that still had module in the name. Removed external
commands add/del.
21 May 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/inc/commands-functions.sh,
usr/share/vdr/inc/language-functions.sh:
Simplified code.
21 May 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-10-chuid.sh, etc/init.d/vdr,
usr/share/vdr/inc/message-functions.sh:
Simplified code.
21 May 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/watchdog-restart-20-modules.sh, usr/sbin/Makefile,
+usr/sbin/dvb-reload-modules:
Moved code to reload dvb modules into a seperate executable called
dvb-reload-modules.
*gentoo-vdr-scripts-0.4.4 (20 Apr 2008)
20 Apr 2008; Matthias Schwarzott <[email protected]> Makefile, +bump.sh:
Added info make-target. Added bump helper script.
20 Apr 2008; Matthias Schwarzott <[email protected]>
usr/sbin/acpi-wakeup.sh:
More baselayout-2 fixes for acpi wakeup. Fixes wrong utc detection.
19 Apr 2008; Matthias Schwarzott <[email protected]>
etc/conf.d/vdr.shutdown, usr/share/vdr/shutdown/shutdown-reboot.sh:
Give an explicit name to the automagic reboot handling - auto.
19 Apr 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-45-utf8-check.sh:
Make charmap handling more verbose and fix some export/usage order. Bug
#217906
19 Apr 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/post-start-60-check-syslog-errors.sh:
Print name of log-file in every case when errors are detected.
19 Apr 2008; Matthias Schwarzott <[email protected]>
etc/init.d/wakeup-reboot-halt:
Make special option mark_for_reboot work with baselayout-1, Reported by
gehlhajo, http://www.vdr-portal.de/board/thread.php?threadid=76283
19 Apr 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-30-parameter.sh, etc/conf.d/vdr:
Added VDR_CHARSET_OVERRIDE support
31 Mar 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/post-stop-05-plugins.sh,
usr/share/vdr/rcscript/post-start-05-plugins.sh,
usr/share/vdr/rcscript/pre-stop-95-plugins.sh,
usr/share/vdr/rcscript/pre-start-95-plugins.sh,
usr/share/vdr/inc/plugin-functions.sh:
Add better error handling, like for disk full condition.
31 Mar 2008; Matthias Schwarzott <[email protected]> etc/init.d/vdr:
Let init-script not silently fail at stop.
*gentoo-vdr-scripts-0.4.3 (23 Feb 2008)
20 Feb 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/shutdown/shutdown-reboot.sh:
Add mount /boot for lilo, due to http://bugs.gentoo.org/show_bug.cgi?id=207105
18 Feb 2008; Matthias Schwarzott <[email protected]>
etc/init.d/wakeup-reboot-halt, usr/share/vdr/shutdown/shutdown-reboot.sh:
Move mark-file logic for reboot completely into init-script.
17 Feb 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-really.sh,
usr/share/vdr/shutdown/shutdown-reboot.sh,
usr/share/vdr/shutdown/wakeup-acpi.sh,
usr/share/vdr/shutdown/wakeup-none.sh,
usr/share/vdr/shutdown/wakeup-nvram.sh,
usr/share/vdr/shutdown/wakeup-rtc.sh:
Cleanup message handling for wakeup modules.
17 Feb 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-gate.sh:
No longer write count of forced tests to osd.
13 Feb 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-50-shutdown.sh, README.shutdown,
etc/conf.d/vdr.shutdown, usr/share/vdr/bin/vdrshutdown-really.sh,
usr/share/vdr/inc/shutdown-functions.sh,
usr/share/vdr/shutdown/wakeup-acpi.sh,
usr/share/vdr/shutdown/wakeup-none.sh,
usr/share/vdr/shutdown/wakeup-nvram.sh,
usr/share/vdr/shutdown/wakeup-rtc.sh:
More wakeup simplifications. Now try more than 1 wakeup-method until one
successes.
13 Feb 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/shutdown/Makefile:
Now always install wakeup-nvram helper.
13 Feb 2008; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-50-shutdown.sh, README.shutdown,
usr/sbin/Makefile, usr/sbin/acpi-wakeup.sh, +usr/sbin/rtc-wakeup.sh,
usr/share/vdr/bin/vdrshutdown-really.sh,
usr/share/vdr/shutdown/wakeup-acpi.sh,
usr/share/vdr/shutdown/wakeup-none.sh,
usr/share/vdr/shutdown/wakeup-nvram.sh,
+usr/share/vdr/shutdown/wakeup-rtc.sh:
Simplified wakeup logic a bit. Moved rtc-wakeup to own files.
15 Dec 2007; Matthias Schwarzott <[email protected]>
vdrplugin-rebuild/vdrplugin-rebuild:
Let vdrplugin-rebuild detect and fix corrupt plugin database.
10 Dec 2007; Matthias Schwarzott <[email protected]>
usr/sbin/acpi-wakeup.sh, usr/share/vdr/shutdown/wakeup-acpi.sh:
Fix wakeup-call logic to work with old and new acpi/rtc interface.
16 Oct 2007; Matthias Schwarzott <[email protected]>
usr/sbin/acpi-wakeup.sh:
Updated acpi-wakeup to also work with new rtc-interface.
*gentoo-vdr-scripts-0.4.2 (08 Oct 2007)
08 Oct 2007; Matthias Schwarzott <[email protected]> Makefile,
+vdrplugin-rebuild/Makefile, +vdrplugin-rebuild/vdrplugin-rebuild:
Added vdrplugin-rebuild to gentoo-vdr-scripts.
*gentoo-vdr-scripts-0.4.1 (04 Oct 2007)
04 Oct 2007; Matthias Schwarzott <[email protected]> usr/share/vdr/Makefile,
+usr/share/vdr/dvdchanger/Makefile,
+usr/share/vdr/dvdchanger/dvdchanger_readdvd.sh,
+usr/share/vdr/dvdchanger/dvdchanger_writedvd.sh:
Added vdr-dvd-scripts.
04 Oct 2007; Matthias Schwarzott <[email protected]> Makefile,
+etc/Makefile, +etc/conf.d/Makefile, +etc/init.d/Makefile,
+etc/vdr/Makefile, +etc/vdr/commands/Makefile, +etc/vdr/reccmds/Makefile,
+usr/Makefile, usr/bin/Makefile, +usr/sbin/Makefile,
+usr/share/vdr/Makefile, +usr/share/vdr/bin/Makefile,
+usr/share/vdr/inc/Makefile, +usr/share/vdr/rcscript/Makefile,
+usr/share/vdr/record/Makefile, +usr/share/vdr/shutdown/Makefile:
Make install now is distributed over makefiles in every directory.
03 Oct 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-30-parameter.sh, etc/conf.d/vdr:
Added parameter to modify VDR niceness.
25 Sep 2007; Matthias Schwarzott <[email protected]> etc/init.d/vdr,
usr/sbin/vdr-inform-watchdog.sh:
Do not set path to killall.
25 Sep 2007; Matthias Schwarzott <[email protected]> etc/conf.d/vdr.cd-dvd:
Added burnspeed setting to vdr.cd-dvd conf file.
10 Jul 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-60-check-syslog-errors.sh:
Added more possible log file names for syslog scanning.
10 Jul 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/post-start-60-check-syslog-errors.sh,
usr/share/vdr/rcscript/pre-start-60-check-syslog-errors.sh:
For checking syslog, do not read whole files, but just seek into them with
help of stat/dd.
10 Jul 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/post-start-60-check-syslog-errors.sh:
Does not only show nice plugin failures, but also nicify the other errors.
09 Jul 2007; Matthias Schwarzott <[email protected]>
+usr/share/vdr/rcscript/post-start-60-check-syslog-errors.sh,
+usr/share/vdr/rcscript/pre-start-60-check-syslog-errors.sh:
Added a log parser to display critical errors that only show up in syslog.
*gentoo-vdr-scripts-0.4.0 (07 Jul 2007)
07 Jul 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/inc/plugin-functions.sh:
Do write more log files about failed plugins.
03 Jul 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-45-utf8-check.sh, etc/conf.d/vdr:
Added locale selection for >=vdr-1.5.3, no longer drop locales to C, but
autoselect utf8 one if avail and none selected systemwide or in vdr config.
23 Jun 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-95-plugins.sh,
usr/share/vdr/inc/plugin-functions.sh:
Only store loaded plugins for usage at stopping.
*gentoo-vdr-scripts-0.3.10 (12 Jun 2007)
11 Jun 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-98-wait-conditions.sh,
usr/sbin/vdr-watchdogd:
Removed some bash operators.
11 Jun 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-20-dvb-device.sh,
usr/share/vdr/rcscript/pre-start-98-wait-conditions.sh:
Added a message about DEVICE_CHECK if the dvb-device check fails,
http://www.vdr-portal.de/board/thread.php?threadid=65303
08 Jun 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/shutdown/pre-shutdown-40-time.sh:
Allow forcing of shutdown at forbidden times.
04 Jun 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-really.sh:
Do not rely on bash variable UID.
04 Jun 2007; Matthias Schwarzott <[email protected]> etc/init.d/vdr:
Be sure to need net, and need lirc if configured.
04 Jun 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/inc/message-functions.sh:
Removed header-line of startlog.
02 Jun 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/inc/plugin-functions.sh:
Do not show error if to be deleted file does not exist.
02 Jun 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/inc/plugin-functions.sh:
Added missing variables.
02 Jun 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/inc/rc-functions.sh:
Added einfo_level1/2 for compatibility with rcaddons using them.
02 Jun 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-95-plugins.sh,
usr/share/vdr/inc/message-functions.sh,
usr/share/vdr/inc/plugin-functions.sh:
Summary view of failed plugins.
02 Jun 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/watchdog-restart-20-modules.sh,
usr/share/vdr/rcscript/pre-start-45-nptl-check.sh,
usr/share/vdr/rcscript/pre-start-50-shutdown.sh,
usr/share/vdr/rcscript/pre-start-95-plugins.sh, etc/init.d/vdr,
usr/share/vdr/inc/message-functions.sh,
usr/share/vdr/inc/plugin-functions.sh, usr/share/vdr/inc/rc-functions.sh:
Easier message handling.
30 May 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-gate.sh:
remove shutdown-time-written file before rewrite it.
30 May 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/shutdown/pre-shutdown-20-check-blocking-programs.sh:
No longer check noad at shutdown, as it now has a dedicated script.
30 May 2007; Matthias Schwarzott <[email protected]>
etc/conf.d/vdr.shutdown, usr/share/vdr/bin/vdrshutdown-gate.sh,
usr/share/vdr/bin/vdrshutdown-really.sh:
Added easy debug setting for shutdown.
30 May 2007; Matthias Schwarzott <[email protected]>
etc/conf.d/vdr.watchdogd, usr/share/vdr/inc/rc-functions.sh:
Enabled external watchdog by default.
30 May 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/watchdog-restart-20-modules.sh,
etc/conf.d/vdr.watchdogd, etc/init.d/vdr, usr/sbin/vdr-watchdogd,
usr/share/vdr/inc/rc-functions.sh:
Removed sleeps for watchdogrestart. Removed logging by default for watchdog.
30 May 2007; Matthias Schwarzott <[email protected]> Makefile,
+usr/bin/Makefile, +usr/bin/wait_on_pid.c, usr/sbin/vdr-watchdogd:
Added some small binary to wait for a process to exit.
12 May 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-really.sh:
Fixed last arithmetic expression.
10 May 2007; Matthias Schwarzott <[email protected]> usr/sbin/vdr-watchdogd:
Fix external watchdog with dash shell.
10 May 2007; Matthias Schwarzott <[email protected]> Makefile:
Revert old nicer Makefile, but force bash on it.
08 May 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/rcscript/pre-start-95-plugins.sh,
usr/share/vdr/shutdown/pre-shutdown-99-periodic-thread.sh, Makefile,
usr/sbin/acpi-wakeup.sh, usr/share/vdr/bin/vdrshutdown-gate.sh,
usr/share/vdr/inc/message-functions.sh,
usr/share/vdr/inc/plugin-functions.sh, usr/share/vdr/inc/rc-functions.sh,
usr/share/vdr/inc/time.sh:
Removed more bashish code.
08 May 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-gate.sh:
Rename shutdown_common to shutdown_abort_common.
24 Apr 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-gate.sh:
Added better check for usable pre-shutdown hook.
24 Apr 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/bin/vdrshutdown-gate.sh:
Fixed quoting of the queued commands in shutdown-gate.
*gentoo-vdr-scripts-0.3.9 (23 Apr 2007)
18 Apr 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/inc/rc-functions.sh:
Also stop watchdog if it was disabled while vdr was still running.
18 Apr 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/inc/rc-functions.sh:
Make start-stop-daemon get the correct state of the watchdog.
17 Apr 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/shutdown/pre-shutdown-99-periodic-thread.sh,
usr/share/vdr/bin/vdrshutdown-really.sh,
usr/share/vdr/inc/plugin-functions.sh:
Removed more bash stuff.
17 Apr 2007; Matthias Schwarzott <[email protected]> etc/init.d/vdr:
Only load external files when needed.
17 Apr 2007; Matthias Schwarzott <[email protected]> etc/init.d/vdr:
Correctly evaluate quoted parameters.
17 Apr 2007; Matthias Schwarzott <[email protected]>
usr/share/vdr/inc/rc-functions.sh:
Does not try to load non-existant addon.
16 Apr 2007; Matthias Schwarzott <[email protected]> etc/init.d/vdr,
usr/share/vdr/inc/plugin-functions.sh, usr/share/vdr/inc/rc-functions.sh:
Removed bash specific array code.