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 | === added directory '.pc/0001-SYSAPPEND-Fix-space-stripping.patch'
=== added directory '.pc/0001-SYSAPPEND-Fix-space-stripping.patch/com32'
=== added directory '.pc/0001-SYSAPPEND-Fix-space-stripping.patch/com32/elflink'
=== added directory '.pc/0001-SYSAPPEND-Fix-space-stripping.patch/com32/elflink/ldlinux'
=== added file '.pc/0001-SYSAPPEND-Fix-space-stripping.patch/com32/elflink/ldlinux/readconfig.c'
=== added directory '.pc/0001-SYSAPPEND-Fix-space-stripping.patch/com32/menu'
=== added file '.pc/0001-SYSAPPEND-Fix-space-stripping.patch/com32/menu/readconfig.c'
=== added directory '.pc/0001-SYSAPPEND-Fix-space-stripping.patch/core'
=== added file '.pc/0001-SYSAPPEND-Fix-space-stripping.patch/core/sysappend.c'
=== added directory '.pc/0005-load-linux-correct-type.patch'
=== added directory '.pc/0005-load-linux-correct-type.patch/com32'
=== added directory '.pc/0005-load-linux-correct-type.patch/com32/lib'
=== added directory '.pc/0005-load-linux-correct-type.patch/com32/lib/syslinux'
=== added file '.pc/0005-load-linux-correct-type.patch/com32/lib/syslinux/load_linux.c'
=== added directory '.pc/0006-load-linux-protected-mode.patch'
=== added directory '.pc/0006-load-linux-protected-mode.patch/com32'
=== added directory '.pc/0006-load-linux-protected-mode.patch/com32/lib'
=== added directory '.pc/0006-load-linux-protected-mode.patch/com32/lib/syslinux'
=== added file '.pc/0006-load-linux-protected-mode.patch/com32/lib/syslinux/load_linux.c'
=== modified file '.pc/applied-patches'
=== removed directory '.pc/load_linux-correct-type.patch'
=== removed directory '.pc/load_linux-correct-type.patch/com32'
=== removed directory '.pc/load_linux-correct-type.patch/com32/lib'
=== removed directory '.pc/load_linux-correct-type.patch/com32/lib/syslinux'
=== removed file '.pc/load_linux-correct-type.patch/com32/lib/syslinux/load_linux.c'
=== removed directory '.pc/relocatable-kernel-loads.patch'
=== removed directory '.pc/relocatable-kernel-loads.patch/com32'
=== removed directory '.pc/relocatable-kernel-loads.patch/com32/lib'
=== removed directory '.pc/relocatable-kernel-loads.patch/com32/lib/syslinux'
=== removed file '.pc/relocatable-kernel-loads.patch/com32/lib/syslinux/load_linux.c'
=== modified file 'com32/elflink/ldlinux/readconfig.c'
--- com32/elflink/ldlinux/readconfig.c 2014-06-14 10:55:07 +0000
+++ com32/elflink/ldlinux/readconfig.c 2015-08-13 14:43:15 +0000
@@ -330,7 +330,7 @@
char c;
while ((c = *src++)) {
- if (c <= ' ' && c == '\x7f') {
+ if (c <= ' ' || c == '\x7f') {
if (!was_space)
*dst++ = '_';
was_space = true;
=== modified file 'com32/menu/readconfig.c'
--- com32/menu/readconfig.c 2014-05-17 12:13:41 +0000
+++ com32/menu/readconfig.c 2015-08-13 14:43:15 +0000
@@ -299,7 +299,7 @@
char c;
while ((c = *src++)) {
- if (c <= ' ' && c == '\x7f') {
+ if (c <= ' ' || c == '\x7f') {
if (!was_space)
*dst++ = '_';
was_space = true;
=== modified file 'core/sysappend.c'
--- core/sysappend.c 2014-06-14 10:55:07 +0000
+++ core/sysappend.c 2015-08-13 14:43:15 +0000
@@ -35,7 +35,7 @@
char c;
while ((c = *src++)) {
- if (c <= ' ' && c == '\x7f') {
+ if (c <= ' ' || c == '\x7f') {
if (!was_space)
*dst++ = '_';
was_space = true;
=== modified file 'debian/changelog'
--- debian/changelog 2015-03-18 16:11:27 +0000
+++ debian/changelog 2015-08-13 14:43:15 +0000
@@ -1,12 +1,43 @@
-syslinux (3:6.03+dfsg-5ubuntu1) vivid; urgency=medium
-
- * debian/patches/relocatable-kernel-loads.patch: load_linux: relocate
- protected-mode code as intended. Thanks to Scot Doyle
- <lkml14@scotdoyle.com>. Closes LP: #1429323.
- * debian/patches/load_linux-correct-type.patch: load_linux: correct a
- type. Thanks to Scot Doyle <lkml14@scotdoyle.com>.
-
- -- Steve Langasek <steve.langasek@ubuntu.com> Wed, 18 Mar 2015 16:11:27 -0700
+syslinux (3:6.03+dfsg-8ubuntu2) wily; urgency=medium
+
+ * debian/patches/0001-SYSAPPEND-Fix-space-stripping.patch: backport fix to
+ space stripping in sysappend functions. (LP: #1484571)
+ * debian/control: revert the previous change to build with GCC 4.9, and get
+ back to GCC 5.
+
+ -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> Thu, 13 Aug 2015 14:43:15 -0400
+
+syslinux (3:6.03+dfsg-8ubuntu1) wily; urgency=medium
+
+ * debian/control: use gcc-4.9-multilib explicitly rather than the GCC 5
+ equivalent while we debug boot issues.
+
+ -- Mathieu Trudel-Lapierre <mathieu-tl@ubuntu.com> Thu, 13 Aug 2015 11:40:18 -0400
+
+syslinux (3:6.03+dfsg-8) unstable; urgency=low
+
+ * Using date from debian changelog rather than current system date as
+ build id.
+
+ -- Daniel Baumann <mail@daniel-baumann.ch> Wed, 12 Aug 2015 14:34:08 +0200
+
+syslinux (3:6.03+dfsg-7) unstable; urgency=low
+
+ * Removing pre-jessie upgrade notice.
+ * Dropping pre-jessie breaks/replaces.
+
+ -- Daniel Baumann <mail@daniel-baumann.ch> Sat, 25 Apr 2015 08:11:06 +0200
+
+syslinux (3:6.03+dfsg-6) experimental; urgency=low
+
+ * Building on x32, thanks to Adam Borowski <kilobyte@angband.pl>
+ (Closes: #777075).
+ * Adding patch from Scot Doyle <lkml14@scotdoyle.com> to correct a type
+ in load_linux (Closes: #780765).
+ * Adding patch from Scot Doyle <lkml14@scotdoyle.com> to relocate
+ protected-mode code in load_linux.
+
+ -- Daniel Baumann <mail@daniel-baumann.ch> Tue, 07 Apr 2015 07:24:55 +0200
syslinux (3:6.03+dfsg-5) unstable; urgency=low
=== modified file 'debian/control'
--- debian/control 2015-03-18 16:11:27 +0000
+++ debian/control 2015-08-13 14:43:15 +0000
@@ -6,8 +6,8 @@
Build-Depends:
debhelper (>= 9),
e2fslibs-dev,
- gcc-multilib [amd64],
- libc6-dev-i386 [amd64],
+ gcc-multilib [amd64 x32],
+ libc6-dev-i386 [amd64 x32],
nasm,
python,
uuid-dev,
@@ -17,13 +17,11 @@
Vcs-Git: git://daniel-baumann.ch/git/debian/packages/syslinux.git
Package: syslinux
-Architecture: amd64 i386
+Architecture: amd64 i386 x32
Depends:
${misc:Depends},
${shlibs:Depends},
mtools,
-Breaks: syslinux-common (<< ${source:Version})
-Replaces: syslinux-common
Recommends: syslinux-common
Suggests: dosfstools
Description: collection of bootloaders (DOS FAT and NTFS bootloader)
@@ -37,8 +35,6 @@
Package: syslinux-efi
Architecture: all
Depends: ${misc:Depends}
-Breaks: syslinux-common (<< ${source:Version})
-Replaces: syslinux-common
Recommends: syslinux-common
Suggests: dosfstools
Description: collection of bootloaders (UEFI bootloader)
@@ -50,12 +46,10 @@
Interface (EFI).
Package: extlinux
-Architecture: amd64 i386
+Architecture: amd64 i386 x32
Depends:
${misc:Depends},
${shlibs:Depends},
-Breaks: syslinux-common (<< ${source:Version})
-Replaces: syslinux-common
Recommends: syslinux-common
Description: collection of bootloaders (Linux ext2/ext3/ext4, btrfs, and xfs bootloader)
syslinux is a suite of bootloaders, currently supporting DOS FAT and NTFS
@@ -68,10 +62,6 @@
Package: isolinux
Architecture: all
Depends: ${misc:Depends}
-Breaks:
- syslinux-common (<< ${source:Version}),
- syslinux (<< 3:6.00~pre4+dfsg-5~),
-Replaces: syslinux-common
Recommends: syslinux-common
Suggests: xorriso
Description: collection of bootloaders (ISO 9960 bootloader)
@@ -84,8 +74,6 @@
Package: pxelinux
Architecture: all
Depends: ${misc:Depends}
-Breaks: syslinux-common (<< ${source:Version})
-Replaces: syslinux-common
Recommends: syslinux-common
Suggests: tftpd-hpa
Description: collection of bootloaders (PXE network bootloader)
@@ -98,18 +86,6 @@
Package: syslinux-common
Architecture: all
Depends: ${misc:Depends}
-Breaks:
- syslinux (<< ${source:Version}),
- extlinux (<< ${source:Version}),
- isolinux (<< ${source:Version}),
- pxelinux (<< ${source:Version}),
- syslinux-dev,
-Replaces:
- syslinux,
- extlinux,
- isolinux,
- pxelinux,
- syslinux-dev,
Description: collection of bootloaders (common)
syslinux is a suite of bootloaders, currently supporting DOS FAT and NTFS
filesystems (SYSLINUX), Linux ext2/ext3/ext4, btrfs, and xfs filesystems
@@ -118,16 +94,10 @@
This package contains the common files.
Package: syslinux-utils
-Architecture: amd64 i386
+Architecture: amd64 i386 x32
Depends:
${misc:Depends},
${shlibs:Depends},
-Breaks:
- syslinux (<< 3:6.00~pre4+dfsg-5~),
- syslinux-common (<< 3:6.00~pre4+dfsg-5~),
-Replaces:
- syslinux,
- syslinux-common,
Suggests:
libcrypt-passwdmd5-perl,
libdigest-sha-perl,
=== removed file 'debian/extlinux.config'
--- debian/extlinux.config 2014-08-24 00:19:38 +0000
+++ debian/extlinux.config 1970-01-01 00:00:00 +0000
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-set -e
-
-. /usr/share/debconf/confmodule
-
-# extlinux is installed and package is upgraded
-if [ -e /boot/extlinux/extlinux.conf ] && [ -n "${2}" ]
-then
-
- db_settitle extlinux/title
- db_input critical extlinux/no-bootloader-integration || true
- db_go
-fi
-
-db_stop
=== removed file 'debian/extlinux.templates'
--- debian/extlinux.templates 2014-09-12 08:09:57 +0000
+++ debian/extlinux.templates 1970-01-01 00:00:00 +0000
@@ -1,12 +0,0 @@
-Template: extlinux/title
-Type: title
-_Description: EXTLINUX
-
-Template: extlinux/no-bootloader-integration
-Type: note
-_Description: No bootloader integration code anymore
- The extlinux package does not ship bootloader integration anymore.
- .
- If you are upgrading to this version of EXTLINUX your system will not boot
- any longer if EXTLINUX was the only configured bootloader. Please install
- GRUB.
=== added file 'debian/patches/0001-SYSAPPEND-Fix-space-stripping.patch'
--- debian/patches/0001-SYSAPPEND-Fix-space-stripping.patch 1970-01-01 00:00:00 +0000
+++ debian/patches/0001-SYSAPPEND-Fix-space-stripping.patch 2015-08-13 14:43:15 +0000
@@ -0,0 +1,58 @@
+From 3106dcd19061b4443c5beba4f0e09412e8d37fbe Mon Sep 17 00:00:00 2001
+From: Dany St-Amant <dany.ephemeral.2014@icloud.com>
+Date: Fri, 28 Nov 2014 13:48:32 -0500
+Subject: [PATCH] SYSAPPEND: Fix space stripping
+
+The description of SYSAPPEND for the DMI information states that the spaces
+are replaced by underscores, but this replacement does not occur in 6.03.
+
+Signed-off-by: Dany St-Amant <dany.ephemeral.2014@icloud.com>
+Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
+---
+ com32/elflink/ldlinux/readconfig.c | 2 +-
+ com32/menu/readconfig.c | 2 +-
+ core/sysappend.c | 2 +-
+ 3 files changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/com32/elflink/ldlinux/readconfig.c b/com32/elflink/ldlinux/readconfig.c
+index 347f826..24f1cc9 100644
+--- a/com32/elflink/ldlinux/readconfig.c
++++ b/com32/elflink/ldlinux/readconfig.c
+@@ -330,7 +330,7 @@ static char *copy_sysappend_string(char *dst, const char *src)
+ char c;
+
+ while ((c = *src++)) {
+- if (c <= ' ' && c == '\x7f') {
++ if (c <= ' ' || c == '\x7f') {
+ if (!was_space)
+ *dst++ = '_';
+ was_space = true;
+diff --git a/com32/menu/readconfig.c b/com32/menu/readconfig.c
+index b7814be..257b042 100644
+--- a/com32/menu/readconfig.c
++++ b/com32/menu/readconfig.c
+@@ -299,7 +299,7 @@ static char *copy_sysappend_string(char *dst, const char *src)
+ char c;
+
+ while ((c = *src++)) {
+- if (c <= ' ' && c == '\x7f') {
++ if (c <= ' ' || c == '\x7f') {
+ if (!was_space)
+ *dst++ = '_';
+ was_space = true;
+diff --git a/core/sysappend.c b/core/sysappend.c
+index 5c3f650..758703e 100644
+--- a/core/sysappend.c
++++ b/core/sysappend.c
+@@ -35,7 +35,7 @@ static char *copy_and_mangle(char *dst, const char *src)
+ char c;
+
+ while ((c = *src++)) {
+- if (c <= ' ' && c == '\x7f') {
++ if (c <= ' ' || c == '\x7f') {
+ if (!was_space)
+ *dst++ = '_';
+ was_space = true;
+--
+2.5.0
+
=== added file 'debian/patches/0005-load-linux-correct-type.patch'
--- debian/patches/0005-load-linux-correct-type.patch 1970-01-01 00:00:00 +0000
+++ debian/patches/0005-load-linux-correct-type.patch 2015-04-07 07:24:55 +0000
@@ -0,0 +1,19 @@
+Author: Scot Doyle <lkml14@scotdoyle.com>
+Description: load_linux: correct a type
+ Correct base's type to match its initialization from prot_mode_base and
+ passage to syslinux_memmap_find(). Tested with extlinux.
+
+diff -Naurp syslinux.orig/com32/lib/syslinux/load_linux.c syslinux/com32/lib/syslinux/load_linux.c
+--- syslinux.orig/com32/lib/syslinux/load_linux.c
++++ syslinux/com32/lib/syslinux/load_linux.c
+@@ -155,8 +155,8 @@ int bios_boot_linux(void *kernel_buf, si
+ char *cmdline)
+ {
+ struct linux_header hdr, *whdr;
+- size_t real_mode_size, prot_mode_size, base;
+- addr_t real_mode_base, prot_mode_base, prot_mode_max;
++ size_t real_mode_size, prot_mode_size;
++ addr_t real_mode_base, prot_mode_base, prot_mode_max, base;
+ addr_t irf_size;
+ size_t cmdline_size, cmdline_offset;
+ struct setup_data *sdp;
=== added file 'debian/patches/0006-load-linux-protected-mode.patch'
--- debian/patches/0006-load-linux-protected-mode.patch 1970-01-01 00:00:00 +0000
+++ debian/patches/0006-load-linux-protected-mode.patch 2015-04-07 07:24:55 +0000
@@ -0,0 +1,25 @@
+Author: Scot Doyle <lkml14@scotdoyle.com>
+Description: load_linux: relocate protected-mode code as intended
+ If the kernel is relocatable and the protected mode code will not fit
+ in the initially determined location, that code will be moved to the
+ next available location. However, beginning with commit 8f470e7b, the
+ code is moved to the initially determined location instead of the next
+ available location because prot_mode_base is no longer updated to the
+ correct location. Since whdr->code32_start is updated, it is pointing
+ to the wrong execution start location, random code is executed and
+ the machine is rebooted.
+ .
+ Restore the old behavior by assigning prot_mode_base the value of
+ base. Tested on a machine that exposed this behavior.
+
+diff -Naurp syslinux.orig/com32/lib/syslinux/load_linux.c syslinux/com32/lib/syslinux/load_linux.c
+--- syslinux.orig/com32/lib/syslinux/load_linux.c
++++ syslinux/com32/lib/syslinux/load_linux.c
+@@ -323,6 +323,7 @@ int bios_boot_linux(void *kernel_buf, si
+ }
+
+ whdr->code32_start += base - prot_mode_base;
++ prot_mode_base = base;
+
+ /* Real mode code */
+ if (syslinux_memmap_find(amap, &real_mode_base,
=== removed file 'debian/patches/load_linux-correct-type.patch'
--- debian/patches/load_linux-correct-type.patch 2015-03-18 16:11:27 +0000
+++ debian/patches/load_linux-correct-type.patch 1970-01-01 00:00:00 +0000
@@ -1,29 +0,0 @@
-Author: Scot Doyle <lkml14@scotdoyle.com>
-Description: load_linux: correct a type
- Correct base's type to match its initialization from prot_mode_base and
- passage to syslinux_memmap_find(). Tested with extlinux.
-Signed-off-by: Scot Doyle <lkml14@scotdoyle.com>
-Forwarded: http://www.syslinux.org/archives/2015-February/023179.html
-
----
- com32/lib/syslinux/load_linux.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/com32/lib/syslinux/load_linux.c b/com32/lib/syslinux/load_linux.c
-index 06ae2a9..ac73729 100644
---- a/com32/lib/syslinux/load_linux.c
-+++ b/com32/lib/syslinux/load_linux.c
-@@ -155,8 +155,8 @@ int bios_boot_linux(void *kernel_buf, size_t kernel_size,
- char *cmdline)
- {
- struct linux_header hdr, *whdr;
-- size_t real_mode_size, prot_mode_size, base;
-- addr_t real_mode_base, prot_mode_base, prot_mode_max;
-+ size_t real_mode_size, prot_mode_size;
-+ addr_t real_mode_base, prot_mode_base, prot_mode_max, base;
- addr_t irf_size;
- size_t cmdline_size, cmdline_offset;
- struct setup_data *sdp;
---
-2.3.0-rc2
-
=== removed file 'debian/patches/relocatable-kernel-loads.patch'
--- debian/patches/relocatable-kernel-loads.patch 2015-03-18 16:11:27 +0000
+++ debian/patches/relocatable-kernel-loads.patch 1970-01-01 00:00:00 +0000
@@ -1,38 +0,0 @@
-Author: Scot Doyle <lkml14@scotdoyle.com>
-Description: load_linux: relocate protected-mode code as intended
- If the kernel is relocatable and the protected mode code will not fit
- in the initially determined location, that code will be moved to the
- next available location. However, beginning with commit 8f470e7b, the
- code is moved to the initially determined location instead of the next
- available location because prot_mode_base is no longer updated to the
- correct location. Since whdr->code32_start is updated, it is pointing
- to the wrong execution start location, random code is executed and
- the machine is rebooted.
- .
- Restore the old behavior by assigning prot_mode_base the value of
- base. Tested on a machine that exposed this behavior.
-Signed-off-by: Scot Doyle <lkml14@scotdoyle.com>
-Bug-Ubuntu: https://bugs.launchpad.net/bugs/1429323
-Forwarded: http://www.syslinux.org/archives/2015-February/023209.html
-
----
-This patch may be applied in addition to "load_linux: correct a type"
-
- com32/lib/syslinux/load_linux.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/com32/lib/syslinux/load_linux.c b/com32/lib/syslinux/load_linux.c
-index 06ae2a9..5cecef4 100644
---- a/com32/lib/syslinux/load_linux.c
-+++ b/com32/lib/syslinux/load_linux.c
-@@ -323,6 +323,7 @@ int bios_boot_linux(void *kernel_buf, size_t kernel_size,
- }
-
- whdr->code32_start += base - prot_mode_base;
-+ prot_mode_base = base;
-
- /* Real mode code */
- if (syslinux_memmap_find(amap, &real_mode_base,
---
-2.3.0-rc2
-
=== modified file 'debian/patches/series'
--- debian/patches/series 2015-03-18 16:11:27 +0000
+++ debian/patches/series 2015-08-13 14:43:15 +0000
@@ -2,5 +2,6 @@
0002-gfxboot-menu-label.patch
0003-extlinux-manpage.patch
0004-gnu-efi-git.patch
-relocatable-kernel-loads.patch
-load_linux-correct-type.patch
+0005-load-linux-correct-type.patch
+0006-load-linux-protected-mode.patch
+0001-SYSAPPEND-Fix-space-stripping.patch
=== removed directory 'debian/po'
=== removed file 'debian/po/POTFILES.in'
--- debian/po/POTFILES.in 2014-08-24 00:19:38 +0000
+++ debian/po/POTFILES.in 1970-01-01 00:00:00 +0000
@@ -1 +0,0 @@
-[type: gettext/rfc822deb] extlinux.templates
=== removed file 'debian/po/da.po'
--- debian/po/da.po 2015-01-07 07:49:26 +0000
+++ debian/po/da.po 1970-01-01 00:00:00 +0000
@@ -1,47 +0,0 @@
-# German debconf translations for the syslinux package
-# Copyright (C) 2014 Joe Hansen <joedalton2@yahoo.dk>
-# This file is distributed under the same license as the syslinux package.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: syslinux 3:6.03~pre20+dfsg-4\n"
-"Report-Msgid-Bugs-To: syslinux@packages.debian.org\n"
-"POT-Creation-Date: 2014-08-24 00:12+0200\n"
-"PO-Revision-Date: 2014-10-18 07:12+0200\n"
-"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
-"Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n"
-"Language: da\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: title
-#. Description
-#: ../extlinux.templates:1001
-msgid "EXTLINUX"
-msgstr "EXTLINUX"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "No bootloader integration code anymore"
-msgstr "Der er ikke længere en integrationskode for opstartsindlæseren"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "The extlinux package does not ship bootloader integration anymore."
-msgstr ""
-"Pakken extlinux indeholder ikke længere integration for opstartsindlæseren."
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid ""
-"If you are upgrading to this version of EXTLINUX your system will not boot "
-"any longer if EXTLINUX was the only configured bootloader. Please install "
-"GRUB."
-msgstr ""
-"Hvis du opgraderer til denne version af EXTLINUX, så vil dit system ikke "
-"længere starte op, hvis EXTLINUX var den eneste konfigurerede opstartsindlæser. "
-"Installer venligst GRUB."
=== removed file 'debian/po/de.po'
--- debian/po/de.po 2015-01-07 07:49:26 +0000
+++ debian/po/de.po 1970-01-01 00:00:00 +0000
@@ -1,48 +0,0 @@
-# German debconf translations for the syslinux package
-# Copyright (C) 2014 Helge Kreutzmann <debian@helgefjell.de>
-# This file is distributed under the same license as the syslinux package.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: syslinux 3:6.03~pre20+dfsg-4\n"
-"Report-Msgid-Bugs-To: syslinux@packages.debian.org\n"
-"POT-Creation-Date: 2014-08-24 00:12+0200\n"
-"PO-Revision-Date: 2014-09-21 07:12+0200\n"
-"Last-Translator: Helge Kreutzmann <debian@helgefjell.de>\n"
-"Language-Team: de <debian-l10n-german@lists.debian.org>\n"
-"Language: de \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: title
-#. Description
-#: ../extlinux.templates:1001
-msgid "EXTLINUX"
-msgstr "EXTLINUX"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "No bootloader integration code anymore"
-msgstr "Kein Code zum Systemladen mehr integriert"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "The extlinux package does not ship bootloader integration anymore."
-msgstr ""
-"Das Paket extlinux liefert keinen Code mehr zur Integration eines "
-"Systemladeprogramms (Bootloaders)."
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid ""
-"If you are upgrading to this version of EXTLINUX your system will not boot "
-"any longer if EXTLINUX was the only configured bootloader. Please install "
-"GRUB."
-msgstr ""
-"Falls Sie ein Upgrade auf diese Version von EXTLINUX durchführen, wird Ihr "
-"System nicht mehr starten, falls EXTLINUX das einzige konfigurierte "
-"Systemladeprogramm war. Bitte installieren Sie GRUB."
=== removed file 'debian/po/es.po'
--- debian/po/es.po 2015-01-07 07:49:26 +0000
+++ debian/po/es.po 1970-01-01 00:00:00 +0000
@@ -1,48 +0,0 @@
-# Spanish debconf translations for the syslinux package
-# Copyright (C) Manuel "Venturi" Porras Peralta <venturi@openmailbox.org>
-# This file is distributed under the same license as the syslinux package.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: syslinux\n"
-"Report-Msgid-Bugs-To: syslinux@packages.debian.org\n"
-"POT-Creation-Date: 2014-08-24 00:12+0200\n"
-"PO-Revision-Date: 2014-11-23 22:41+0100\n"
-"Last-Translator: Manuel \"Venturi\" Porras Peralta <venturi@openmailbox."
-"org>\n"
-"Language-Team: Español; Castellano <debian-l10n-spanish@lists.debian.org>\n"
-"Language: es\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. Type: title
-#. Description
-#: ../extlinux.templates:1001
-msgid "EXTLINUX"
-msgstr "EXTLINUX"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "No bootloader integration code anymore"
-msgstr "Ya no hay código de integración del gestor de arranque"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "The extlinux package does not ship bootloader integration anymore."
-msgstr ""
-"El paquete extlinux ya no incluye la integración del gestor de arranque."
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid ""
-"If you are upgrading to this version of EXTLINUX your system will not boot "
-"any longer if EXTLINUX was the only configured bootloader. Please install "
-"GRUB."
-msgstr ""
-"Si está actualizando a esta versión de EXTLINUX, el sistema ya no iniciará "
-"si EXTLINUX era el único gestor de arranque configurado. Instale GRUB."
=== removed file 'debian/po/fr.po'
--- debian/po/fr.po 2015-01-07 07:49:26 +0000
+++ debian/po/fr.po 1970-01-01 00:00:00 +0000
@@ -1,47 +0,0 @@
-# French debconf translations for the syslinux package
-# Copyright (C) 2014 Steve Petruzzello <dlist@bluewin.ch>
-# This file is distributed under the same license as the syslinux package.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: syslinux_3:6.03~pre19+dfsg-3\n"
-"Report-Msgid-Bugs-To: syslinux@packages.debian.org\n"
-"POT-Creation-Date: 2014-08-24 00:12+0200\n"
-"PO-Revision-Date: 2014-08-29 10:55+0200\n"
-"Last-Translator: Steve Petruzzello <dlist@bluewin.ch>\n"
-"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: title
-#. Description
-#: ../extlinux.templates:1001
-msgid "EXTLINUX"
-msgstr "EXTLINUX"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "No bootloader integration code anymore"
-msgstr "Plus d'intégration d'extlinux avec le chargeur d'amorçage"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "The extlinux package does not ship bootloader integration anymore."
-msgstr ""
-"Le paquet extlinux n'intègre plus de code gérant le chargeur d'amorçage."
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid ""
-"If you are upgrading to this version of EXTLINUX your system will not boot "
-"any longer if EXTLINUX was the only configured bootloader. Please install "
-"GRUB."
-msgstr ""
-"Si vous mettez à niveau vers cette version d'EXTLINUX, le système ne "
-"démarrera plus si EXTLINUX était le seul chargeur d'amorçage configuré. "
-"Veuillez dans ce cas installer GRUB."
=== removed file 'debian/po/it.po'
--- debian/po/it.po 2015-01-07 07:49:26 +0000
+++ debian/po/it.po 1970-01-01 00:00:00 +0000
@@ -1,47 +0,0 @@
-# Italian debconf translations for the syslinux package
-# Copyright (C) 2014 Beatrice Torracca <beatricet@libero.it>
-# This file is distributed under the same license as the syslinux package.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: syslinux\n"
-"Report-Msgid-Bugs-To: syslinux@packages.debian.org\n"
-"POT-Creation-Date: 2014-08-24 00:12+0200\n"
-"PO-Revision-Date: 2014-10-26 13:09+0200\n"
-"Last-Translator: Beatrice Torracca <beatricet@libero.it>\n"
-"Language-Team: Italian <debian-l10n-italian@lists.debian.org>\n"
-"Language: it\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. Type: title
-#. Description
-#: ../extlinux.templates:1001
-msgid "EXTLINUX"
-msgstr "EXTLINUX"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "No bootloader integration code anymore"
-msgstr "Codice di integrazione con bootloader non più presente"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "The extlinux package does not ship bootloader integration anymore."
-msgstr ""
-"Il pacchetto extlinux non fornisce più l'integrazione con il bootloader."
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid ""
-"If you are upgrading to this version of EXTLINUX your system will not boot "
-"any longer if EXTLINUX was the only configured bootloader. Please install "
-"GRUB."
-msgstr ""
-"Se si sta aggiornando a questa versione di EXTLINUX, il sistema non si "
-"avvierà più se EXTLINUX era l'unico bootloader configurato. Installare GRUB."
=== removed file 'debian/po/ja.po'
--- debian/po/ja.po 2015-01-07 07:49:26 +0000
+++ debian/po/ja.po 1970-01-01 00:00:00 +0000
@@ -1,46 +0,0 @@
-# Japanese debconf translations for the syslinux package
-# Copyright (C) 2014 victory <victory.deb@gmail.com>
-# This file is distributed under the same license as the syslinux package.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: syslinux\n"
-"Report-Msgid-Bugs-To: syslinux@packages.debian.org\n"
-"POT-Creation-Date: 2014-08-24 00:12+0200\n"
-"PO-Revision-Date: 2014-08-24 07:12+0900\n"
-"Last-Translator: victory <victory.deb@gmail.com>\n"
-"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
-"Language: ja\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: title
-#. Description
-#: ../extlinux.templates:1001
-msgid "EXTLINUX"
-msgstr "EXTLINUX"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "No bootloader integration code anymore"
-msgstr "ブートローダ統合コードはなくなりました"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "The extlinux package does not ship bootloader integration anymore."
-msgstr "extlinux パッケージはブートローダを収録しなくなりました。"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid ""
-"If you are upgrading to this version of EXTLINUX your system will not boot "
-"any longer if EXTLINUX was the only configured bootloader. Please install "
-"GRUB."
-msgstr ""
-"EXTLINUX が唯一の設定済みブートローダであった場合、EXTLINUX をこのバージョン"
-"にアップグレードするとシステムはブートしなくなります。GRUB をインストール"
-"してください。"
=== removed file 'debian/po/pt.po'
--- debian/po/pt.po 2015-01-07 07:49:26 +0000
+++ debian/po/pt.po 1970-01-01 00:00:00 +0000
@@ -1,49 +0,0 @@
-# Portuguese debconf translations for the syslinux package
-# Copyright (C) 2014 Américo Monteiro <a_monteiro@gmx.com>
-# This file is distributed under the same license as the syslinux package.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: syslinux\n"
-"Report-Msgid-Bugs-To: syslinux@packages.debian.org\n"
-"POT-Creation-Date: 2014-08-24 00:12+0200\n"
-"PO-Revision-Date: 2014-08-27 22:19+0100\n"
-"Last-Translator: Américo Monteiro <a_monteiro@gmx.com>\n"
-"Language-Team: Portuguese <traduz@debianpt.org>\n"
-"Language: pt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#. Type: title
-#. Description
-#: ../extlinux.templates:1001
-msgid "EXTLINUX"
-msgstr "EXTLINUX"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "No bootloader integration code anymore"
-msgstr ""
-"Não existe mais código de integração com o gestor de arranque (bootloader)"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "The extlinux package does not ship bootloader integration anymore."
-msgstr ""
-"O pacote extlinux já não trás mais integração com o gestor de arranque."
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid ""
-"If you are upgrading to this version of EXTLINUX your system will not boot "
-"any longer if EXTLINUX was the only configured bootloader. Please install "
-"GRUB."
-msgstr ""
-"Se você está a actualizar para esta versão do EXTLINUX, os seu sistema "
-"não vai voltar a arrancar se o EXTLINUX for o único gestor de arranque "
-"configurado. Por favor instale o GRUB."
=== removed file 'debian/po/pt_BR.po'
--- debian/po/pt_BR.po 2015-01-07 07:49:26 +0000
+++ debian/po/pt_BR.po 1970-01-01 00:00:00 +0000
@@ -1,49 +0,0 @@
-# Brazilian Portuguese debconf translations for the syslinux package
-# Copyright (C) 2014 José de Figueiredo <deb.gnulinux@gmail.com>
-# This file is distributed under the same license as the syslinux package.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: syslinux\n"
-"Report-Msgid-Bugs-To: syslinux@packages.debian.org\n"
-"POT-Creation-Date: 2014-08-24 00:12+0200\n"
-"PO-Revision-Date: 2014-11-23 23:53-0200\n"
-"Last-Translator: José de Figueiredo <deb.gnulinux@gmail.com>\n"
-"Language-Team: Brazilian Portuguese <debian-l10n-portuguese@lists.debian."
-"org>\n"
-"Language: pt_BR\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: title
-#. Description
-#: ../extlinux.templates:1001
-msgid "EXTLINUX"
-msgstr "EXTLINUX"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "No bootloader integration code anymore"
-msgstr "Sem código de integração com o carregador de inicialização"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "The extlinux package does not ship bootloader integration anymore."
-msgstr ""
-"O pacote extlinux não fornece mais integração com o carregador de "
-"inicialização (\"bootloader\")."
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid ""
-"If you are upgrading to this version of EXTLINUX your system will not boot "
-"any longer if EXTLINUX was the only configured bootloader. Please install "
-"GRUB."
-msgstr ""
-"Se você está atualizando para esta versão do EXTLINUX, seu sistema não vai "
-"mais inicializar caso o EXTLINUX seja o único carregador de inicialização. "
-"Por favor, instale o GRUB."
=== removed file 'debian/po/ru.po'
--- debian/po/ru.po 2015-01-07 07:49:26 +0000
+++ debian/po/ru.po 1970-01-01 00:00:00 +0000
@@ -1,48 +0,0 @@
-# Russian debconf translations for the syslinux package
-# Copyright (C) 2014 Yuri Kozlov <yuray@komyakino.ru>
-# This file is distributed under the same license as the syslinux package.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: syslinux 3_6.03~pre20+dfsg-3\n"
-"Report-Msgid-Bugs-To: syslinux@packages.debian.org\n"
-"POT-Creation-Date: 2014-08-24 00:12+0200\n"
-"PO-Revision-Date: 2014-09-13 12:03+0400\n"
-"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
-"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
-"Language: ru\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<"
-"=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#. Type: title
-#. Description
-#: ../extlinux.templates:1001
-msgid "EXTLINUX"
-msgstr "EXTLINUX"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "No bootloader integration code anymore"
-msgstr "Удалён код внедрения системного загрузчика"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "The extlinux package does not ship bootloader integration anymore."
-msgstr "Пакет extlinux больше не содержит системный загрузчик."
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid ""
-"If you are upgrading to this version of EXTLINUX your system will not boot "
-"any longer if EXTLINUX was the only configured bootloader. Please install "
-"GRUB."
-msgstr ""
-"Если вы выполните обновление до этой версии EXTLINUX, то система больше "
-"не будет загружаться, если EXTLINUX работал как системный загрузчик. "
-"Установите GRUB."
=== removed file 'debian/po/templates.pot'
--- debian/po/templates.pot 2014-09-12 08:09:57 +0000
+++ debian/po/templates.pot 1970-01-01 00:00:00 +0000
@@ -1,45 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: syslinux\n"
-"Report-Msgid-Bugs-To: syslinux@packages.debian.org\n"
-"POT-Creation-Date: 2014-08-24 00:12+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
-"Language: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: title
-#. Description
-#: ../extlinux.templates:1001
-msgid "EXTLINUX"
-msgstr ""
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "No bootloader integration code anymore"
-msgstr ""
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "The extlinux package does not ship bootloader integration anymore."
-msgstr ""
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid ""
-"If you are upgrading to this version of EXTLINUX your system will not boot "
-"any longer if EXTLINUX was the only configured bootloader. Please install "
-"GRUB."
-msgstr ""
=== removed file 'debian/po/tr.po'
--- debian/po/tr.po 2014-09-12 08:09:57 +0000
+++ debian/po/tr.po 1970-01-01 00:00:00 +0000
@@ -1,46 +0,0 @@
-# Turkish debconf translations for the syslinux package
-# Copyright (C) 2014 Mert Dirik <mertdirik@gmail.com>
-# This file is distributed under the same license as the syslinux package.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: syslinux\n"
-"Report-Msgid-Bugs-To: syslinux@packages.debian.org\n"
-"POT-Creation-Date: 2014-08-24 00:12+0200\n"
-"PO-Revision-Date: 2014-08-13 19:13+0200\n"
-"Last-Translator: Mert Dirik <mertdirik@gmail.com>\n"
-"Language-Team: Debian L10n Turkish <debian-l10n-turkish@lists.debian.org>\n"
-"Language: tr\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: title
-#. Description
-#: ../extlinux.templates:1001
-msgid "EXTLINUX"
-msgstr "EXTLINUX"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "No bootloader integration code anymore"
-msgstr "Açılış önyükleme tümleştirmesi artık sağlanmıyor"
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid "The extlinux package does not ship bootloader integration anymore."
-msgstr "extlinux paketi artık açılış önyükleyici tümleşmesi sağlamıyor."
-
-#. Type: note
-#. Description
-#: ../extlinux.templates:2001
-msgid ""
-"If you are upgrading to this version of EXTLINUX your system will not boot "
-"any longer if EXTLINUX was the only configured bootloader. Please install "
-"GRUB."
-msgstr ""
-"Eğer sisteminizde yapılandırılmış olan tek önyükleyici EXTLINUX ise bu "
-"sürüme yükseltme yaptığınız takdirde sisteminiz açılamaz hale gelecektir. "
-"Lütfen grup-pc önyükleyicisini kullanın."
=== modified file 'debian/rules'
--- debian/rules 2015-01-07 07:49:26 +0000
+++ debian/rules 2015-08-12 14:34:08 +0000
@@ -2,7 +2,7 @@
SHELL := sh -e
-DATE=$(shell date +%Y%m%d)
+DATE += $(shell date -d"$(shell dpkg-parsechangelog | awk -F: '/^Date: / { print $$2 }')" +%Y%m%d)
VERSION=$(word 1,$(shell cat version))
unexport LDFLAGS
|