1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373
|
syslinux (3:6.04~git20190206.bf6db5b4+dfsg1-1) unstable; urgency=medium
* Import new version (upstream's git state).
- Update patches and drop those merged upstream.
- Adjust debian/copyright for new release.
* Document the justification of lintian overrides.
* Override new portable-executable lintian check.
* Bump Standards-Version to 4.3.0.
* Prevent optimizing the pow() function. (Closes: #918915)
-- Lukas Schwaighofer <lukas@schwaighofer.name> Wed, 27 Feb 2019 00:35:07 +0100
syslinux (3:6.04~git20171011.af7e95c3+dfsg1-6) unstable; urgency=medium
* gnu-efi compatibility patch: use memset and memcpy from syslinux instead
of from gnu-efi
- Using the memset and memcpy from gnu-efi causes some modules (e.g.
vesamenu.c32) to fail with "Undef symbol FAIL: memset"
-- Lukas Schwaighofer <lukas@schwaighofer.name> Mon, 03 Dec 2018 22:45:42 +0100
syslinux (3:6.04~git20171011.af7e95c3+dfsg1-5) unstable; urgency=medium
* Build against gnu-efi >= 3.0.8
* Bump Standards-Version to 4.2.1.
-- Lukas Schwaighofer <lukas@schwaighofer.name> Sat, 13 Oct 2018 11:14:54 +0200
syslinux (3:6.04~git20171011.af7e95c3+dfsg1-4) unstable; urgency=medium
* Point Vcs-Git and Vcs-Browser to salsa.debian.org.
* Revert the gnu-efi patch again so that syslinux can be built against
gnu-efi 3.0.4 from buster.
* Strip .note.gnu.property section from mbr.bin (added since
binutils >= 2.31.1-2) to stay within size constraints (Closes: #906414).
* Fix broken efi binaries when building with binutils >= 2.31 by patching
the linker script.
* Bump Standards-Version to 4.2.0.
* Move to debhelper compatibility level 11.
-- Lukas Schwaighofer <lukas@schwaighofer.name> Sat, 18 Aug 2018 17:45:42 +0200
syslinux (3:6.04~git20171011.af7e95c3+dfsg1-3) experimental; urgency=medium
* Do not create -dbgsym packages for now, as they do not contain any debug
symbols due to the way syslinux is compiled.
* Clean up obsolete configuration files in /etc/kernel that are no longer
present in extlinux since Debian jessie but have never been properly
removed (Closes: #866343).
* Build against gnu-efi >= 3.0.6:
- Split the gnu-efi patch into Debian-specific and non-Debian-specific.
- Add necessary patches from upstream's mailing list.
- Adjust the Build-Dependencies.
-- Lukas Schwaighofer <lukas@schwaighofer.name> Sun, 03 Dec 2017 11:13:37 +0100
syslinux (3:6.04~git20171011.af7e95c3+dfsg1-2) experimental; urgency=medium
* Extend 0009-reproducible-build.patch: Also sort file lists obtained using
`find`, so they are passed to `ar` in a deterministic order.
-- Lukas Schwaighofer <lukas@schwaighofer.name> Sat, 04 Nov 2017 11:52:54 +0100
syslinux (3:6.04~git20171011.af7e95c3+dfsg1-1) experimental; urgency=medium
* Import new version (upstream's current git state, prerelease of
syslinux 6.04).
- Booting from XFS now works in MBR partition schemes (Closes: #803938).
* Remove gnu-efi from the source package so it's not used accidentally.
* Drop patches included upstream:
- 0005-load-linux-correct-type.patch
- 0006-load-linux-protected-mode.patch
- 0007-sysappend-fix-space-stripping.patch
- 0008-Fix-gcc-5-ALIGN-causing-Boot-error.patch
- 0010-fix-ftbfs-with-default-pie.patch
- 0011-bios-Dont-try-to-guess-the-section-alignment.patch
- 0012-ldlinux-Fix-return-pointer-to-local-data.patch
- 0013-extlinux-pull-in-sys_sysmacros.h-for-major_minor_makedev.patch
- 0016-btrfs-fix.patch
- 0017-isohdpfx.S-correct-heads-sectors.patch
- 0018-ext4-Fix-64bit-feature.patch
* Update patches:
- 0009-reproducible-build.patch: Drop parts that are included upstream.
- 0004-gnu-efi.patch: Drop parts that have become unnecessary, because
upstream checks for a .git directory before trying to update submodules.
* Remove 0014_fix_ftbfs_no_dynamic_linker.patch which isn't required any
longer.
* Improve the extlinux man page (update 0003-extlinux-manpage.patch).
* Refresh all patches.
* Add special purpose and debugging MBRs to syslinux-common and isolinux
packages.
* Patch upstream changelog to include changes since 6.03.
* Update debian/copyright as needed.
-- Lukas Schwaighofer <lukas@schwaighofer.name> Thu, 02 Nov 2017 08:51:50 +0100
syslinux (3:6.03+dfsg1-2) unstable; urgency=medium
* Update 0004-gnu-efi.patch to use the jmp_buf definition from gnu-efi.
* Add patch 0018-ext4-Fix-64bit-feature.patch from upstream to support ext4
64bit feature (Closes: #833057).
* Mark isolinux, pxelinux, syslinux-common and syslinux-efi as
Multi-Arch: foreign.
-- Lukas Schwaighofer <lukas@schwaighofer.name> Tue, 17 Oct 2017 23:41:05 +0200
syslinux (3:6.03+dfsg1-1) unstable; urgency=low
* Maintain syslinux in the debian-cd team (Closes: #805268).
- Change Vcs-{Browser,Git} in debian/control accordingly.
- Add debian/gbp.conf to set suitable defaults for git-buildpackage.
* Add debian/watch file.
* Implement repacking using uscan (add Files-Excluded field to
debian/copyright and drop dfsg target in debian/rules).
* New repack to remove build directories (bios, efi32, efi64) and
gnu-efi/gnu-efi-3.0/debian from the source package.
* Cleanup debian/rules: use debhelper config files more extensively.
* Move to debhelper compatibility level 10, depend on debhelper 10.3 for
dh_missing.
* Add debian/clean to remove debris from build.
* Update the variables passed to make for building:
- Passing VERSION is no longer required.
- Derive DATE from SOURCE_DATE_EPOCH.
- Also pass HEXDATE derived from SOURCE_DATE_EPOCH.
* Add patch to make the use SOURCE_DATE_EPOCH for the synthesized
modification time constants. This allows syslinux to build reproducibly
as long as the build path stays the same.
* Link efi binaries against gnu-efi from Debian:
- Add Build-Depends-Indep on gnu-efi (an architecture independent
dependency is necessary as gnu-efi is not available on x32).
- Split the build in debian/rules for arch all/any packets so gnu-efi is
not required for architecture specific builds.
- Patch upstream's build system (by modifying 0004-gnu-efi.patch) to link
against gnu-efi from Debian.
- Record the static linking with gnu-efi (Built-Using control field).
* Drop unused lintian overrides.
* Add patch from upstream to fix btrfs logical to physical block address
mapping (Closes: #865462).
* Add patch from upstream to fix boot problem for old BIOS firmware from
around 2005 by correcting the C/H/S order (thanks Thomas Schmitt).
* Bump Standards-Version to 4.1.1.
-- Lukas Schwaighofer <lukas@schwaighofer.name> Sat, 07 Oct 2017 17:48:54 +0200
syslinux (3:6.03+dfsg-14.1) unstable; urgency=medium
* NMU
* Add --no-dynamic-linker to link lines, Closes: #846679
-- Steve McIntyre <93sam@debian.org> Sat, 28 Jan 2017 18:39:54 +0000
syslinux (3:6.03+dfsg-14) unstable; urgency=medium
* QA upload.
* Add patches from upstream to fix more issues due to the gcc-5 move
(Thanks to Ady from bringing these up!):
+ 0011: don't try to guess section alignment
+ 0012: fix input on the boot prompt are ignored. Closes: #823459
* Add 0013 (from upstream) to be compatible with upcoming glibc 2.23.
* Bump Standards-Version to 3.9.8, no changes done
* d/copyright: fix some syntax error in the machine readable copyright file.
-- Mattia Rizzolo <mattia@debian.org> Sat, 18 Jun 2016 12:48:49 +0000
syslinux (3:6.03+dfsg-13) unstable; urgency=medium
* QA upload.
* Fix FTBFS when GCC configured with --enable-default-pie. (LP: #1579023)
* Fix typo in short description: 9960 vs 9660. Closes: #802230
-- Graham Inggs <ginggs@debian.org> Fri, 20 May 2016 16:08:24 +0200
syslinux (3:6.03+dfsg-12) unstable; urgency=medium
[ Mattia Rizzolo ]
* QA upload.
* d/control: maintain the package in git, add Vcs-* fields.
* d/rules: remove useless dh_builddep override.
* d/source/options: remove, now dpkg defaults to that compression (xz) anyway.
* import patch from ubuntu to fix a boot error when built with gcc5.
Closes: #795777, LP: #1507002
* use the default compiler instead of gcc-4.9. Closes: #818783
* Override source-contains-prebuilt-binary lintian tag.
[ Reiner Herrmann ]
* Add patch to sort object files for reproducible builds.
-- Mattia Rizzolo <mattia@debian.org> Wed, 27 Apr 2016 11:08:22 +0000
syslinux (3:6.03+dfsg-11) unstable; urgency=low
* Orphaning package.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 08 Nov 2015 05:03:04 +0000
syslinux (3:6.03+dfsg-10) unstable; urgency=medium
* Building with gcc-4.9 (Closes: #795777).
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 16 Aug 2015 21:00:34 +0200
syslinux (3:6.03+dfsg-9) unstable; urgency=low
* Adding patch from upstream to fix unbootable images in certain
conditions, e.g. when using gcc 5 (Closes: #795596).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 15 Aug 2015 23:49:23 +0200
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
* Moving source lintian-overrides to newer location.
* Correcting comment in Italian debonf translation file.
* Adding initial Spanish debconf translations from Manuel 'Venturi'
Porras Peralta <venturi@openmailbox.org> (Closes: #773600).
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 07 Jan 2015 07:49:26 +0100
syslinux (3:6.03+dfsg-4) unstable; urgency=low
* Adding initial Brazilian Portuguese debconf translations from Jos de
Figueiredo <deb.gnulinux@gmail.com> (Closes: #771783).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 06 Dec 2014 13:16:42 +0100
syslinux (3:6.03+dfsg-3) unstable; urgency=low
* Adding initial Italian debconf translation from Beatrice Torracca
<beatricet@libero.it> (Closes: #768585).
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 11 Nov 2014 20:05:41 +0100
syslinux (3:6.03+dfsg-2) unstable; urgency=low
* Adding initial Danish debconf translations from Joe Hansen
<joedalton2@yahoo.dk> (Closes: #765859).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 25 Oct 2014 17:17:53 +0200
syslinux (3:6.03+dfsg-1) unstable; urgency=low
* Merging upstream version 6.03+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 07 Oct 2014 09:39:28 +0200
syslinux (3:6.03~pre20+dfsg-5) unstable; urgency=low
* Updating to standards version 3.9.6.
* Adding initial German debconf translations from Helge Kreutzmann
<debian@helgefjell.de> (Closes: #762373).
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 29 Sep 2014 11:49:55 +0200
syslinux (3:6.03~pre20+dfsg-4) unstable; urgency=low
* Adding initial Russian debconf translations from Yuri Kozlov
<yuray@komyakino.ru> (Closes: #761352).
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 16 Sep 2014 16:11:37 +0200
syslinux (3:6.03~pre20+dfsg-3) unstable; urgency=low
* Rather than recommending to install a specific message in the debconf
note, refering to GRUB as a bootloader project (Closes: #761156).
* Adding intial French debconf translations from Steve Petruzzello
<dlist@bluewin.ch> (Closes: #760622).
* Adding initial Japanese debconf translation from victory
<victory.deb@gmail.com> (Closes: #760855).
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 12 Sep 2014 08:09:57 +0200
syslinux (3:6.03~pre20+dfsg-2) unstable; urgency=low
* Adding initial Turkish debconf translations from Mert Dirik
<mertdirik@gmail.com> (Closes: #760019).
* Adding initial Portuguese debconf translations from Américo Monteiro
<a_monteiro@gmx.com> (Closes: #759512).
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 31 Aug 2014 03:27:06 +0200
syslinux (3:6.03~pre20+dfsg-1) unstable; urgency=low
* Making non-syslinux-installer packages architecture independent as
requested by Franklin Piat <fpiat@klabs.be>.
* Merging upstream version 6.03~pre20+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 27 Aug 2014 04:14:37 +0200
syslinux (3:6.03~pre19+dfsg-3) unstable; urgency=low
* Also skipping isohd*x_{c,f}.bin in syslinux-common.
* Correcting path to keytab-lilo.txt removal in rules.
* Dropping now unused inclusion of /usr/share/dpkg/vendor.mk in rules.
* Removing emtpy efi directories in syslinux-common.
* Marking extlinux/title as translatable to please lintian.
* Loading debconf unconditionally in extlinux.config to please lintian.
* Updating lintian overrides.
* Dropping stray .gitignore file.
-- Daniel Baumann <daniel.baumann@progress-linux.org> Sun, 24 Aug 2014 00:19:38 +0200
syslinux (3:6.03~pre19+dfsg-2) experimental; urgency=low
* Adding note when upgrading extlinux that there's no bootloader
integration anymore.
* Folding syslinux-dev into syslinux-common, according to ftp-master
this is not acceptable anymore without having split out library
package (which syslinux doesn't have).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 23 Aug 2014 23:31:21 +0200
syslinux (3:6.03~pre19+dfsg-1) experimental; urgency=low
* Adding dpkg-source local-options to abort on upstream changes.
* Updating lintian overrides.
* Due to 'popular demand' and the fact that the debian specific
bootloader integration just isn't ready yet (and will not be in time
for jessie, temporarily dropping Debian custom additions for jessie
and shipping an (almost) vanilla syslinux package from now on
(Closes: #750851, #754225).
* Dropping syslinux-utils from depends of isolinux.
* Merging upstream version 6.03~pre19+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 10 Aug 2014 13:48:50 +0200
syslinux (3:6.03~pre18+dfsg-1) unstable; urgency=low
* Merging upstream version 6.03~pre18+dfsg.
* For the time being, Marking all packages as amd64 and i386 only
instead of any.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 30 Jun 2014 20:20:48 +0200
syslinux (3:6.03~pre17+dfsg-1) unstable; urgency=low
* Merging upstream version 6.03~pre17+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 17 Jun 2014 22:22:02 +0200
syslinux (3:6.03~pre14+dfsg-2) unstable; urgency=low
* Temporarily let isolinux depend on syslinux-utils for isohybrid
(Closes: #751724).
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 16 Jun 2014 06:30:53 +0200
syslinux (3:6.03~pre14+dfsg-1) unstable; urgency=low
* Correcting spelling mistakes for os-prober integration, thanks to
Zlatko Calusic <zcalusic@bitsync.net> (Closes: #748786).
* Moving isohybrid from isolinux to syslinux-utils for consistency.
* Adding extlinux NEWS file to document bootloader integration in
syslinux-stuff (Closes: #748689).
* Merging upstream version 6.03~pre14+dfsg.
* Dropping nonx86.patch, included upstream.
* Building with embedded gnu-efi.
* Building with gcc-4.8.
* Updating years copyright notices in debian files.
* Dropping debian specific memdiskfind manpage for newly added upstream
one.
* Dropping debian specific isohybrid manpage for newly added upstream
one.
* Updating todo file.
* Updating readme file.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 14 Jun 2014 10:55:07 +0200
syslinux (3:6.03~pre1+dfsg-4) unstable; urgency=low
* Correcting debconf field name for extlinux installation (Closes:
#746785).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 17 May 2014 12:13:41 +0200
syslinux (3:6.03~pre1+dfsg-3) experimental; urgency=low
[ Slawomir Bochenski ]
* Support device names with digits in syslinux.postinst (Closes:
#738287).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 03 May 2014 11:35:29 +0200
syslinux (3:6.03~pre1+dfsg-2) experimental; urgency=low
* Breaking out syslinux.efi to syslinux-efi package.
* Adding a few replaces declarations in control to ease upgrades from
pre-May 2013 experimental uploads to now.
* Breaking out debian specific utilities to syslinux-stuff.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 24 Feb 2014 18:14:48 +0100
syslinux (3:6.03~pre1+dfsg-1) experimental; urgency=low
* Merging upstream version 6.03~pre1+dfsg.
* Updating to standards version 3.9.5.
* Somewhat completing debian/copyright based on a patch from Raphael
Hertzog <hertzog@debian.org> (Closes: #729844).
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 16 Dec 2013 20:52:42 +0100
syslinux (3:6.02+dfsg-1) experimental; urgency=low
* Merging upstream version 6.02+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 15 Oct 2013 08:56:11 +0200
syslinux (3:6.02~pre16+dfsg-3) experimental; urgency=low
* Adding test-patch from upstream to see if syslinux is buildable on
non-intel architectures.
* Building syslinux on all architectures as a test to see which ones
don't fail.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 16 Sep 2013 19:12:22 +0200
syslinux (3:6.02~pre16+dfsg-2) experimental; urgency=low
* Moving forgotten efi loaders from syslinux-dev to syslinux-common
(Closes: #720588).
* Adding note about bios+efi netboot with reference to #720589 (Closes:
#720589).
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 03 Sep 2013 14:50:33 +0200
syslinux (3:6.02~pre16+dfsg-1) experimental; urgency=low
* Updating vcs fields.
* Merging upstream version 6.02~pre16+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 07 Aug 2013 12:04:03 +0200
syslinux (3:6.02~pre15+dfsg-1) experimental; urgency=low
* Merging upstream version 6.02~pre15+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 29 Jul 2013 20:16:46 +0200
syslinux (3:6.02~pre14+dfsg-1) experimental; urgency=low
* Merging upstream version 6.02+pre14.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 29 Jul 2013 11:21:32 +0200
syslinux (3:6.02~pre11+dfsg-1) experimental; urgency=low
* Merging upstream version 6.02~pre11+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 25 Jul 2013 16:35:11 +0200
syslinux (3:6.02~pre9+dfsg-1) experimental; urgency=low
* Merging upstream version 6.02~pre9+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 24 Jul 2013 08:48:18 +0200
syslinux (3:6.02~pre8+dfsg-2) experimental; urgency=low
* Reading /etc/default/extlinux globally in extlinux-update (Closes:
#717399).
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 22 Jul 2013 07:53:29 +0200
syslinux (3:6.02~pre8+dfsg-1) experimental; urgency=low
* Merging upstream version 6.02~pre8+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 20 Jul 2013 03:01:36 +0200
syslinux (3:6.02~pre7+dfsg-1) experimental; urgency=low
* Adding vcs fields.
* Wrapping control fields.
* Merging upstream version 6.02~pre7+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 19 Jul 2013 12:22:17 +0200
syslinux (3:6.02~pre5+dfsg-1) experimental; urgency=low
* Merging upstream version 6.02~pre5+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 15 Jul 2013 19:57:07 +0200
syslinux (3:6.02~pre4+dfsg-1) experimental; urgency=low
* Merging upstream version 6.02~pre4+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 12 Jul 2013 14:42:02 +0200
syslinux (3:6.01+dfsg-1) experimental; urgency=low
* Merging upstream version 6.01.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 04 Jul 2013 16:50:25 +0200
syslinux (3:6.01~pre6+dfsg-1) experimental; urgency=low
* Merging upstream version 6.01~pre6+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 03 Jul 2013 14:40:33 +0200
syslinux (3:6.01~pre5+dfsg-1) experimental; urgency=low
* Merging upstream version 6.01~pre5+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 28 Jun 2013 18:43:04 +0200
syslinux (3:6.00+dfsg-1) experimental; urgency=low
* Merging upstream version 6.00+dfgs.
* Using gcc-4.7 for the time being until gcc-multilib has been fixed for
gcc-4.8, preventing FTBFS.
* Updating syslinux-dev lintian overrides.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 24 Jun 2013 11:33:30 +0200
syslinux (3:6.00~pre5+dfsg-1) experimental; urgency=low
* Merging upstream version 6.00~pre5+dfsg.
* Dropping gnu-efi.patch, included upstream.
* Increasing version on gnu-efi build-depends.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 10 Jun 2013 18:02:14 +0200
syslinux (3:6.00~pre4+dfsg-11) experimental; urgency=low
* Using consistent spelling of bootloader at various places.
* Marking syslinux-common as amd64 and i386 only, rather than any.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 07 Jun 2013 12:56:01 +0200
syslinux (3:6.00~pre4+dfsg-10) experimental; urgency=low
* Correcting typo in extlinux debhelper install file (Closes: #710306).
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 30 May 2013 00:16:43 +0200
syslinux (3:6.00~pre4+dfsg-9) experimental; urgency=low
* Sourcing common function in first extlinux-update subscript too
(Closes: #710212).
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 29 May 2013 07:42:35 +0200
syslinux (3:6.00~pre4+dfsg-8) experimental; urgency=low
* Correcting installation path for /etc/extlinux.d scripts.
* Correcting installation path for /etc/extlinux.d scripts.
* Splitting fileupdate function in extlinux-update to subscript.
* Reading extlinux defaults file in all extlinux-update subscripts.
* Running defaults creation for extlinux-update as subscript too.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 28 May 2013 16:58:35 +0200
syslinux (3:6.00~pre4+dfsg-7) experimental; urgency=low
* Adding note about md raid superblock 1.2 in extlinux readme (Closes:
#612846).
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 28 May 2013 07:04:24 +0200
syslinux (3:6.00~pre4+dfsg-6) experimental; urgency=low
* Bailing out early in extlinux-install when no kernels can be found at
/boot/vmlinuz (Closes: #709857).
* Doing initial split of extlinux-update into sub-scripts (Closes:
#587727).
* Moving check for /boot/vmlinuz from extlinux-update to extlinux-
update/0010-linux.
* Updating bailout check for extlinux-update memdisk script.
* Updating bail out check for extlinux-update os-proper script.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 27 May 2013 15:58:49 +0200
syslinux (3:6.00~pre4+dfsg-5) experimental; urgency=low
* Replacing indirect make calls in rules with direct ones, apparently
there were some changes post-wheezy that make it fail now otherwise.
* Use version number sorting in extlinux-update, thanks to Bjorn Mork
<bjorn@mork.no> (Closes: #708028).
* Avoid stripping quotes in EXTLINUX_PARAMETERS variable of extlinux-
update, thanks to Bjorn Mork <bjorn@mork.no> (Closes: #708215).
* Using conv=notrunc when dd'ing mbr to devices.
* Moving to section admin like the other bootloader packages in debian
do.
* Harmonizing package dependencies.
* Harmonizing package descriptions.
* Moving stuff arround in rules for FHS compliance rather than in the
debhelper install files for reduced packaging complexity.
* Removing additional dos files.
* Folding debhelper manpages files into install files for easier package
separation.
* Moving non-syslinux bootloader packaging files from syslinux to
syslinux-common.
* Moving syslinux mbr file location to /usr/lib/syslinux/mbr.
* Moving syslinux-common modules file location to /usr/lib/syslinux-
common/modules.
* Moving syslinux-common modules file location to /usr/lib/syslinux-
common/modules.
* Splitting out isolinux into own package for syslinux-installer and
debian-live usage.
* Splitting out pxelinux into own package for syslinux-installer and
debian-live usage.
* Splitting out utils into own package to relieve burden on syslinux and
syslinux-common.
* Completing syslinux package contents.
* Completing syslinux-udeb package contents.
* Renaming /usr/lib/extlinux to correct upstream naming scheme.
* Splitting pseudo architecture-independent files for use by debian-cd
and other development related files out into syslinux-dev package to
relieve burden on syslinux-common (usually installed by anyone using
any of the syslinux, extlinux, isolinux, or pxelinux package) and to
allow debian-live to use architecture-dependent files on non-uploader
architectures.
* Including upstream samples as examples in syslinux-dev.
* Moving bootloader specific documentation to bootloader packages.
* Updating paths in extlinux kernel integration for updated packaging.
* Updating todo file.
* Removing executable bit from efi files.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 15 May 2013 20:19:36 +0200
syslinux (3:6.00~pre4+dfsg-4) experimental; urgency=low
[ Gustavo Franco ]
* First extlinux-installer commit.
* Add missing extlinux-installer findfs function.
[ Daniel Baumann ]
* Removing useless whitespaces at EOL and EOF in extlinux-installer.
* Removing mtab handling in extlinux-installer, not needed for syslinux.
* Removing extlinux-installers functions.sh, is_floppy was the only
remaining function and is not useful.
* Removing commented and not useful 'set -x ' call in extlinux-
installer.
[ Otavio Salvador ]
* Do not mark templates as translatable in extlinux-installer.
* Improve extlinux-installers bootdev template.
[ Daniel Baumann ]
* Unifying indenting in extlinux-installer files.
* Unifying extlinux-installer bailout messages.
[ Gustavo Franco ]
* Rename extlinux-installer to syslinux-installer.
* Stop chrooting and use in-target to run extlinux-install in syslinux-
installer.
* Add in-target call to extlinux-update writing its configuration in
syslinux-installer.
* Add extlinux-update-failed template for syslinux-installer.
[ Otavio Salvador ]
* Include templates for os-prober support in syslinux-installer.
[ Daniel Baumann ]
* Building syslinux-installer on amd64 as well.
* Making syslinux-installers depends on di-utils unversioned.
* Using now official Package-Type field for udeb in control.
* Building syslinux-installer on Progress Linux only.
* Readding syslinux-udeb on Progress Linux only.
* Putting syslinux-installer into debian-installer section.
* Sorting control file.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 25 Mar 2013 10:26:20 +0100
syslinux (3:6.00~pre4+dfsg-3) experimental; urgency=low
* Removing all references to my old email address.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 10 Mar 2013 21:50:17 +0100
syslinux (3:6.00~pre4+dfsg-2) experimental; urgency=low
* Updating todo file.
* Removing geodsp.patch, not required anymore.
* Renumbering patches.
* Replacing hackish check for GPT with proper detection using blkid from
util-linux.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 10 Mar 2013 21:47:54 +0100
syslinux (3:6.00~pre4+dfsg-1) experimental; urgency=low
* Merging upstream version 6.00~pre4+dfsg.
* Rediffing geodsp.patch.
* Using clean target instead of no-longer-existing dist-clean in rules.
* Adding gnu-efi to build-depends.
* Removing version.mk in clean target of rules.
* Adding slightly patch from Matt Fleming <matt.fleming@intel.com> to fix
build with gnu-efi >= 3.0s.
* Dropping workarounds for gcc-4.7.
* Disabling dh_auto_test in rules, test target is defined but incomplete
and makes the build fail otherwise.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 21 Feb 2013 07:00:55 +0100
syslinux (2:5.01+dfsg-1) unstable; urgency=low
* Merging upstream version 5.01+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 31 Jan 2013 11:24:05 +0100
syslinux (2:5.00+dfsg-1) unstable; urgency=low
* Merging upstream version 5.00+dfsg.
* Removing Otavio from uploaders with his consent.
* Updating to standards version 3.9.4.
* Updating years in copyright file.
* Dropping dpkg-source compression levels.
* Rediffing isolinux-quiet.patch.
* Rediffing pxelinux-quiet.patch.
* Rediffing ldlinux-quiet.patch.
* Renaming patches with 4 digit prefix.
* Tightening diff headers.
* Using findmnt instead of df-parsing in extlinux.postinst to find root
partition, thanks to Marcin Szewczyk <debian.bugreport@wodny.org>
(Closes: #670515).
* Including gptmbr.bin in extlinux and syslinux-udeb too in preparation
for gpt support in distribution scripts.
* Adding initial support for gpt in extlinux distribution scripts
(Closes: #630922).
* Updating date and version headers in local files.
* Updating lintian overrides.
* Removing extra license file for logo.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 28 Jan 2013 09:08:40 +0100
syslinux (2:4.06+dfsg-3) unstable; urgency=low
* Allowing to overwrite symlinks in extlinux-update, thanks to Ivo De
Decker <ivo.dedecker@ugent.be> (Closes: #687848).
* Adding patch to update list of supported filesystems in extlinux
manpage (Closes: #692844).
* Adding missing support for menu default handling (Closes: #691644).
* Updating date and version headers in local manpages.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 05 Dec 2012 12:40:43 +0100
syslinux (2:4.06+dfsg-2) unstable; urgency=low
* Applying patch from Tom Jampen <jampen@cryptography.ch> to add a
workaround in root device detection of extlinux' postinst for bugs
in df (see #656067 and #656333) in connection with UUIDs.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 08 Nov 2012 12:30:29 +0100
syslinux (2:4.06+dfsg-1) unstable; urgency=low
* Updating upstream URLs.
* Updating todo file.
* Merging upstream version 4.06+dfsg.
* Removing as-needed.patch, included upstream.
* Removing efi-mbr.patch, included upstream.
* Removing ext2-header.patch, included upstream.
* Renumbering patches.
* Updating conffiles.patch to make extlinux add /boot/extlinux and
/extlinux directories for bootloader configuration files.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 01 Nov 2012 15:59:34 +0100
syslinux (2:4.05+dfsg-6) unstable; urgency=low
* Using official package-type for udeb packages in control now.
* Switching to xz compression.
* Updating todo file.
* Making some editorial changes in copyright file.
* Adding copyright headers in local debian additions.
* Adding patch from Andy Whitcroft <apw@canonical.com> to fix FTBFS
with 3.4.x kernels (Closes: #676405).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 30 Jun 2012 14:11:21 +0200
syslinux (2:4.05+dfsg-5) unstable; urgency=low
* Adding patch to add alternative locations in for configuration files
for the bootloader configuration.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 23 May 2012 06:46:15 +0200
syslinux (2:4.05+dfsg-4) unstable; urgency=low
* Updating compression handling for udeb with newer debhelper.
* Build-depending on gcc-4.6 for the time being in order to avoid
miscompiling default gcc-4.7 (Closes: #672520).
* Removing bootloader configuration files for extlinux in postrm when
purging package (Closes: #672380).
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 18 May 2012 09:11:09 +0200
syslinux (2:4.05+dfsg-3) unstable; urgency=low
* Updating todo file.
* Cherry-picking patch from Matthew Garrett <mjg@redhat.com> for
isohybrid to generate MBR even when in EFI mode.
* Only omitting intended ms-dos executables, not a few additional c32
modules too (Closes: #663302).
* Adding Indonesian debconf translations from Kurniawan Haikal
<conecones@gmail.com> (Closes: #658512).
* Updating to debhelper version 9.
* Updating to standards version 3.9.3.
* Updating copyright file machine-readable format version 1.0.
* Adding NTFS in package descriptions.
* Adding recommends to os-prober to extlinux.
* Polish indenting in readme.
* Correcting email address in previous changelog entry.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 08 May 2012 15:31:06 +0200
syslinux (2:4.05+dfsg-2) unstable; urgency=low
* Adding patch from Micah Gersten <micahg@ubuntu.com> to fix FTBFS
with --as-needed (Closes: #654838).
* Switching to numeric (reverse) sorting in extlinux-update, thanks to
Thomas Viehweger <patchesThomas.Vie@web.de> (Closes: #657671).
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 27 Jan 2012 22:32:28 +0100
syslinux (2:4.05+dfsg-1) unstable; urgency=low
* Merging upstream version 4.05+dfsg:
- compatible with gfxboot 4.4 (Closes: #653048).
* Rediffing ldlinux-quiet.patch.
* Removing geometrie.patch, included upstream.
* Removing isohybrid-gpt.patch, included upstream.
* Rediffing gfxboot-menu-label.patch.
* Renumbering patches.
* Adding Dutch debconf translations from Jeroen Schot <schot@a-
eskwadraat.nl> (Closes: #652626).
* Moving mtools from suggests to recommends (Closes: #651028).
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 23 Dec 2011 14:08:52 +0100
syslinux (2:4.04+dfsg-9) unstable; urgency=low
* Using linux keyword for linux kernel images to profit from syslinux'
automagic (Closes: #647603).
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 24 Nov 2011 11:20:58 +0100
syslinux (2:4.04+dfsg-8) unstable; urgency=low
* Updating accidentally my wrong email address in previous changelog
entry.
* Updating isohybrid-gpt.patch to not fail with --as-needed, thanks to
Colin Watson <cjwatson@ubuntu.com> (Closes: #648727).
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 15 Nov 2011 23:39:16 +0100
syslinux (2:4.04+dfsg-7) unstable; urgency=low
* Adding Slovak debconf translations from Slavko <linux@slavino.sk>
(Closes: #647086).
* Adding patch from Colin Watson <cjwatson@ubuntu.com> to gfxboot.c32
to allow boot entry to start with label instead of menu_label.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 02 Nov 2011 07:57:23 +0100
syslinux (2:4.04+dfsg-6) unstable; urgency=low
* Adding patch from Matthew Garrett <mjg59@srcf.ucam.org> to generate
GPT and Mac bootable images isohybrid images.
* Sorting overrides in rules alphabetically.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 28 Oct 2011 22:28:55 +0200
syslinux (2:4.04+dfsg-5) unstable; urgency=low
* Adding patch from Gene Cumm <gene.cumm@gmail.com> to fix geometry
handling in extlinux (Closes: #626488).
* Using compression level 9 also for binary packages.
* Adding patch to make ldlinux quiet by default.
* Adding patch to add option to enable verbose messages.
* Renumbering patches.
* Making isolinux quiet by default and dropping dedicated quiet
flavour.
* Making pxelinux quiet by default and dropping dedicated quiet
flavour.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 12 Oct 2011 21:19:34 +0200
syslinux (2:4.04+dfsg-4) unstable; urgency=low
* Correcting typo in error message if a extlinux theme cannot be
found, thanks to M. Dietrich <mdt@emdete.de> (Closes: #639688).
* Moving extlinux from /usr/sbin to /usr/bin.
* Adding syslinux-udeb in agreement with debian-installer team.
* Avoid installing ms-dos executable into syslinux-common.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 22 Sep 2011 20:43:09 +0200
syslinux (2:4.04+dfsg-3) unstable; urgency=low
* Adding pxelinux quiet flavour.
* Skipping /boot/vmlinuz-*.dpkg-tmp files in extlinux-update (Closes:
#632727).
* Handling cases of separate /boot partitions for memdisk entries too
(Closes: #629080).
* Adding Korean debconf translations from min-ji Kang
<justminji@gmail.com> (Closes: #632012).
* Compacting copyright file.
* Making comments in po file headers consistent.
* Correcting spelling mistakes in changelog.
* Simplify syslinux-common lintian overrides.
* Correcting corrupted date entry in changelog.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 11 Jul 2011 09:48:02 +0200
syslinux (2:4.04+dfsg-2) unstable; urgency=low
* Simply looking up the device where /boot is on in order to
automatically guess the device to write the MBR automatically to,
previously the automagic worked only when / and /boot are on the
same disk.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 23 May 2011 15:03:03 +0200
syslinux (2:4.04+dfsg-1) unstable; urgency=low
* Merging upstream version 4.04+dfsg.
* Removing pxelinux.patch, included upstream.
* Updating to standards version 3.9.2.
* Updating year in copyright file.
* Correcting MBR size to the actual value (440), thanks to Kolja Nowak
<kolja@nowak2000.de> (Closes: #614686).
* Skipping files matching '^initrd.*' from automatically being added
as memdisk entries (Closes: #618442).
* Adding Danish debconf translations from Joe Hansen
<joedalton2@yahoo.dk> (Closes: #621022).
* Adding isolinux quiet flavour.
* Adding patch from Salvatore Bonaccorso <carnil@debian.org> to use
use Digest::SHA for utils/sha1pass (Closes: #625812).
* Updating recommends on libdigest-sha-perl.
* Disabling diag/geodsp temporariily, it currently fails to build.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 16 May 2011 09:44:07 +0200
syslinux (2:4.03+dfsg-12) unstable; urgency=low
* Updating defaults for default boot entry (Closes: #613054).
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 20 Feb 2011 00:39:01 +0100
syslinux (2:4.03+dfsg-11) unstable; urgency=low
* Adding missing echo in readlink call of extlinux postinst (Closes:
#612259).
* Shortening apt-get call for install syslinux-themes in readme.
* Adding note about requirement of the bootable flag in extlinux
readme (Closes: #612693).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 12 Feb 2011 21:14:58 +0100
syslinux (2:4.03+dfsg-10) unstable; urgency=low
* Updating maintainer and uploaders fields.
* Removing vcs fields.
* Removing references to my old email address.
* Makeing packaging distribution neutral.
* Shortening instructions in extlinux readme file regarding theme
packages.
* Translate UUID to classic device names in extlinux postinst script
when calling extlinux-installer, thanks to Fabian Greffrath
<fabian@greffrath.com> (Closes: #610604).
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 06 Feb 2011 08:38:40 +0100
syslinux (2:4.03+dfsg-9) experimental; urgency=low
* Making directory where to look for memdisk images configurable
(Closes: #610389).
* Correcting quoting of os-proper support in extlinux-update (Closes:
#610537).
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 19 Jan 2011 18:24:21 +0100
syslinux (2:4.03+dfsg-8) experimental; urgency=low
* Adding Brazilian-Portuguese debconf translations from Adriano Rafael
Gomes <adrianorg@gmail.com> (Closes: #610412).
* Applying slightly modified patch from Fabian Greffrath
<fabian@greffrath.com> to add support for os-prober in extlinux-
update.
* Updating some variable names in extlinux-update a bit.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 19 Jan 2011 09:51:36 +0100
syslinux (2:4.03+dfsg-7) experimental; urgency=low
* Adding patch from upstream to fix regression with pxelinux and gpxe
with qemu, thanks to Gene Cumm <gene.cumm@gmail.com> (Closes:
#592875).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 08 Jan 2011 17:18:54 +0100
syslinux (2:4.03+dfsg-6) experimental; urgency=low
* Updating extlinux-udpate manpage to reflect current default for
extlinux entries.
* Unconditionally default to true for extlinux memdisk option in
extlinux-update.
* Updating entry about extlinux timeout in extlinux-update manpage for
consistency.
* Removing extlinux-{install,update} legacy symlinks to
{install,update}-extlinux.
* Removing superfluous default entry in linux.cfg (Closes: #609303).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 08 Jan 2011 14:19:23 +0100
syslinux (2:4.03+dfsg-5) experimental; urgency=low
* Adding memdisk support for images stored in /boot.
* Prefixing internal linux labels with 'l' for consistency.
* Failing earlier in extlinux-install when user has not specified a
device to install.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 07 Jan 2011 13:21:13 +0100
syslinux (2:4.03+dfsg-4) experimental; urgency=low
* Adding Italian debconf translations from Enrico Rossi
<e.rossi@tecnobrain.com> (Closes: #607768).
* Using breaks instead of conflicts in control, since this version is
for wheezy (and squeeze-backports), so no need for lenny compat
anymore.
* Simplyfing extlinux postinst script.
* Adding a missing escaping of a hyphen in extlinux-install manpage.
* Updating source lintian overrides.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 22 Dec 2010 23:35:29 +0100
syslinux (2:4.03+dfsg-3) experimental; urgency=low
* Correcting mistake imported by me in extlinux-update when adapting
Michaels patch for the update function.
* Removing unneeded REAMDE.source and headers in copyright file.
* Simplyfing make handing in rules.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 19 Dec 2010 22:14:53 +0100
syslinux (2:4.03+dfsg-2) experimental; urgency=low
[ Daniel Baumann ]
* Using tmpfiles when creating configuration files in extlinux-update
(Closes: #607516).
* Applying modified patch from Michael Tokarev <mjt@tls.msk.ru> to not
use tmpfiles but rather update in one go, updated to match existing
codying style.
[ Michael Tokarev ]
* Exiting early in extlinux-update if disabled.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 19 Dec 2010 18:51:53 +0100
syslinux (2:4.03+dfsg-1) experimental; urgency=low
* Merging upstream version 4.03+dfsg.
* Updating to debhelper version 8.
* Switching to source format 3.0 (quilt).
* Correcting typo in extlinux-update manpage, thanks to Jakub Wilk
<jwilk@debian.org> (Closes: #603739).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 20 Nov 2010 17:17:23 +0100
syslinux (2:4.02+dfsg-7) unstable; urgency=medium
[ Otavio Salvador ]
* Unconditionally redirect stdout to stderr (Closes: #597132).
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 14 Oct 2010 23:12:13 +0200
syslinux (2:4.02+dfsg-6) unstable; urgency=medium
[ Otavio Salvador ]
* Adding lacking exec in stdout to stderr redirection (Closes:
#597132).
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 11 Oct 2010 23:17:38 +0200
syslinux (2:4.02+dfsg-5) unstable; urgency=medium
* Updating to standards version 3.9.1.
* Making sure that readlink in extlinux-update doesn't return 1.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 26 Sep 2010 09:26:22 +0200
syslinux (2:4.02+dfsg-4) unstable; urgency=medium
[ Daniel Baumann ]
* Adding Japanese debconf translations from Hideki Yamane
<henrich@debian.org> (Closes: #595456).
* Adjusting output when looking for extlinux directory in
extlinux scripts.
[ Otavio Salvador ]
* Redirect stdout to stderr due Debconf usage (Closes: #597132).
[ Fabian Greffrath ]
* Adding some special case handling for when the theme directory is a
symlink (Closes: #591479).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 25 Sep 2010 08:14:47 +0200
syslinux (2:4.02+dfsg-3) unstable; urgency=medium
* Updating extlinux readme.
* Updating check for extlinux in extlinux kernel hook (Closes:
#591567).
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 04 Aug 2010 01:52:41 +0200
syslinux (2:4.02+dfsg-2) unstable; urgency=medium
[ Daniel Baumann ]
* Correcting previous changelog entry which had a cropped bug closing.
* Updating extlinux postinst for renamed kernel hoook (Closes:
#590236).
[ Otavio Salvador ]
* Stop searching for EXTLINUX directory.
* extlinux-update: create /boot/extlinux in case it do not exists.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 01 Aug 2010 07:58:44 +0200
syslinux (2:4.02+dfsg-1) unstable; urgency=medium
* Updating TODO file.
* Adding Czech debconf translations from Michal Simunek
<michal.simunek@gmail.com> (Closes: #589806).
* Adding Spanish debconf translations from Camaleón
<noelamac@gmail.com> (Closes: #589929).
* Merging upstream version 4.02+dfsg:
- checks for diskspace when creating temporary files (Closes: #245152).
- respects environment variables when creating temporary files
(Closes: #245153).
* Updating po file headers.
* Removing dos-win32.patch, not required anymore.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 24 Jul 2010 18:33:50 +0200
syslinux (2:4.01+dfsg-4) unstable; urgency=medium
* Correcting variables in syslinux readme, thanks to Fabian
Greffrath <fabian@greffrath.com> (Closes: #588889).
* Adding French debconf translations from Julien Patriarca
<patriarcaj@gmail.com> (Closes: #588942).
* Unexporting LDFLAGS in rules to avoid problems with dpkg-buildflags,
thanks to Colin Watson <cjwatson@ubuntu.com> (Closes: #589041).
* Updating extlinux readme file.
* Shortening language team header entry in French debconf
translations.
* Adding Russian debconf translations from Yuri Kozlov
<yuray@komyakino.ru> (Closes: #589253).
* Correcting typo in header of Russian debconf translations.
* Updating version string in po headers.
* Adding Swedish debconf translations from Martin Bagge
<brother@bsnet.se> (Closes: #589262).
* Renaming extlinux kernel to to zz-extlinux to match new kernel
policy.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 18 Jul 2010 16:11:48 +0200
syslinux (2:4.01+dfsg-3) unstable; urgency=medium
* Reverting too strong depends and leaving it as it was before. This
does not reopen #588210, since that's not possible in lenny and
would uselessly make backporting harder. Once squeeze is released,
breaks will be used (Closes: #588678).
* Adding instructions to readme in syslinux on how to create
the floppy images manually (Closes: #588673).
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 12 Jul 2010 19:28:21 +0200
syslinux (2:4.01+dfsg-2) unstable; urgency=medium
* Correcting spelling error in previous changelog entry.
* Adding versioned conflicts against syslinux-common to extlinux
(Closes: #588210).
* Using source version for versioned conflicts and replaces instead of
explicit version numbers.
* Correcting debconf default for extlinux/install.
* Also adding symlinks from extlinux-install to install-extlinux for
convenience purposes.
* Making extlinux-install output a bit more verbose.
* Passing additional parameters given to extlinux-install to extlinux
call, useful when e.g. wanting to use --raid or --once.
* Adjusting some headers in the German po file.
* Adding Portuguese debconf translations from Américo Monteiro
<a_monteiro@netcabo.pt> (Closes: #588487).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 10 Jul 2010 22:24:07 +0200
syslinux (2:4.01+dfsg-1) unstable; urgency=medium
* Saving current mbr to /boot in extlinux-install, thanks Fabian
Greffrath <fabian@greffrath.com> for the idea.
* Updating message when writing new mbr in extlinux-install.
* Silencing dd calls in extlinux-install, thanks to Fabian Greffrath
<fabian@greffrath.com>.
* Dropping floppy images from /usr/lib/syslinux, not really useful
anymore in these days.
* Downgrading dosfstools and mtools recommends to suggests.
* Also dropping local mtoolsrc config file previously used during
build to create floppy images.
* Sorting dh call in rules to more common order.
* Merging upstream version 4.01+dfsg:
- Fixes regression on some older machines (Closes: #587150).
* Removing extlinux-manpage.patch, went upstream.
* Removing syslinux-manpage.patch, went upstream.
* Updating package short and long descriptions.
* Shortening version strings in versioned conflicts.
* Appending .old suffix to backup mbr to reflect that it's not the
current mbr.
* Calling dh_install with fail-missing.
* Completing debhelper install files.
* Updating lintian overrides.
* Adding manpage for isohybrid.pl.
* Adding manpage for memdiskfind.
* Adding manpage for pxe-options.
* Correcting name of pxelinux-options manpage.
* Workarounding dh_installman automatism that leads to wrong handling
of isohybrid.pl manpage.
* Adding note about automatic mbr backups through extlinux-install in
readme.
* Adding debconf question to automatically install extlinux into the
mbr.
* Correcting spelling of MBR.
* Adding extlinux config script for debconf.
* Updating TODO file.
* Updating extlinux postinst to cope with UUIDs.
* Adding note in extlinux debconf templates about limitations of the
automatic installation.
* Regenerating debconf files.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 04 Jul 2010 21:15:14 +0200
syslinux (2:4.00+dfsg-1) unstable; urgency=medium
* Updating standards version to 3.9.0.
* Merging upstream version 4.00+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 29 Jun 2010 00:54:14 +0200
syslinux (2:4.00~pre64+dfsg-1) unstable; urgency=low
* Merging upstream version 4.00~pre64+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 28 Jun 2010 13:44:49 +0200
syslinux (2:4.00~pre63+dfsg-1) unstable; urgency=low
* Calling extlinux-update in extlinux postinst script to automatically
re-populate /etc/default/extlinux on updates.
* Rather than calling extlinux-update directly in postinst script,
execute kernel hook.
* Merging upstream version 4.00~pre63+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 27 Jun 2010 23:34:17 +0200
syslinux (2:4.00~pre62+dfsg-1) unstable; urgency=low
* Adding comments in extlinux hook file.
* Prefixing internal variables with underscore in extlinux hook
script.
* Exit early if extlinux was removed (!= purged) in extlinux hook
script.
* Running extlinux hook file with set -e.
* Updating comments in extlinux-install script.
* Prefixing internal variables with underscore in extlinux-install
script.
* Prefixing internal variables with underscore in extlinux-update
script.
* Merging upstream version 4.00~pre62+dfsg.
* Correcting typo in extlinux readme.
* Automatically dropping 'quiet' boot parameter from recovery entries
in extlinux-update script.
* Adding information about all variables used in /etc/default/extlinux
in extlinux-update manpage.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 27 Jun 2010 14:08:42 +0200
syslinux (2:4.00~pre61+dfsg-1) unstable; urgency=low
* Merging upstream version 4.00~pre61.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 26 Jun 2010 23:17:32 +0200
syslinux (2:4.00~pre60+dfsg-1) unstable; urgency=low
* Merging upstream version 4.00~pre60.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 26 Jun 2010 17:10:57 +0200
syslinux (2:4.00~pre59+dfsg-1) unstable; urgency=medium
* Merging upstream version 4.00~pre59+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 24 Jun 2010 23:37:34 +0200
syslinux (2:4.00~pre58+dfsg-1) unstable; urgency=medium
* Merging upstream version 4.00~pre58+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 24 Jun 2010 16:48:54 +0200
syslinux (2:4.00~pre57+dfsg-1) unstable; urgency=medium
* Updating TODO, extlinux integration scripts verified to work
properly with UUIDs.
* Always rewriting extlinux default file to ensure updates with new
features get automatically propagated.
* Adding option for controlling how many kernel entries should be put
into the config through extlinux-update.
* Merging upstream version 4.00~pre57+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 23 Jun 2010 23:25:13 +0200
syslinux (2:4.00~pre56+dfsg-1) unstable; urgency=medium
* Merging upstream version 4.00~pre56+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 23 Jun 2010 15:07:24 +0200
syslinux (2:4.00~pre55+dfsg-2) unstable; urgency=medium
* Adding libdigest-sha1-perl to recommends (Closes: #586767).
* Mentioning salt in sha1pass manpage, thanks to Mats Erik Andersson
<mats.andersson@gisladisker.se>.
* Adding manpage for md5pass as suggested by Mats Erik Andersson
<mats.andersson@gisladisker.se>.
* Adding manpage for mkdiskimage from Mats Erik Andersson
<mats.andersson@gisladisker.se> with some minor formatting changes.
* Adding manpage for isohybrid.
* Stopping to include keytab-lilo script in syslinux-common, it's
already included in the lilo package (at different location though).
* Correcting typo in previously added syslinux manpages file.
* Shortening package short-description of syslinux-common to not
exceed 80 characters.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 22 Jun 2010 16:44:16 +0200
syslinux (2:4.00~pre55+dfsg-1) unstable; urgency=medium
* Merging upstream version 4.00~pre55+dfsg.
* Adding sample readme file for extlinux describing how to
setup extlinux as the bootloader.
* Renaming update-extlinux to extlinux-update for consistency reasons,
but keeping symlinks to update-extlinux arround. Thanks to Ralph
Amissah <ralph.amissah@gmail.com>.
* Correcting typo in wrong conflicts of syslinux.
* Updating version number and date in headers of local manpages.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 22 Jun 2010 03:16:41 +0200
syslinux (2:4.00~pre54+dfsg-1) unstable; urgency=medium
* Adding and updating missing conflicts/replaces to easy upgrade from
syslinux 3.x to 4.x.
* Removing some more forgotten menu default entries that need to go
away.
* Merging upstream version 4.00~pre54+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 21 Jun 2010 20:38:44 +0200
syslinux (2:4.00~pre53+dfsg-1) unstable; urgency=medium
* Merging upstream version 4.00~pre53.
* Updating TODO file.
* Updating syslinux-common.install for new upstream.
* Updating package description to mention newly supported filesystems.
* Moving isohybrid from syslinux-common to syslinux since it was
rewritten in C.
* Setting the default entry to the newest one in update-extlinux.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 21 Jun 2010 16:40:37 +0200
syslinux (2:3.86+dfsg-5) unstable; urgency=low
* Updating update-extlinux for new pathes in the themes package.
* Adding syslinux-themes-debian to recommends of extlinux.
* Correcting path handling in update-extlinux.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 19 Jun 2010 18:03:00 +0200
syslinux (2:3.86+dfsg-4) unstable; urgency=low
* Updating TODO file.
* Moving docs in syslinux-common from /usr/share/doc/syslinux-common
to /usr/share/doc/syslinux.
* Adding manpage for sha1pass (Closes: #557974).
* Adding patch to update syslinux manpage wrt/ default entries as of
syslinux >= 3.85 (Closes: #572083).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 12 Jun 2010 23:12:39 +0200
syslinux (2:3.86+dfsg-3) unstable; urgency=low
* Allowing to disable update-extlinux from being run through
/etc/default/extlinux.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 29 May 2010 07:06:26 +0200
syslinux (2:3.86+dfsg-2) unstable; urgency=low
* Downgrading depends on dosfstools and mtools to recommends.
* Updating syslinux debhelper install file.
* Removing obsolete syslinux manpages debhelper file.
* Removing obsolete syslinux-common manpages debhelper file.
* Check for root permissions in extlinux-install and update-extlinux
scripts.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 18 Apr 2010 11:01:56 +0200
syslinux (2:3.86+dfsg-1) unstable; urgency=low
* Merging upstream version 3.86+dfsg.
* Updating README.source.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 02 Apr 2010 14:38:04 +0200
syslinux (2:3.85+dfsg-2) unstable; urgency=low
* Adding files section in update-extlinux manpage.
* Shortening date string to avoid line break in boot message.
* Flipping inversed logic when creating boot.txt in update-extlinu.
* Replacing kernel postinst/postrm symlink to update-extlinux with a
simple hook that checks if extlinux is enabled or not (Closes:
#573962).
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 19 Mar 2010 09:24:29 +0100
syslinux (2:3.85+dfsg-1) unstable; urgency=low
* Handling case where /boot and / are not on the same filesystem
(Closes: #560954).
* Updating todo file.
* Merging upstream version 3.85+dfsg.
* Updating year in copyright file.
* Rediffing dos-win32.patch.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 21 Feb 2010 09:17:23 +0100
syslinux (2:3.84+dfsg-2) experimental; urgency=low
* Filter out commented lines when update-extlinux is searching for
root in fstab.
* Switching from /boot/extlinux/options.cfg to /etc/default/extlinux
to store update-extlinux settings.
* Updating year in copyright file.
* Updating to standards 3.8.4.
* Adding recommends to libcrypt-passwdmd5-perl in syslinux-common
(Closes: #567649).
* Simplyfing handling of /etc/default/extlinux.
* Including a copy of mbr.bin in extlinux and lowering depends on
syslinux-common to recommends.
* Prefixing variables in /etc/default/extlinux.
* Renaming single-user mode to recovery mode to be consistent with
grub2.
* Using quotes for variable assignements in /etc/default/extlinux.
* Also prefixing forgotten menu label variable.
* Prefixing some more forgotten variables.
* Updating comment for live entries.
* Making timeout and default entries configurable too.
* Using lsb_release to determine distribution string for menu labels,
if available.
* Correcting numbers of empty lines as separators.
* Changing recovery entries shortcut from s to r.
* Starting to count image entries by 0, not by 1.
* Shortening linux image entries to number.
* Renaming kernel.cfg to linux.cfg.
* Making default entries de-configurable.
* Updating todo file.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 09 Feb 2010 18:08:30 +0100
syslinux (2:3.84+dfsg-1) experimental; urgency=low
* Making alternative entries configurable in update-extlinux.
* Using single hashes for 'comments' that get evaluated in update-
extlinux.
* Adding menu help texts in entry of update-extlinux.
* Adding theme-ing support in update-extlinux.
* Adding timeout message when not using a theme in update-extlinux.
* Shortening kernel entries in update-extlinux.
* Adding explicit source version 1.0 until switch to 3.0.
* Merging upstream version 3.84+dfsg.
* Rediffing dos-win32.patch.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 19 Dec 2009 19:46:09 +0100
syslinux (2:3.83+dfsg-5) experimental; urgency=low
* Updating default values for prompt and timeout in update-extlinux.
* Adding note about extlinux.conf in extlinux manpage (Closes:
#548424).
* Correcting spelling mistake in changelog.
* Updating lintian overrides.
* Adding symlinks to update-extlinux for kernel hooks.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 30 Nov 2009 23:29:43 +0100
syslinux (2:3.83+dfsg-4) experimental; urgency=low
* Simplifying debhelper install files.
* Moving syslinux-common from extlinux recommends to depends.
* Adding extlinux-install.
* Adding update-extlinux (Closes: #541293).
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 29 Nov 2009 18:35:23 +0100
syslinux (2:3.83+dfsg-3) unstable; urgency=low
* Adding conflicts/replaces to extlinux against syslinux without
split out extlinux (Closes: #558078).
* Correcting spelling mistake in extlinux long-description (Closes:
#558140).
* Correcting upstream-homepage in copyright.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 28 Nov 2009 22:32:51 +0100
syslinux (2:3.83+dfsg-2) unstable; urgency=low
* Dropping lpia from architectures, lpia is dead.
* Splitting out extlinux into own package in order to use it as a
generic standalone bootloader.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 25 Nov 2009 16:32:33 +0100
syslinux (2:3.83+dfsg-1) unstable; urgency=low
* Updating to standards version 3.8.3.
* Adding maintainer homepage field to control.
* Marking maintainer homepage field to be also included in binary
packages and changelog.
* Adding README.source.
* Removing not required build-dependency to netpbm.
* Moving maintainer homepage from control to copyright.
* Updating README.source.
* Merging upstream version 3.83+dfsg.
* Bumping versioned build-depends on debhelper.
* Bumping versioned build-depends on quilt.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 06 Oct 2009 12:45:42 +0200
syslinux (2:3.82+dfsg-4) unstable; urgency=low
* Updating maintainer field.
* Updating vcs fields.
* Wrapping build-depends and depends.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 14 Aug 2009 16:03:31 +0200
syslinux (2:3.82+dfsg-3) unstable; urgency=low
* Dropping --fail-missing from dh_install, apparently debhelper can
not deal sanely with that when using minimized rules files and
building an arch all package (Closes: #540395).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 08 Aug 2009 10:38:09 +0200
syslinux (2:3.82+dfsg-2) unstable; urgency=low
* Updating year in copyright file.
* Updating package to standards version 3.8.2.
* Renaming directory to store local additions to more sensible
name.
* Simplyfing shell error handling in rules file.
* Updating lintian overrides.
* Merging patches to avoid building dos and win32 binaries.
* Minimizing rules file.
* Adding misc depends to syslinux-common.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 07 Aug 2009 10:39:41 +0200
syslinux (2:3.82+dfsg-1) unstable; urgency=low
* Merging upstream version 3.82+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 09 Jun 2009 19:54:41 +0200
syslinux (2:3.81+dfsg-1) unstable; urgency=low
* Merging upstream version 3.81+dfsg:
- Adds support for idle mode (Closes: #504495).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 30 May 2009 09:50:32 +0200
syslinux (2:3.80+dfsg-1) unstable; urgency=low
* Using correct rfc-2822 date formats in changelog.
* Merging upstream version 3.80+dfsg.
* Simplyfing build-depends on nasm.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 05 May 2009 09:21:47 +0200
syslinux (2:3.75+dfsg-1) unstable; urgency=low
* Merging upstream version 3.75+dfsg.
* Removing extlinux-typo.patch, went upstream.
* Removing extlinux manpage, went upstream.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 16 Apr 2009 22:44:00 +0200
syslinux (2:3.74+dfsg-2) unstable; urgency=low
* Adding build-depends to python (Closes: #523507).
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 10 Apr 2009 20:16:00 +0200
syslinux (2:3.74+dfsg-1) unstable; urgency=low
* Updating standards to 3.8.1.
* Merging upstream version 3.74+dfsg.
* Using quilt rather than dpatch.
* Removing old conflicts and replaces.
* Adding manpage for extlinux from Brian Pellin <bpellin@gmail.com>
(Closes: #520849).
* Tidy rules file.
* Updating rules file to current state of the art.
* Making the build directory a subdirectory of to avoid hypotetical
problems with make and rule target naming clashes.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 09 Apr 2009 21:28:00 +0200
syslinux (2:3.73+dfsg-2) unstable; urgency=low
* Uploading to unstable.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 15 Feb 2009 18:16:00 +0100
syslinux (2:3.73+dfsg-1) experimental; urgency=low
* Replacing obsolete dh_clean -k with dh_prep.
* Merging upstream version 3.73+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 26 Jan 2009 13:21:00 +0100
syslinux (2:3.72+dfsg-1) experimental; urgency=low
* Updating vcs fields in control file.
* Merging upstream version 3.72+dfsg.
* Rediffing win32.dpatch.
* Removing 64bit-autodetection patches, replaced by upstreams ifcpu64.c32.
* Removing menu-beep.dpatch, not needed anymore.
* Removing zero-files.dpatch, not needed anymore.
* Adding dos.dpatch to prevent dos executables beeing installed.
* Renumbering extlinux-typo.dpatch.
* Using the Makefiles install target to install syslinux rather than copying
manually.
* Completing clean target in rules.
* Updating lintian overrides for syslinux-common.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 11 Oct 2008 10:45:00 +0200
syslinux (2:3.71+dfsg-5) unstable; urgency=medium
* Adding missing conflicts/replaces to allow package upgrades
(Closes: #497992, 497996).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 06 Sep 2008 08:46:00 +0200
syslinux (2:3.71+dfsg-4) unstable; urgency=medium
* Splitting syslinux into syslinux and syslinux-common to allow accessing
bootloader files on other arches too (Closes: #278181, #357145, #436650).
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 03 Sep 2008 09:33:00 +0200
syslinux (2:3.71+dfsg-3) unstable; urgency=high
* Adding patch from upstream to fix correct isolinux handling of zero-length
files (Closes: #496869).
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 03 Sep 2008 08:33:00 +0200
syslinux (2:3.71+dfsg-2) unstable; urgency=medium
* Adding dosfstools to recommends (Closes: #253768).
* Added patch to correct a typo in extlinux documentation (Closes: #457844).
* Also including md5pass and sha1pass utility (Closes: #494973).
* Adding lintian overrides for having com32 modules executable.
* Also removing core/.depend in clean target of rules file.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 25 Aug 2008 05:20:00 +0200
syslinux (2:3.71+dfsg-1) unstable; urgency=low
* Updating VERSION variable in rules to match new upstream.
* Merging upstream version 3.71+dfsg.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 03 Aug 2008 16:02:00 +0200
syslinux (2:3.70+dfsg-3) unstable; urgency=medium
* Adding patch from Samuel Thibault <samuel.thibault@ens-lyon.org> to
also support beeps in graphical menu (Closes: #491571).
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 20 Jul 2008 18:28:00 +0200
syslinux (2:3.70+dfsg-2) unstable; urgency=low
* Stopping to build win32/syslinux.exe as it is of no real use on a linux
system. People interested in that very binary can get it from the upstream
source tarball.
* Updating package description (Closes: #484513).
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 11 Jul 2008 00:15:00 +0200
syslinux (2:3.70+dfsg-1) unstable; urgency=medium
* New upstream release.
* Upgrading package to debhelper 7.
* Adding vcs fields in control file.
* Rewriting copyright file in machine-interpretable format.
* Rediffing all patches.
* Adding lpia to architectures.
* Reordering rules file.
* Using install debhelper file rather instead of install target in rules.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 01 Jul 2008 21:12:00 +0200
syslinux (2:3.70~pre18+dfsg-1) experimental; urgency=low
* New upstream release.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 16 Jun 2008 12:43:00 +0200
syslinux (2:3.70~pre14+dfsg-1) experimental; urgency=low
* New upstream release.
* Adding patch from Ryan Finnie <ryan@finnie.org> to extend 64bit
autodetection to vesamenu.c32 (Closes: #485656).
* Removing watch file.
* Bumping policy.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 10 Jun 2008 21:38:00 +0200
syslinux (2:3.70~pre9+dfsg-1) experimental; urgency=high
* New upstream release:
- Fixes problem with extlinux, which refuses to boot if there are some
deleted files on the ext2 filesystem (see upstream changelog for more
information).
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 10 Apr 2008 21:38:00 +0200
syslinux (2:3.63+dfsg-1) unstable; urgency=high
* New upstream release:
- Fixes problem with extlinux, which refuses to boot if there are some
deleted files on the ext2 filesystem (see upstream changelog for more
information).
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 10 Apr 2008 21:17:00 +0200
syslinux (2:3.70~pre8+dfsg-1) experimental; urgency=low
* New upstream release.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 31 Mar 2008 21:33:00 +0200
syslinux (2:3.70~pre7+dfsg-1) experimental; urgency=low
* New upstream release.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 31 Mar 2008 13:42:00 +0200
syslinux (2:3.62+dfsg-2) unstable; urgency=medium
* Applied patch from morph <matrixhasu@gmail.com> to fix clean target
(Closes: #424225).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 05 Apr 2008 08:02:00 +0200
syslinux (2:3.62+dfsg-1) unstable; urgency=medium
* New upstream release.
* Rediffed 02-64bit-autodetection.dpatch.
* Disabled 03-define-clk-tck.dpatch for now, seems to introduce strange
behaviour with TIMEOUT on pxelinux, needs further investigation.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 31 Mar 2008 13:24:00 +0200
syslinux (2:3.61+dfsg-1) unstable; urgency=medium
* Rebuild upstream tarball without non-free RFC document (Closes: #463930).
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 05 Feb 2008 07:28:00 +0100
syslinux (2:3.61-1) unstable; urgency=low
* New upstream release.
* Bumping package to debhelper 6.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 04 Feb 2008 07:16:00 +0100
syslinux (2:3.60-2) experimental; urgency=low
* Applied update of 02-64bit-autodetection.dpatch from Robert Millan
<rmh@aybabtu.com> (Closes: #462157).
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 24 Jan 2008 07:34:00 +0100
syslinux (2:3.55-2) unstable; urgency=medium
* Applied update of 02-64bit-autodetection.dpatch from Robert Millan
<rmh@aybabtu.com> (Closes: #462157).
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 22 Jan 2008 23:21:00 +0100
syslinux (2:3.60-1) experimental; urgency=low
* New upstream release.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 12 Jan 2008 20:04:00 +0100
syslinux (2:3.55-1) unstable; urgency=low
* New upstream release.
* Don't hide make errors in clean call of rules.
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 12 Jan 2008 19:59:00 +0100
syslinux (2:3.60~pre6-1) experimental; urgency=low
* New upstream release.
* Removed manpages, went upstream.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 20 Dec 2007 08:22:00 +0100
syslinux (2:3.54-1) unstable; urgency=low
* New upstream release.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 13 Dec 2007 09:45:00 +0100
syslinux (2:3.53-1) unstable; urgency=low
* New upstream release.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 18 Nov 2007 17:26:00 +0100
syslinux (1:3.60~pre3-2) unstable; urgency=low
* Only build-depending on gcc-multilib on amd64.
* Removing old build-dependency against ia32-libs-dev.
* Versioning build-depends against nasm.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 16 Nov 2007 11:42:00 +0100
syslinux (1:3.60~pre3-1) unstable; urgency=low
* New upstream release.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 12 Nov 2007 09:18:00 +0100
syslinux (1:3.60~pre2-1) unstable; urgency=low
* New upstream release.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 26 Aug 2007 11:16:00 +0200
syslinux (1:3.60~pre1-1) unstable; urgency=low
* New upstream release.
* Works well with nasm 0.99.02 (Closes: #439418).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 25 Aug 2007 08:01:00 +0200
syslinux (1:3.52~pre5-1) experimental; urgency=low
* New upstream release.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 29 Jul 2007 20:55:00 +0200
syslinux (1:3.52~pre3-1) experimental; urgency=low
* New upstream release.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 15 Jul 2007 19:40:00 +0200
syslinux (1:3.51-1) unstable; urgency=low
* New upstream release.
* Temporarily disabled 02-64bit-autodetection.dpatch; doesn't build anymore.
* Added Otavio as co-maintainer.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 18 Jun 2007 19:04:00 +0200
syslinux (1:3.36-5) unstable; urgency=low
* Added patch from Otavio Salvador <otavio@debian.org> to add support to
change menu vertical and horizontal shifting.
* Added define-clk-tck patch from Timo Aaltonen <tjaalton@cc.hut.fi>.
It defines CLK_TCK, since the com32 libc API does not have any idea about
it, and its include files shadow /usr/include/time.h (which would provide
CLOCKS_PER_SEC).
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 31 May 2007 07:43:00 +0200
syslinux (1:3.36-4) unstable; urgency=medium
* Added build-depends on gcc-multilib (Closes: #423514).
-- Daniel Baumann <mail@daniel-baumann.ch> Sat, 12 May 2007 20:33:00 +0200
syslinux (1:3.36-3) unstable; urgency=medium
* Rebuild because glibc.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 09 May 2007 10:36:00 +0200
syslinux (1:3.50~pre6-1) experimental; urgency=low
* New upstream release.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 01 May 2007 12:18:00 +0200
syslinux (1:3.50~pre5-1) experimental; urgency=low
* New upstream release.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 11 Apr 2007 10:11:00 +0200
syslinux (1:3.36-2) unstable; urgency=low
* Re-uploading previous 3.36-1.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 11 Apr 2007 10:09:00 +0200
syslinux (1:3.31-4) unstable; urgency=medium
* Uploading 3.31-3 from etch again to unstable, to not break the installer.
-- Daniel Baumann <mail@daniel-baumann.ch> Fri, 09 Mar 2007 00:57:00 +0100
syslinux (3.40~pre9-1) experimental; urgency=low
* New upstream release.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 05 Mar 2007 02:05:00 +0100
syslinux (3.36-1) unstable; urgency=low
* New upstream release.
* Rediffed 02-64bit-autodetection.dpatch.
-- Daniel Baumann <mail@daniel-baumann.ch> Mon, 05 Mar 2007 01:32:00 +0100
syslinux (3.31-3) unstable; urgency=medium
* Added patch from Robert Millan <rmh@aybabtu.com> to fix
02-64bit-autodetection.dpatch (Closes: #410729).
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 13 Feb 2007 23:17:00 +0100
syslinux (3.31-2) unstable; urgency=medium
* Including all *.c32 modules (Closes: #391152).
* Added patch from Byron Stanoszek <gandalf@winds.org> to autodetect 64bit
CPUs (Closes: #408138).
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 04 Feb 2007 16:52:00 +0100
syslinux (3.35-1) experimental; urgency=low
* New upstream release.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 04 Feb 2007 16:43:00 +0100
syslinux (3.31-1) unstable; urgency=low
* New upstream release.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 28 Sep 2006 20:11:00 +0200
syslinux (3.20-2) unstable; urgency=low
* Including mbr.bin (Closes: #357146).
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 19 Sep 2006 03:30:00 +0200
syslinux (3.30~pre4-1) experimental; urgency=low
* New upstream pre-release.
-- Daniel Baumann <mail@daniel-baumann.ch> Wed, 06 Sep 2006 22:51:00 +0200
syslinux (3.20-1) unstable; urgency=low
* New upstream release.
* Taking over the package, Juan Cespedes is MIA.
-- Daniel Baumann <mail@daniel-baumann.ch> Tue, 05 Sep 2006 23:21:00 +0200
syslinux (3.11+3.20pre11-1) experimental; urgency=low
* New upstream pre-release.
-- Daniel Baumann <mail@daniel-baumann.ch> Thu, 10 Aug 2006 11:31:00 +0200
syslinux (3.11+3.20pre10-1) experimental; urgency=low
* New upstream pre-release.
* Added myself as co-maintainer.
* Redone packaging based on current debhelper templates, additionally:
- added watch file.
- cleaned up copyright files.
- including all manpages as plain files, dropping docbook-to-man.
- including com32/modules/menu.c32 into the package.
- not using binaries from upstream, building everything from source.
- using dpatch for upstream modifications now.
-- Daniel Baumann <mail@daniel-baumann.ch> Sun, 30 Jul 2006 09:43:00 +0200
syslinux (3.11-3) unstable; urgency=low
* Fixed FTBFS bug with latest "make" (closes: #343619)
* Added "mkdiskimage" to the package (closes: #343617)
-- Juan Cespedes <cespedes@debian.org> Sun, 18 Dec 2005 16:54:26 +0100
syslinux (3.11-2) unstable; urgency=low
* Added correct build-depends for amd64 (Andreas Jochens <aj@andaco.de>)
(Closes: Bug#306123, Bug#249506, Bug#298940)
* Acknowledged old NMU (Closes: #269424)
-- Juan Cespedes <cespedes@debian.org> Wed, 19 Oct 2005 16:00:38 +0200
syslinux (3.11-1) unstable; urgency=low
* New upstream version
* Updated to new FSF postal address
-- Juan Cespedes <cespedes@debian.org> Tue, 18 Oct 2005 16:19:49 +0200
syslinux (2.11-0.1) unstable; urgency=low
* NMU with new upstream release.
- ALL: Add an API call to get the configuration file name.
- SYSLINUX: Fix bug in 2.10 that prevented it from working
correctly for a lot of people. Closes: #269424
- SYSLINUX: In the installer, make mtools a bit less fussy.
- Make the menu system compile with newer gcc's.
-- Joey Hess <joeyh@debian.org> Fri, 10 Sep 2004 12:18:43 -0400
syslinux (2.10-1) unstable; urgency=medium
* New upstream version, fixing many bugs, among them a problem which
prevented syslinux from booting large kernels (thanks to Torsten
Knodt <tk-debian@datas-world.de>) (closes: Bug#224606, Bug#242547)
(closes: Bug#258940)
* New Standards-Version (3.6.1)
* Removed dependency on lilo (closes: Bug#235439)
* syslinux now uses mtools to install the image, it no longer requires
msdos or vfat filesystem in the kernel (closes: Bug#72124)
* Added a "Recommend: mtools" control line (closes: Bug#201354)
-- Juan Cespedes <cespedes@debian.org> Sat, 17 Jul 2004 10:32:37 +0200
syslinux (2.04-1) unstable; urgency=low
* New upstream version, needed for debian-installer (closes: #186356)
* This new upstream version of syslinux already
uses mcopy to generate disk images (closes: Bug#180660)
* New Standards-Version:
+ Get rid of /usr/doc/syslinux symlink
* Replaced all all # comments with /* */ to get rid
of gcc-3.3 preprocessor errors (closes: Bug#196532)
-- Juan Cespedes <cespedes@debian.org> Wed, 11 Jun 2003 11:52:06 +0200
syslinux (2.00-2) unstable; urgency=low
* Fixed typo in description (closes: Bug#178582)
-- Juan Cespedes <cespedes@debian.org> Mon, 27 Jan 2003 13:26:42 +0100
syslinux (2.00-1) unstable; urgency=low
* New upstream version (closes: Bug#174565)
(thanks to Andrea Bedini <andrea@bedini.homelinux.net>)
* Added note about PXE in the description (closes: Bug#151700)
* Added man pages for gethostip, lss16toppm, ppmtolss16
(thanks to dann frazier <dannf@dannf.org>) (closes: Bug#107539)
-- Juan Cespedes <cespedes@debian.org> Sun, 26 Jan 2003 13:49:44 +0100
syslinux (1.75-1) unstable; urgency=low
* New upstream release
* Added "memdisk" to the package (closes: Bug#141605, Bug#143773)
* Added "syslinux-debug.bin" to the package (closes: Bug#143772)
-- Juan Cespedes <cespedes@debian.org> Thu, 20 Jun 2002 13:18:22 +0200
syslinux (1.66-1) unstable; urgency=low
* New upstream version
* Boot images shorter than 64K, including memtest86 (closes: Bug#45133)
-- Juan Cespedes <cespedes@debian.org> Mon, 21 Jan 2002 01:56:55 +0100
syslinux (1.63-1) unstable; urgency=low
* New upstream release, fixing "No setup signature found" bug
found with some newer kernels (closes: Bug#107345)
* Reverted mtools patch for installer (it fails with some
high-capacity floppy formats) (closes: Bug#108096)
-- Juan Cespedes <cespedes@debian.org> Wed, 22 Aug 2001 01:42:58 +0200
syslinux (1.62-5) unstable; urgency=low
* Added "Build-Depends: netpbm" (closes: Bug#97497)
-- Juan Cespedes <cespedes@debian.org> Mon, 14 May 2001 23:38:29 +0200
syslinux (1.62-4) unstable; urgency=low
* Yet another version of `ppmtolss16' from the author (hpa),
fixing a bug regarding color space conversion
-- Juan Cespedes <cespedes@debian.org> Sun, 13 May 2001 17:21:02 +0200
syslinux (1.62-3) unstable; urgency=low
* New version of `ppmtolss16' from the author (hpa)
-- Juan Cespedes <cespedes@debian.org> Tue, 08 May 2001 21:39:45 +0200
syslinux (1.62-2) unstable; urgency=medium
* Changed small typo in manual page names
(sylinux -> syslinux) (closes: Bug#96553)
-- Juan Cespedes <cespedes@debian.org> Mon, 07 May 2001 00:30:09 +0200
syslinux (1.62-1) unstable; urgency=medium
* New upstream version (closes: Bug#77269)
* This version could fix Bug#56983 and Bug#69140, but I have no
way to test it
* Added Build-Depends (closes: Bug#60729)
* New Standards-Version: 3.5.3
* Fixed lintian error "copyright-refers-to-old-directory"
* Fixed lintian warnings "no-priority-field" and "no-section-field"
* Change the installer a bit so that it is no longer needed to run
it as root, using mtools (closes: Bug#30982)
* Added manual page for `syslinux', provided by
Arthur Korn <arthur@korn.ch> (closes: Bug#18432)
* Added manual page for `syslinux2ansi', provided by
Kevin Kreamer <kkreamer@etherhogz.org> (closes: Bug#35264)
-- Juan Cespedes <cespedes@debian.org> Tue, 01 May 2001 17:12:49 +0200
syslinux (1.48-2) unstable; urgency=medium
* New Standards-Version (3.1.1)
* Fixed lintian bugs
* Note in the package description that filesystem type `msdos' is
needed in order to use this program (closes: Bug#23265)
-- Juan Cespedes <cespedes@debian.org> Sun, 19 Dec 1999 14:25:45 +0100
syslinux (1.48-1) unstable; urgency=medium
* New upstream version:
+ Changed HIGHMEM_MAX to 38000000h
+ Serial console support
+ New program PXELINUX to do network booting
* FHS support
* New Standards-Version: 3.0.1
* Almost all the bugs regarding boot problems should be fixed with
this upstream version:
(closes: Bug#18271, Bug#22366, Bug#22700, Bug#22845, Bug#23181)
(closes: Bug#23936, Bug#27755, Bug#28846, Bug#29296, Bug#32138)
* Fixed copyright notice in "copybs.asm" (closes: Bug#35531)
* "syslinux.com" is now included (closes: Bug#31460)
-- Juan Cespedes <cespedes@debian.org> Mon, 25 Oct 1999 11:09:02 +0200
syslinux (1.43-1) unstable; urgency=medium
* New upstream version:
+ Add syslinux2ansi script to display the contents of a
colorized SYSLINUX file.
+ Changed the io_delay once again, after a report that the
old delay port causes hangs on some systems.
+ Should fix: Bug#18271, Bug#22366, Bug#22845, Bug#23181,
Bug#23936, Bug#27755, Bug#28846, Bug#29296, Bug#32138
* Include "syslinux.com": Bug#31460
-- Juan Cespedes <cespedes@debian.org> Tue, 30 Mar 1999 12:53:48 +0200
syslinux (1.42-2) frozen unstable; urgency=HIGH
* Reverted patch for installer (it fails with some mtools versions)
(Fixes grave bug: Bug#30791)
-- Juan Cespedes <cespedes@debian.org> Thu, 17 Dec 1998 10:33:37 +0100
syslinux (1.42-1) frozen unstable; urgency=medium
* New upstream version. Mostly A20 bug fixes.
* This should fix at least the following syslinux bugs:
Bug#22845, Bug#23181, Bug#23936, Bug#27755, Bug#28846, Bug#29296.
* Change the installer a bit so that it is no longer needed to run
it as root
-- Juan Cespedes <cespedes@debian.org> Tue, 08 Dec 1998 21:20:31 +0100
syslinux (1.40-3) frozen unstable; urgency=medium
* Added "img1743k.gz" as suggested by Enrique Zanardi <ezanardi@ull.es>
-- Juan Cespedes <cespedes@debian.org> Mon, 09 Nov 1998 21:23:21 +0100
syslinux (1.40-2) frozen unstable; urgency=medium
* Added "safe, slow and stupid" option to the version
for the boot floppies to be able to boot even on very
buggy bioses. (Bug#23157, Bug#23181).
* Increased A20M delay even a bit more, as suggested by
Enrique Zanardi.
* Changed the aspect of the syslinux banner a bit
-- Juan Cespedes <cespedes@debian.org> Sat, 06 Jun 1998 01:05:34 +0200
syslinux (1.40-1) unstable; urgency=low
* New upstream release:
* Increase A20M delay and put in a test to avoid problems on
certain IBM Thinkpads (thanks to Donnie Barnes of RedHat
for vital info on this one.)
* Support COMBOOT style boot command images.
* Support chain loading (foreign operating systems, e.g. DOS).
* Include a new "copybs" DOS utility to copy a boot sector to
a file (under Linux, use "dd".)
* Fix the DOS installer to work for disks over 32 MB.
* SYSLINUX should now handle disks with more than 65536 tracks.
* Changed section from "misc" to "base", to be in sync with then
FTP archive
-- Juan Cespedes <cespedes@debian.org> Fri, 08 May 1998 11:22:46 +0200
syslinux (1.37-1) frozen unstable; urgency=medium
* New upstream version (Bug fixes only):
+ Fix a bug that caused "label" statements in syslinux.cfg to
not be handled properly.
+ Updated the documentation. Among other things, we now allow
up to 128 "label" statements.
-- Juan Cespedes <cespedes@debian.org> Tue, 21 Apr 1998 00:19:18 +0200
syslinux (1.36-2) frozen unstable; urgency=medium
* Re-built for frozen (it fixes the "LABEL" behaviour, required
for the boot floppies)
-- Juan Cespedes <cespedes@debian.org> Mon, 20 Apr 1998 19:25:13 +0200
syslinux (1.36-1) unstable; urgency=medium
* Applied patch to make all the "LABEL" keywords in config file work
* New upstream version (bug fixes + new option "KBDMAP")
-- Juan Cespedes <cespedes@debian.org> Mon, 20 Apr 1998 02:30:58 +0200
syslinux (1.34-2) unstable; urgency=low
* Install files as img<size>k.gz instead of img<size>.gz
-- Juan Cespedes <cespedes@debian.org> Fri, 06 Mar 1998 20:04:59 +0100
syslinux (1.34-1) unstable; urgency=low
* New upstream version
-- Juan Cespedes <cespedes@debian.org> Thu, 05 Mar 1998 17:50:14 +0100
syslinux (1.33-2) unstable; urgency=low
* Fixed minor packaging bugs
-- Juan Cespedes <cespedes@debian.org> Sat, 28 Feb 1998 22:50:35 +0100
syslinux (1.33-1) unstable; urgency=low
* New upstream version (fixes:Bug#18654)
-- Juan Cespedes <cespedes@debian.org> Fri, 27 Feb 1998 10:42:05 +0100
syslinux (1.32-1) unstable; urgency=low
* New upstream release
* Pristine source
* Fixed author email address (hpa@zytor.com instead of hpa@linux.org)
* New Standards-Version: 2.4.0.0
* gzipped only big files in /usr/doc/syslinux
* Changed architecture from all to i386
-- Juan Cespedes <cespedes@debian.org> Fri, 20 Feb 1998 22:16:20 +0100
syslinux (1.30-6) unstable; urgency=low
* New maintainer
* New Standards-Version (2.3.0.0)
* Changed rules file to no longer use debstd
-- Juan Cespedes <cespedes@debian.org> Sat, 01 Nov 1997 16:22:57 +0100
syslinux (1.30-5) unstable; urgency=low
* Install changelog correctly
* #8532: Filed a bug report against ftp.debian.org because the
package priorities and section are overridden on master.
-- Christoph Lameter <clameter@waterf.org> Wed, 29 Oct 1997 18:47:17 -0800
syslinux (1.30-4) unstable; urgency=low
* Changed architecture to all
* Note in description that syslinux generates Intel Boot disks (from
whatever platform you install it on)
-- Christoph Lameter <clameter@waterf.org> Thu, 04 Sep 1997 11:16:34 -0700
syslinux (1.30-3) unstable; urgency=low
* Include Images for 1.44K and 720K to boot Linux on an Atari Computer
-- Christoph Lameter <clameter@waterf.org> Tue, 25 Feb 1997 09:27:55 -0800
syslinux (1.30-2) unstable; urgency=low
* Control file: Priority set to optional and put into section "misc" where loadlin
is also. (Bug #5424)
* clean up debian directory
-- Christoph Lameter <clameter@waterf.org> Mon, 4 Nov 1996 10:42:17 -0800
syslinux (1.30-1) unstable; urgency=low
* Upstream update. Package made conformant to newest standards.
-- Christoph Lameter <clameter@waterf.org> Mon, 4 Nov 1996 10:26:25 -0800
|