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 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904
|
debian-installer-utils (1.140) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Arabic (ar.po) by zer0-x
* Hindi (hi.po) by KushagraKarira
* Tamil (ta.po) by Vasudevan Tirumurti
* Traditional Chinese (zh_TW.po) by louies0623
-- Holger Wansing <hwansing@mailbox.org> Wed, 24 Feb 2021 19:25:32 +0100
debian-installer-utils (1.139) unstable; urgency=medium
* Team upload
* list-devices-linux: Support partitions on USB UAS devices
* list-devices-linux: Remove mention of udevinfo, it went away many
years ago.
-- Steve McIntyre <93sam@debian.org> Sat, 16 Jan 2021 18:30:43 +0000
debian-installer-utils (1.138) unstable; urgency=medium
* Team upload
* list-devices-hurd: Support partitions from rumpdisk.
-- Samuel Thibault <sthibault@debian.org> Thu, 26 Nov 2020 10:03:19 +0100
debian-installer-utils (1.137) unstable; urgency=medium
* Team upload
* list-devices-hurd: Support /dev/cd* from rumpdisk.
-- Samuel Thibault <sthibault@debian.org> Thu, 26 Nov 2020 02:33:49 +0100
debian-installer-utils (1.136) unstable; urgency=medium
* Team upload
* list-devices-hurd: Support /dev/wd* from rumpdisk.
-- Samuel Thibault <sthibault@debian.org> Fri, 20 Nov 2020 14:07:51 +0100
debian-installer-utils (1.135) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
[ New translations ]
* Kabyle (kab.po) by Slimane Selyan Amiri
* Occitan (oc.po) by Quentin PAGÈS
-- Holger Wansing <hwansing@mailbox.org> Fri, 06 Nov 2020 19:24:53 +0100
debian-installer-utils (1.134) unstable; urgency=medium
* Team upload
[ Philip Hands ]
* typos (it's vs. its)
[ Raphaël Hertzog ]
* Use /proc/self/fd/4 instead of /dev/fd/4 to unbreak fetch-url with recent
udev versions that no longer setup the /dev/fd symlink. Closes: #967546
[ Updated translations ]
* Persian (fa.po) by Abbas Baharforoosh
* Polish (pl.po) by Bartosz Feński
-- Raphaël Hertzog <raphael@offensive-security.com> Thu, 24 Sep 2020 18:31:46 +0200
debian-installer-utils (1.133) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Amharic (am.po) by leela
* Croatian (hr.po) by gogogogi
-- Holger Wansing <hwansing@mailbox.org> Wed, 13 Nov 2019 22:18:44 +0100
debian-installer-utils (1.132) unstable; urgency=high
* Team upload
[ Cyril Brulebois ]
* Remove Christian Perrier from Uploaders, with many thanks for all
his contributions over the years! (Closes: #927528)
[ Ben Hutchings ]
* Always set APT option if --{with,no}-recommends options are used
(Closes: #931287)
-- Ben Hutchings <ben@decadent.org.uk> Sun, 30 Jun 2019 16:49:06 +0100
debian-installer-utils (1.131) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Vietnamese (vi.po) by Trần Ngọc Quân
-- Holger Wansing <hwansing@mailbox.org> Tue, 05 Mar 2019 20:38:43 +0100
debian-installer-utils (1.130) unstable; urgency=medium
[ Holger Wansing ]
* Remove trailing whitespaces from changelog file, to fix lintian tag.
[ Cyril Brulebois ]
* Stop propagating BOOTIF to the installed system: BOOTIF=<mac-address>
is added by PXELINUX when the “IPAPPEND 2” option is used; drop it
similarly to what's done for BOOTIMAGE (Closes: #921444). Thanks to
Valentín Gutierrez for the detailed bug report and the patch!
[ Updated translations ]
* Persian (fa.po) by nima sahraneshin
-- Cyril Brulebois <kibi@debian.org> Fri, 08 Feb 2019 03:10:33 +0100
debian-installer-utils (1.129) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Galician (gl.po) by mantinan
[ Holger Wansing ]
* Change deprecated Priority: extra into optional.
-- Holger Wansing <hwansing@mailbox.org> Sat, 29 Sep 2018 20:08:46 +0200
debian-installer-utils (1.128) unstable; urgency=medium
* Team upload
[ Cyril Brulebois ]
* Update Vcs-{Browser,Git} to point to salsa (alioth's replacement).
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
-- Holger Wansing <hwansing@mailbox.org> Sat, 11 Aug 2018 22:26:25 +0200
debian-installer-utils (1.127) unstable; urgency=medium
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
* Serbian (sr.po) by Слободан Симић(Slobodan Simić)
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Mon, 12 Feb 2018 18:47:47 +0100
debian-installer-utils (1.126) unstable; urgency=medium
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Wed, 31 Jan 2018 18:56:22 +0100
debian-installer-utils (1.125) unstable; urgency=medium
[ Updated translations ]
* Icelandic (is.po) by Sveinn í Felli
-- Christian Perrier <bubulle@debian.org> Sun, 21 Jan 2018 16:13:59 +0100
debian-installer-utils (1.124) unstable; urgency=medium
[ Updated translations ]
* Nepali (ne.po) by Jeewal Kunwar
-- Christian Perrier <bubulle@debian.org> Sat, 30 Dec 2017 09:25:28 +0100
debian-installer-utils (1.123) unstable; urgency=medium
[ Updated translations ]
* Esperanto (eo.po) by Felipe Castro
-- Christian Perrier <bubulle@debian.org> Sun, 10 Dec 2017 18:34:04 +0100
debian-installer-utils (1.122) unstable; urgency=medium
[ Raphaël Hertzog ]
* Fix "list-devices partition" to also report LVM logical volumes.
(Closes: #868848)
[ Updated translations ]
* Lithuanian (lt.po) by Rimas Kudelis
* Norwegian Nynorsk (nn.po) by Allan Nordhøy
-- Christian Perrier <bubulle@debian.org> Wed, 29 Nov 2017 22:03:57 +0100
debian-installer-utils (1.120) unstable; urgency=medium
[ Updated translations ]
* Greek (el.po) by Sotirios Vrachas
-- Christian Perrier <bubulle@debian.org> Fri, 24 Nov 2017 06:47:55 +0100
debian-installer-utils (1.119) unstable; urgency=medium
* fix: propagate dot-containing options to target kernel cmdline
(Closes: #853855)
-- Philip Hands <phil@hands.com> Sat, 01 Apr 2017 11:56:13 +0200
debian-installer-utils (1.118) unstable; urgency=medium
[ Josh Triplett ]
* fetch-url-methods/http: Set User-Agent to "debian-installer" when calling
wget. (Closes: #850800)
-- Philipp Kern <pkern@debian.org> Tue, 31 Jan 2017 00:27:25 +0100
debian-installer-utils (1.117) unstable; urgency=medium
* add checksum verification to fetch-url
-- Philip Hands <phil@hands.com> Wed, 23 Nov 2016 22:40:56 +0100
debian-installer-utils (1.116) unstable; urgency=medium
* Team upload.
* vt102-di: Tinker vt102 entry, to avoid using ^J, since various levels of
tty may be adding a ^M and thus scrambling the output, use generic escape
sequence instead.
-- Samuel Thibault <sthibault@debian.org> Sun, 18 Sep 2016 21:53:23 +0200
debian-installer-utils (1.115) unstable; urgency=medium
* Team upload.
* rules: Add screen terminfo for proper screen terminal support.
-- Samuel Thibault <sthibault@debian.org> Thu, 15 Sep 2016 02:04:42 +0200
debian-installer-utils (1.114) unstable; urgency=medium
[ Colin Watson ]
* Use HTTPS for Vcs-* URLs, and link to cgit rather than gitweb.
-- Christian Perrier <bubulle@debian.org> Sun, 14 Feb 2016 08:08:37 +0100
debian-installer-utils (1.113) unstable; urgency=high
* Add support for NVMe devices (Closes: #799117). Thanks to Mario
Limonciello for the report and the patch.
-- Cyril Brulebois <kibi@debian.org> Thu, 03 Dec 2015 00:47:43 +0100
debian-installer-utils (1.112) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sat, 25 Jul 2015 18:28:59 +0200
debian-installer-utils (1.111) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sat, 20 Jun 2015 07:06:27 +0200
debian-installer-utils (1.110) unstable; urgency=low
[ Updated translations ]
* Danish (da.po) by Joe Hansen
-- Christian Perrier <bubulle@debian.org> Sun, 08 Mar 2015 07:42:06 +0100
debian-installer-utils (1.109) unstable; urgency=medium
[ Ian Campbell ]
* Accept "---" as user-params separator in addition to "--" (Closes: #762007)
-- Christian Perrier <bubulle@debian.org> Sat, 11 Oct 2014 07:41:14 +0200
debian-installer-utils (1.108) unstable; urgency=low
[ Updated translations ]
* Danish (da.po) by Joe Hansen
-- Christian Perrier <bubulle@debian.org> Wed, 10 Sep 2014 13:58:20 +0200
debian-installer-utils (1.107) unstable; urgency=medium
[ Steven Chamberlain ]
* Fix procfs mounting on GNU/kFreeBSD: it's called linprocfs, rather
than procfs (Closes: #696901).
-- Christian Perrier <bubulle@debian.org> Thu, 22 May 2014 06:51:08 +0200
debian-installer-utils (1.106) unstable; urgency=high
[ Wouter Verhelst ]
* resolv.c: move here from partman-nbd, and install into di-utils.
[ Colin Watson ]
* Revert change in 1.103 to install no-op SIGCHLD handler even outside the
--pass-stdout case, since if a process daemonises without closing its
standard file descriptors and then tries to write to them it will
receive SIGPIPE, and that breaks speech synthesis in d-i (see #739989).
-- Colin Watson <cjwatson@debian.org> Tue, 25 Feb 2014 00:12:49 +0000
debian-installer-utils (1.105) unstable; urgency=medium
* Use debian-installer/allow_unauthenticated_ssl to imply wget
--no-check-certificate, rather than overloading
debian-installer/allow_unauthenticated.
-- Colin Watson <cjwatson@debian.org> Wed, 12 Feb 2014 11:39:54 +0000
debian-installer-utils (1.104) unstable; urgency=medium
* Add HTTPS support to fetch-url, which will only work if d-i has been
built with GNU wget; debian-installer/allow_unauthenticated is
overloaded to imply the --no-check-certificate option (LP: #833994).
-- Colin Watson <cjwatson@debian.org> Mon, 10 Feb 2014 18:40:11 +0000
debian-installer-utils (1.103) unstable; urgency=medium
* fetch-url-methods/http: Cope with the slightly different no-such-file
output produced by GNU wget, and with it needing to be invoked using
--no-verbose rather than -q (LP: #1172101).
* Merge from Ubuntu:
- log-output: Always install a no-op SIGCHLD handler, in case the
subsidiary process starts a daemon which does not fully disconnect its
standard file descriptors (LP: #1021293). See also the changelog for
1.46.
-- Colin Watson <cjwatson@debian.org> Fri, 07 Feb 2014 17:16:07 +0000
debian-installer-utils (1.102) unstable; urgency=low
[ Updated translations ]
* Bosnian (bs.po) by Amila Valjevčić
-- Christian Perrier <bubulle@debian.org> Tue, 17 Dec 2013 08:08:43 +0100
debian-installer-utils (1.101) unstable; urgency=low
[ Updated translations ]
* Ukrainian (uk.po) by Yuri Chornoivan
-- Christian Perrier <bubulle@debian.org> Fri, 08 Nov 2013 22:39:00 +0100
debian-installer-utils (1.100) unstable; urgency=low
[ Colin Watson ]
* Use 'set -e' rather than '#! /bin/sh -e', to avoid accidents when
debugging with 'sh -x'.
-- Christian Perrier <bubulle@debian.org> Mon, 30 Sep 2013 07:14:06 +0200
debian-installer-utils (1.99) unstable; urgency=low
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Fri, 06 Sep 2013 22:37:43 +0200
debian-installer-utils (1.98) unstable; urgency=low
[ Joey Hess ]
* fetch-url: Try to mountmedia when getting a file, to support preseed
via USB from netboot.
[ Dmitrijs Ledkovs ]
* Set debian source format to '3.0 (native)'.
* Bump debhelper compat level to 9.
* Set Vcs-* to canonical format.
-- Christian Perrier <bubulle@debian.org> Sat, 13 Jul 2013 14:19:06 +0200
debian-installer-utils (1.97) unstable; urgency=low
* chroot-setup.sh: Make the fake initctl pass through "initctl version"
calls, used by such things as invoke-rc.d to figure out whether it's
running under Upstart (LP: #1182540).
-- Colin Watson <cjwatson@debian.org> Wed, 22 May 2013 17:05:50 +0100
debian-installer-utils (1.96) unstable; urgency=low
[ Samuel Thibault ]
* Make iso-scan probing a lot faster on hurd-i386 by avoiding non-existing
partitions.
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Sun, 12 May 2013 12:39:01 +0200
debian-installer-utils (1.95) unstable; urgency=low
[ Updated translations ]
* Romanian (ro.po) by Ioan Eugen Stan
-- Christian Perrier <bubulle@debian.org> Sat, 30 Mar 2013 14:42:37 +0100
debian-installer-utils (1.94) unstable; urgency=low
[ Colin Watson ]
* Use dpkg-buildflags.
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
-- Christian Perrier <bubulle@debian.org> Mon, 10 Dec 2012 07:22:27 +0100
debian-installer-utils (1.93) unstable; urgency=low
[ Colin Watson ]
* Remove unnecessary sourcing of preseed.sh from fetch-url.
[ Updated translations ]
* Asturian (ast.po) by ivarela
* Galician (gl.po) by Jorge Barreiro
-- Christian Perrier <bubulle@debian.org> Sun, 14 Oct 2012 13:51:30 +0200
debian-installer-utils (1.92) unstable; urgency=low
[ Samuel Thibault ]
* Fix gnu-mach-color terminfo name into mach-gnu-color.
[ Christian Perrier ]
* Add myself to Uploaders.
* Replace XC-Package-Type by package-Type.
-- Christian Perrier <bubulle@debian.org> Tue, 07 Aug 2012 21:59:19 +0200
debian-installer-utils (1.91) unstable; urgency=low
* Team upload
[ Updated translations ]
* Welsh (cy.po) by Daffyd Tomos
-- Christian Perrier <bubulle@debian.org> Fri, 15 Jun 2012 06:18:40 +0200
debian-installer-utils (1.90) unstable; urgency=low
* Team upload
[ Samuel Thibault ]
* Install gnu-mach-color terminfo entry instead of mach-color.
[ Updated translations ]
* Asturian (ast.po) by Mikel González
* Bulgarian (bg.po) by Damyan Ivanov
* Tibetan (bo.po) by Tennom
* Estonian (et.po) by Mattias Põldaru
* Galician (gl.po) by Jorge Barreiro
* Indonesian (id.po) by Mahyuddin Susanto
* Lithuanian (lt.po) by Rimas Kudelis
* Latvian (lv.po) by Rūdolfs Mazurs
* Macedonian (mk.po) by Arangel Angov
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)
-- Christian Perrier <bubulle@debian.org> Thu, 14 Jun 2012 22:15:49 +0200
debian-installer-utils (1.89) unstable; urgency=low
[ Scott Moser ]
* Add --quiet to dpkg-divert calls in chroot_setup (LP: #912431).
-- Colin Watson <cjwatson@debian.org> Fri, 06 Jan 2012 12:19:04 +0000
debian-installer-utils (1.88) unstable; urgency=low
[ Colin Watson ]
* chroot_setup.sh: Divert start-stop-daemon and initctl rather than simply
moving them aside (closes: #654580).
[ Updated translations ]
* Icelandic (is.po) by Sveinn í Felli
* Kannada (kn.po) by Prabodh C P
-- Colin Watson <cjwatson@debian.org> Wed, 04 Jan 2012 13:37:09 +0000
debian-installer-utils (1.87) unstable; urgency=low
* Install "x/xterm" on GNU/kFreeBSD, make "l/linux" Linux-only.
-- Robert Millan <rmh@debian.org> Fri, 04 Nov 2011 23:32:48 +0100
debian-installer-utils (1.86) unstable; urgency=high
* Fix detection of whether /target/run has already been mounted (closes:
#646829).
[ Updated translations ]
* Hebrew (he.po) by Lior Kaplan
-- Colin Watson <cjwatson@debian.org> Thu, 27 Oct 2011 17:45:21 +0100
debian-installer-utils (1.85) unstable; urgency=low
[ Samuel Thibault ]
* Add SCSI HDD and CD-ROM detection on hurd-i386.
[ Colin Watson ]
* chroot_setup.sh: Export SUDO_FORCE_REMOVE=yes, since removing sudo is
never harmful during installation and is occasionally useful, e.g. when
installing sudo-ldap (closes: #586887).
[ Updated translations ]
* Belarusian (be.po) by Viktar Siarheichyk
* Bulgarian (bg.po) by Damyan Ivanov
* German (de.po) by Holger Wansing
* Basque (eu.po)
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Kumar Appaiah
* Italian (it.po) by Milo Casagrande
* Japanese (ja.po) by Kenshi Muto
* Macedonian (mk.po) by Arangel Angov
* Dutch (nl.po) by Jeroen Schot
* Polish (pl.po) by Marcin Owsiany
* Romanian (ro.po) by Ioan Eugen Stan
* Sinhala (si.po) by Danishka Navin
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Colin Watson <cjwatson@debian.org> Tue, 27 Sep 2011 18:12:05 +0100
debian-installer-utils (1.84) unstable; urgency=low
[ Samuel Thibault ]
* Add CD-ROM detection on hurd-i386.
[ Colin Watson ]
* Bind-mount /run onto /target/run during in-target on Linux, if the
latter exists.
-- Colin Watson <cjwatson@debian.org> Thu, 26 May 2011 14:20:35 +0100
debian-installer-utils (1.83) unstable; urgency=low
[ Colin Watson ]
* Add an --allow-remove option to apt-install, which inhibits passing
--no-remove to apt-get.
* Ensure that DEB_HOST_ARCH_OS is set (thanks, Jurij Smakov).
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino
* Korean (ko.po) by Changwoo Ryu
* Romanian (ro.po) by Eddy Petrișor
* Northern Sami (se.po) by Børre Gaup
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Uyghur (ug.po) by Sahran
-- Christian Perrier <bubulle@debian.org> Fri, 22 Apr 2011 22:40:45 +0200
debian-installer-utils (1.82) unstable; urgency=low
[ Updated translations ]
* Lao (lo.po) by Anousak Souphavanh
* Northern Sami (se.po) by Børre Gaup
* Sinhala (si.po) by Danishka Navin
-- Otavio Salvador <otavio@debian.org> Fri, 24 Dec 2010 19:52:53 -0200
debian-installer-utils (1.81) unstable; urgency=low
[ Updated translations ]
* Bengali (bn.po) by Israt Jahan
* Catalan (ca.po) by Jordi Mallach
-- Otavio Salvador <otavio@debian.org> Fri, 12 Nov 2010 15:21:32 -0200
debian-installer-utils (1.80) unstable; urgency=low
[ Colin Watson ]
* Record mountpoints immediately after mounting /target/proc, /target/sys,
etc. Add a chroot_cleanup_localmounts function to chroot-setup.sh which
differs from chroot_cleanup in that it undoes just these mounts rather
than checking for others created since chroot_setup was called, mainly
for use by apt-setup.
[ Samuel Thibault ]
* debian/rules: Add mach-color terminfo on hurd.
[ Otavio Salvador ]
* Provide a consistent mtab file in /target to allow usage of this
information by tasksel and other utilities during install.
[ Updated translations ]
* Danish (da.po) by Anders Jenbo
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Otavio Salvador <otavio@debian.org> Thu, 14 Oct 2010 12:00:27 -0300
debian-installer-utils (1.79) unstable; urgency=low
[ Aurelien Jarno ]
* Only detect /dev/cd0 as a CD-ROM drive on GNU/kFreeBSD, to prevent
multiple /etc/fstab entries.
* Mount /target/sys in chroot_setup () on GNU/KFreeBSD.
[ Colin Watson ]
* udev 152 changed the default action for 'udevadm trigger' from 'add' to
'change'. We really do need 'add' after installing new kernel modules,
so specify this explicitly.
[ Jeremie Koenig ]
* in-target: Check for /target/sys only if /sys/devices exists, to avoid
enforcing it on systems without a sysfs (ie. Hurd). Closes: #592684.
-- Colin Watson <cjwatson@debian.org> Mon, 23 Aug 2010 14:06:40 +0100
debian-installer-utils (1.78) unstable; urgency=low
[ Otavio Salvador ]
* When running in live-installer di-utils-reboot ought to quit
installer if not rebooting/halting the machine. Closes: #589453.
[ Aurelien Jarno ]
* Install a different list-devices script per OS.
* Add a GNU/kFreeBSD version of list-devices.
* Add a Hurd version of list-devices.
[ Updated translations ]
* Asturian (ast.po) by maacub
* Bulgarian (bg.po) by Damyan Ivanov
* Bosnian (bs.po) by Armin Beširović
* Danish (da.po) by Jacob Sparre Andersen
* Persian (fa.po) by Ebrahim Byagowi
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Telugu (te.po) by Arjuna Rao Chavala
-- Aurelien Jarno <aurel32@debian.org> Sun, 22 Aug 2010 19:27:27 +0200
debian-installer-utils (1.77) unstable; urgency=low
[ Updated translations ]
* Belarusian (be.po) by Viktar Siarheichyk
* Croatian (hr.po) by Josip Rodin
* Kurdish (ku.po) by Erdal Ronahi
* Macedonian (mk.po) by Arangel Angov
* Nepali (ne.po)
-- Christian Perrier <bubulle@debian.org> Sun, 11 Jul 2010 11:06:00 +0200
debian-installer-utils (1.76) unstable; urgency=low
[ Samuel Thibault ]
* debian/rules: Add hurd terminfo on hurd.
[ Colin Watson ]
* list-devices: Consider Xen virtual block devices as disks.
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
* Bosnian (bs.po) by Armin Beširović
* Danish (da.po) by Jacob Sparre Andersen
* Dzongkha (dz.po) by Jurmey Rabgay
* Persian (fa.po) by acathur
* Hungarian (hu.po) by SZERVÁC Attila
* Indonesian (id.po) by Arief S Fitrianto
* Georgian (ka.po) by Aiet Kolkhi
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Central Khmer (km.po) by Khoem Sokhem
* Latvian (lv.po) by Aigars Mahinovs
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Romanian (ro.po) by ioan-eugen stan
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Colin Watson <cjwatson@debian.org> Tue, 06 Jul 2010 11:30:19 +0100
debian-installer-utils (1.75) unstable; urgency=low
* Add GNU/kFreeBSD specific code to setup the chroot.
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Norwegian Nynorsk (nn.po) by Eirik U. Birkeland
-- Aurelien Jarno <aurel32@debian.org> Thu, 13 May 2010 23:35:59 +0200
debian-installer-utils (1.74) unstable; urgency=low
* list-devices: Add support for dmraid disks and partitions. Exclude
disks and partitions that are already part of a dmraid set.
* list-devices: Consider virtio devices as disks (LP: #568143).
* ncurses-base 5.4-9 moved the base terminfo descriptions to
/lib/terminfo, and ncurses-base 5.7+20100313-1 removed the compatibility
symlinks in /usr/share/terminfo. Cope with either directory for
convenience, in case we ever need descriptions that are still in
/usr/share/terminfo.
[ Updated translations ]
* Belarusian (be.po) by Pavel Piatruk
* Bengali (bn.po) by Israt Jahan
* German (de.po) by Holger Wansing
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* French (fr.po) by Christian Perrier
* Hebrew (he.po) by Omer Zak
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Marathi (mr.po) by Sampada
* Panjabi (pa.po) by A S Alam
* Slovenian (sl.po) by Vanja Cvelbar
* Albanian (sq.po) by Elian Myftiu
* Tamil (ta.po) by Dr,T,Vasudevan
* Simplified Chinese (zh_CN.po) by 苏运强
-- Colin Watson <cjwatson@debian.org> Tue, 27 Apr 2010 11:23:35 +0100
debian-installer-utils (1.73) unstable; urgency=low
* di-utils-shell: avoid error when running at priority critical.
Closes: #561074.
* apt-install: allow to force installing or ignoring Recommends irrespective
of the default set in base-installer/install-recommends.
Use of this option requires base-installer 1.104.
[ Updated translations ]
* Belarusian (be.po) by Pavel Piatruk
* Bulgarian (bg.po) by Damyan Ivanov
* Greek, Modern (1453-) (el.po)
* Galician (gl.po) by Marce Villarino
* Bokmål, Norwegian (nb.po) by Hans Fredrik Nordhaug
* Dutch (nl.po) by Frans Pop
* Polish (pl.po) by Bartosz Fenski
* Slovenian (sl.po) by Vanja Cvelbar
-- Frans Pop <fjp@debian.org> Wed, 23 Dec 2009 00:21:43 +0100
debian-installer-utils (1.72) unstable; urgency=low
[ Colin Watson ]
* Upgrade to debhelper v7.
* Add a dummy initctl similar to the dummy start-stop-daemon, so that
attempts to control Upstart jobs (if Upstart is in use) won't do
anything.
[ Aurelien Jarno ]
* Also ship other terminfo on GNU/kFreeBSD, they are also used in some
cases (e.g. installation through ssh).
[ Chris Lamb ]
* Add "usb-partition" argument to list-devices for detecting partitions on
USB drives. Patch originally by Tormod Volden <debian.tormod@gmail.com>.
Option is to be used for creating Debian Live USB sticks.
[ Frans Pop ]
* apt-install: no longer disable Recommends; it is now a global setting.
* register-module: stop calling the obsolete update-modules.
[ Ryan Niebur ]
* add support for tftp to fetch-url for preseeding (Closes: 509723)
[ Frans Pop ]
* Remove no longer needed Lintian override for missing Standards-
Version field.
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
* Arabic (ar.po) by Ossama M. Khayat
* Asturian (ast.po) by Marcos Antonio Alvarez Costales
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Ask Hjorth Larsen
* Estonian (et.po) by Mattias Põldaru
* Finnish (fi.po) by Esko Arajärvi
* Hindi (hi.po)
* Italian (it.po) by Milo Casagrande
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Changwoo Ryu
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Dutch (nl.po) by Frans Pop
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Vietnamese (vi.po) by Clytie Siddall
-- Colin Watson <cjwatson@debian.org> Sun, 15 Nov 2009 23:27:59 +0000
debian-installer-utils (1.71) unstable; urgency=low
[ Luca Favatella ]
* Add 'cons25' terminfo file (used by kfreebsd-i386).
* Make di-utils-terminfo Architecture: any to avoid size increase.
-- Colin Watson <cjwatson@debian.org> Sat, 18 Jul 2009 20:58:07 +0200
debian-installer-utils (1.70) unstable; urgency=low
[ Otavio Salvador ]
* di-utils-exit-installer: change template description to make it generic.
[ Colin Watson ]
* Change in-target and apt-install to pass through non-zero exit codes
unmolested rather than collapsing them to 1. In particular, this allows
cancellation exit codes from debconf-apt-progress to be detected by
apt-setup (see
http://lists.debian.org/debian-boot/2008/01/msg00094.html).
-- Colin Watson <cjwatson@debian.org> Fri, 03 Jul 2009 14:26:17 +0100
debian-installer-utils (1.69) unstable; urgency=low
* block-attr: The 'type' builtin doesn't seem to handle variable
assignments in quite the way I'd expected; work around this by exporting
PATH as a separate command in a subshell.
-- Colin Watson <cjwatson@debian.org> Tue, 02 Jun 2009 13:02:50 +0100
debian-installer-utils (1.68) unstable; urgency=low
[ Frans Pop ]
* Add 'dumb' terminfo file (used by s390; possibly useful for serial console).
[ Colin Watson ]
* vol_id is being merged into blkid upstream. So that we don't have to
keep tracking this kind of thing in several different udebs, add a
block-attr wrapper that tries both.
[ Updated translations ]
* Bengali (bn.po) by Md. Rezwan Shahid
* Estonian (et.po) by Mattias Põldaru
* Slovak (sk.po) by Ivan Masár
-- Colin Watson <cjwatson@debian.org> Tue, 12 May 2009 11:28:15 +0100
debian-installer-utils (1.67) unstable; urgency=low
[ Frans Pop ]
* Remove myself as uploader.
* Append .conf extention to /etc/modprobe.d files, as required for
module-init-tools >= 3.7.
[ Updated translations ]
* Italian (it.po) by Milo Casagrande
-- Otavio Salvador <otavio@debian.org> Sun, 05 Apr 2009 17:53:18 -0300
debian-installer-utils (1.66) unstable; urgency=low
* start-shell: Use cdebconf-newt-terminal if available (closes: #412168).
* update-dev: Add a --settle switch to skip 'udevadm trigger', which can
cause problems in some cases (see e.g.
https://lists.ubuntu.com/archives/ubuntu-devel/2009-January/027260.html),
but is necessary in others (e.g. we just installed new modules so need
to get udev to reprocess old events in light of their presence).
* user-params: Exclude noshell, used by rootskel 1.74. See #504381.
* Don't ignore 'make clean' errors; we always have a Makefile.
[ Updated translations ]
* Esperanto (eo.po) by Felipe Castro
* Basque (eu.po) by Piarres Beobide
* Galician (gl.po) by Marce Villarino
* Hindi (hi.po) by Kumar Appaiah
* Kazakh (kk.po) by daur88
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Marathi (mr.po) by Sampada
* Swedish (sv.po) by Daniel Nylander
* Tagalog (tl.po) by Eric Pareja
-- Colin Watson <cjwatson@debian.org> Fri, 27 Feb 2009 06:08:26 +0000
debian-installer-utils (1.65) unstable; urgency=low
* When looking for partitions, only consider device subdirectories that end
with a number to avoid matching directories such as power, slaves, etc.
* Add support for MMC/SD card devices (mmcblkX). The devices are matched on
name as udev does not return an ID_TYPE environment variable.
-- Frans Pop <fjp@debian.org> Mon, 29 Sep 2008 20:25:52 +0200
debian-installer-utils (1.64) unstable; urgency=low
[ Joey Hess ]
* update-dev: Add back support for userdevfs, which was removed mistakenly
as part of code cleanup in version 1.47.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Bulgarian (bg.po) by Damyan Ivanov
* Bengali (bn.po) by Mahay Alam Khan (মাহে আলম খান)
* Bosnian (bs.po) by Armin Besirovic
* Catalan (ca.po) by Jordi Mallach
* Czech (cs.po) by Miroslav Kure
* Welsh (cy.po) by Jonathan Price
* Danish (da.po)
* German (de.po) by Jens Seidel
* Greek, Modern (1453-) (el.po)
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Finnish (fi.po) by Esko Arajärvi
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hebrew (he.po) by Omer Zak
* Hindi (hi.po) by Kumar Appaiah
* Croatian (hr.po) by Josip Rodin
* Hungarian (hu.po) by SZERVÁC Attila
* Indonesian (id.po) by Arief S Fitrianto
* Italian (it.po) by Milo Casagrande
* Japanese (ja.po) by Kenshi Muto
* Georgian (ka.po) by Aiet Kolkhi
* Central Khmer (km.po) by KHOEM Sokhem
* Kurdish (ku.po) by Erdal Ronahi
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Latvian (lv.po) by Aigars Mahinovs
* Macedonian (mk.po) by Arangel Angov
* Malayalam (ml.po) by Praveen|പ്രവീണണ് A|എ
* Nepali (ne.po) by Shiva Prasad Pokharel
* Dutch (nl.po) by Frans Pop
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Panjabi (pa.po) by Amanpreet Singh Alam
* Polish (pl.po) by Bartosz Fenski
* Romanian (ro.po) by Eddy Petrișor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Ivan Masár
* Slovenian (sl.po) by Vanja Cvelbar
* Albanian (sq.po) by Elian Myftiu
* Serbian (sr.po) by Veselin Mijušković
* Tamil (ta.po) by Dr.T.Vasudevan
* Thai (th.po) by Theppitak Karoonboonyanan
* Turkish (tr.po) by Mert Dirik
* Ukrainian (uk.po) by Євгеній Мещеряков
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Simplified Chinese (zh_CN.po) by Deng Xiyue
-- Otavio Salvador <otavio@debian.org> Sun, 21 Sep 2008 21:54:41 -0300
debian-installer-utils (1.63) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* Dzongkha (dz.po) by Jurmey Rabgay(Bongop) (DIT,BHUTAN)
* Esperanto (eo.po) by Felipe Castro
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Esko Arajärvi
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Changwoo Ryu
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Marathi (mr.po) by Sampada
* Norwegian Bokmål (nb.po) by Hans Fredrik Nordhaug
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Romanian (ro.po) by Eddy Petrișor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Turkish (tr.po) by Mert Dirik
* Traditional Chinese (zh_TW.po) by Tetralet
-- Christian Perrier <bubulle@debian.org> Sat, 09 Aug 2008 16:32:56 -0300
debian-installer-utils (1.62) unstable; urgency=low
[ Frans Pop ]
* fetch-url: fix initialization of TRY_REPEAT and TRY_CONTINUE variables.
* fetch-url-methods/http: don't attempt continuation retries if the file
does not already exist (i.e. not at least partially downloaded).
[ Philip Hands ]
* remove some code duplication introduced in Alex Owen's #491098 patch.
[ Jérémy Bobbio ]
* Ship start-shell in di-utils. It allows a shell to be started either with
debconf-disconnect or with the terminal plugin for the GTK+ frontend.
* Use start-shell in di-utils-shell.postinst.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* German (de.po) by Jens Seidel
* Esperanto (eo.po) by Felipe Castro
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Esko Arajärvi
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Croatian (hr.po) by Josip Rodin
* Italian (it.po) by Milo Casagrande
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Changwoo Ryu
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Marathi (mr.po) by Sampada
* Dutch (nl.po) by Frans Pop
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Portuguese (pt.po) by Miguel Figueiredo
* Romanian (ro.po) by Eddy Petrișor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Turkish (tr.po) by Mert Dirik
-- Otavio Salvador <otavio@debian.org> Fri, 01 Aug 2008 14:45:27 -0300
debian-installer-utils (1.61) unstable; urgency=low
* update-dev: remove obsolete fallbacks to udevtrigger and udevsettle.
* Apply patch from Alex Owen to update wget error checks to current busybox
wget output and similar checking for FTP. Closes: #491098.
[ Updated translations ]
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
-- Frans Pop <fjp@debian.org> Wed, 16 Jul 2008 20:06:49 +0200
debian-installer-utils (1.60) unstable; urgency=low
* Use new "mountmedia floppy" command instead of mountfloppy.
-- Joey Hess <joeyh@debian.org> Mon, 07 Jul 2008 14:09:33 -0400
debian-installer-utils (1.59) unstable; urgency=low
* Ensure that terminfo files do not have strange modes, as in the last
upload.
-- Joey Hess <joeyh@debian.org> Fri, 20 Jun 2008 13:04:48 -0400
debian-installer-utils (1.58) unstable; urgency=low
[ Evan Dandrea ]
* Avoid triggering sound events, which can cause audio to be played every
time update-dev runs; only relevant in live CD environments such as
Ubuntu's (LP: #178057).
[ Philip Hands ]
* Move fetch-url here from preseed.
* Take inspiration from cdebconf about wget -c.
* Add wrapper to wget that allows it to differentiate 404s as originally
suggested by Alex Owen (closes: #422088).
* Modify all fetch methods to return 4 for missing files.
* Incorporate loads of suggestions from Frans Pop.
[ Frans Pop ]
* in-target: accept --pass-stdout option and pass it on to log-output.
Allows more flexible use of in-target, especially for single commands
that need a correct target environment.
* chroot-setup.sh: allow to override the normal LANG setting.
[ Updated translations ]
* Belarusian (be.po) by Pavel Piatruk
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* Hungarian (hu.po) by SZERVÁC Attila
* Marathi (mr.po) by Sampada
* Panjabi (pa.po) by Amanpreet Singh Alam
-- Frans Pop <fjp@debian.org> Tue, 17 Jun 2008 14:20:06 +0200
debian-installer-utils (1.57) unstable; urgency=low
* Remove David Kimdon, Matt Kraai and Tollef Fog Heen as Uploaders with many
thanks for their past contributions.
* Unmount /cdrom during package installation even if the user did not scan
additional CDs as otherwise accessing the CD may fail. See: #474346.
[ Updated translations ]
* Malayalam (ml.po) by Praveen|പ്രവീണ് A|എ
* Marathi (mr.po)
-- Frans Pop <fjp@debian.org> Mon, 28 Apr 2008 07:11:36 +0200
debian-installer-utils (1.56) unstable; urgency=low
* Make apt-install safe to be used during pkgsel when the installation CD
may already be unmounted in the D-I environment.
* user-params: also exclude debconf variables with '?=' (unset seen flag).
Update testset to catch that. Closes: #470892.
[ Updated translations ]
* Basque (eu.po) by Piarres Beobide
* Dutch (nl.po) by Frans Pop
-- Frans Pop <fjp@debian.org> Wed, 19 Mar 2008 20:52:10 +0100
debian-installer-utils (1.55) unstable; urgency=low
* chroot-setup.sh: also mount /dev/pts to avoid errors like:
Can not write log, openpty() failed (/dev/pts not mounted?)
Thanks to Petter Reinholdtsen for the patch. Closes: #463866.
-- Frans Pop <fjp@debian.org> Sat, 16 Feb 2008 13:48:36 +0100
debian-installer-utils (1.54) unstable; urgency=low
[ Updated translations ]
* Finnish (fi.po) by Esko Arajärvi
* Indonesian (id.po) by Arief S Fitrianto
* Turkish (tr.po) by Recai Oktaş
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Fri, 15 Feb 2008 08:08:48 -0200
debian-installer-utils (1.53) unstable; urgency=low
* apt-install: add -q option for apt-get which fixes the restarting of the
progress bar every time apt-install was called from base-installer.
[ Updated translations ]
* Latvian (lv.po) by Viesturs Zarins
* Panjabi (pa.po) by Amanpreet Singh Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
-- Frans Pop <fjp@debian.org> Thu, 07 Feb 2008 08:12:51 +0100
debian-installer-utils (1.52) unstable; urgency=low
[ Christian Perrier ]
* Spell "Debian" correctly in packages' descriptions
* Do not ignore errors from 'make clean' in the clean target
[ Updated translations ]
* Amharic (am.po) by tegegne tefera
* Korean (ko.po) by Changwoo Ryu
* Malayalam (ml.po) by Praveen|പരവീണ A|എ
* Panjabi (pa.po) by A S Alam
-- Christian Perrier <bubulle@debian.org> Thu, 10 Jan 2008 07:38:00 +0100
debian-installer-utils (1.51) unstable; urgency=low
[ Colin Watson ]
* user-params: Exclude ks=, used by kickseed.
* list-devices: udev 117 merged all udev tools into a single binary called
udevadm. Check for this and use it instead of udevinfo if available.
* update-dev: Likewise for udevtrigger and udevsettle.
[ Joey Hess ]
* chroot-setup.sh: Prepare for apt-listchanges being priority standard
by avoiding it trying to display changes in the d-i environment. (Could
happen if a package installation involves upgrading something else.)
-- Colin Watson <cjwatson@debian.org> Mon, 03 Dec 2007 12:43:29 +0000
debian-installer-utils (1.50) unstable; urgency=low
[ Frans Pop ]
* register-module: remove support for obsolete modutils and for no longer
used type chandev.
* apt-install: support CD/DVD changing by using debconf-apt-progress.
To make media changing possible, the installation CD is unmounted in the
D-I environment and reloaded after the package installation is finished.
This change also makes apt-install use the passthrough instead of the
noninteractive frontend.
Requires debconf (1.5.16).
* chroot-setup.sh: unconditionally check for and mount /target/sys.
[ Otavio Salvador ]
* list-devices: use pendrive as floppy workaround while probing
partitions. Closes: #440301.
[ Colin Watson ]
* Just test whether /etc/apt/sources.list exists, not whether it's a file.
I got a bug report involving a package that made /etc/apt/sources.list
be a symlink to an absolute path which of course doesn't exist in the
installer environment...
-- Frans Pop <fjp@debian.org> Wed, 21 Nov 2007 15:51:29 +0100
debian-installer-utils (1.49) unstable; urgency=low
[ Frans Pop ]
* user-params: also filter out new D-I boot parameter "lowmem".
[ Joey Hess ]
* Pass APT::Install-Recommends=false to apt to avoid new versions pulling in
recommends.
-- Frans Pop <fjp@debian.org> Fri, 06 Jul 2007 00:14:53 +0200
debian-installer-utils (1.48) unstable; urgency=low
[ Colin Watson ]
* list-devices: Fix incomplete addition of maybe-usb-floppy parameter.
-- Frans Pop <fjp@debian.org> Wed, 25 Apr 2007 16:48:30 +0200
debian-installer-utils (1.47) unstable; urgency=low
* Code cleanup:
- update-dev: remove support for old versions of hotplug/udev
- list-devices: remove support for listing devices based on devfs-style
names
* list-devices: deprecate the maybe-floppy parameter as it was only used
when listing devices based on devfs-style names.
* list-devices: add maybe-usb-floppy parameter to allow to also scan for
USB-devices (sticks, CD drives) that are misdetected as floppy.
-- Frans Pop <fjp@debian.org> Sat, 21 Apr 2007 00:56:58 +0200
debian-installer-utils (1.46) unstable; urgency=low
[ Colin Watson ]
* Merge from Ubuntu:
- Work around some weirdness in di_exec that caused log-output sometimes
to hang in poll(). We now install a no-op SIGCHLD handler to make sure
that poll() returns EINTR when the subsidiary process exits.
* Mount /target/sys with the device name "sysfs" rather than the less
helpful "none".
[ Joey Hess ]
* Multiply menu-item-numbers by 100.
[ Updated translations ]
* Esperanto (eo.po) by Serge Leblanc
-- Joey Hess <joeyh@debian.org> Tue, 10 Apr 2007 14:37:55 -0400
debian-installer-utils (1.45) unstable; urgency=low
[ Joey Hess ]
* Modify user-params to handle the case where the cmdline contains
quoted multi-word values. Don't output any multi-word values, as there's
probably no valid use for them other than debconf settings, and
user-params callers are not prepared to deal with them in its output.
Closes: #411702.
* Reorganised some code for speed.
[ Frans Pop ]
* Add testsuite infrastructure and tests for user-params.
* Also exclude D-I specific boot parameters.
[ Updated translations ]
* Malayalam (ml.po) by Praveen A
-- Frans Pop <fjp@debian.org> Thu, 22 Feb 2007 12:01:00 +0100
debian-installer-utils (1.44) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Catalan (ca.po) by Jordi Mallach
* Esperanto (eo.po) by Serge Leblanc
* Latvian (lv.po) by Aigars Mahinovs
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Romanian (ro.po) by Eddy Petrișor
-- Frans Pop <fjp@debian.org> Wed, 31 Jan 2007 11:32:54 +0100
debian-installer-utils (1.43) unstable; urgency=low
* register-module: write module options in /etc/modprobe.d if there is no
/etc/modprobe.conf; use of /etc/modprobe.conf is deprecated.
* register-module: support blacklisting of modules (for modutils only).
[ Updated translations ]
* Danish (da.po) by Claus Hindsgaul
* Esperanto (eo.po) by Serge Leblanc
* Kurdish (ku.po) by Amed Çeko Jiyan
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
-- Frans Pop <fjp@debian.org> Sat, 6 Jan 2007 10:32:00 +0100
debian-installer-utils (1.42) unstable; urgency=low
[ Joey Hess ]
* user-params: Exclude brltty option, since it is already recorded in
/etc/brltty.conf. Thanks, Samuel Thibault. Closes: #403820.
[ Updated translations ]
* Belarusian (be.po) by Pavel Piatruk
* Latvian (lv.po) by Aigars Mahinovs
* Malayalam (ml.po) by Praveen A
* Panjabi (pa.po) by A S Alam
-- Frans Pop <fjp@debian.org> Thu, 21 Dec 2006 16:26:21 +0100
debian-installer-utils (1.41) unstable; urgency=low
* list-devices: Fall back to assuming that cciss, ida, and rd RAID devices
are disks if udevinfo doesn't provide an ID_TYPE for them.
* list-devices: Check for both ID_CDROM= and ID_TYPE=cd to work around
#400258.
[ Updated translations ]
* Kurdish (ku.po) by Erdal Ronahi
-- Colin Watson <cjwatson@debian.org> Fri, 24 Nov 2006 20:08:40 +0000
debian-installer-utils (1.40) unstable; urgency=low
[ Joey Hess ]
* user-params: skip items in preseed_aliases. Closes: #395920.
[ Frans Pop ]
* Remove Thorsten Sauter from uploaders as requested by MIA team.
[ Colin Watson ]
* list-devices: Look for ID_CDROM= in udevinfo output rather than
ID_TYPE=cd when looking for CD devices. Closes: #398696.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Bosnian (bs.po) by Safir Secerovic
* Kurdish (ku.po) by rizoye-xerzi
* Romanian (ro.po) by Eddy Petrișor
* Slovenian (sl.po) by Matej Kovačič
-- Frans Pop <fjp@debian.org> Wed, 22 Nov 2006 13:57:00 +0100
debian-installer-utils (1.39) unstable; urgency=low
* apt-install/in-target: fix error messages when chroot_setup fails.
-- Frans Pop <fjp@debian.org> Mon, 30 Oct 2006 03:05:54 +0100
debian-installer-utils (1.38) unstable; urgency=low
* apt-install/in-target: in some cases chroot_setup would fail because of an
earlier error but leave a lock file behind which would prevent recovery.
Add some basic checks in chroot_setup and bail out if these fail.
Closes: #395113.
-- Frans Pop <fjp@debian.org> Wed, 25 Oct 2006 18:37:17 +0200
debian-installer-utils (1.37) unstable; urgency=low
[ Updated translations ]
* Belarusian (be.po) by Andrei Darashenka
* Dzongkha (dz.po) by Jurmey Rabgay
* Indonesian (id.po) by Arief S Fitrianto
* Italian (it.po) by Stefano Canepa
* Kurdish (ku.po) by Erdal Ronahi
* Romanian (ro.po) by Eddy Petrișor
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Damodharan Rajalingam
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Tue, 24 Oct 2006 14:38:07 +0200
debian-installer-utils (1.36) unstable; urgency=low
[ Colin Watson ]
* log-output: Use static functions where appropriate.
* log-output: When using --pass-stdout, pass stdout file descriptor
through directly, without the need for a stdout handler function.
Without this, long lines on stdout get broken into 1024-byte pieces.
[ Frans Pop ]
* Log actions by anna-install.
[ Updated translations ]
* Esperanto (eo.po) by Serge Leblanc
* Estonian (et.po) by Siim Põder
* Basque (eu.po) by Piarres Beobide
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Nishant Sharma
* Croatian (hr.po) by Josip Rodin
* Kurdish (ku.po) by Erdal Ronahi
* Latvian (lv.po) by Aigars Mahinovs
* Vietnamese (vi.po) by Clytie Siddall
-- Colin Watson <cjwatson@debian.org> Tue, 3 Oct 2006 23:42:44 +0100
debian-installer-utils (1.35) unstable; urgency=low
* list-devices: Check for /sys/block, not /sys.
-- Colin Watson <cjwatson@debian.org> Tue, 22 Aug 2006 18:39:25 +0100
debian-installer-utils (1.34) unstable; urgency=low
* Add a 'partition' type to list-devices. 'disk' only finds top-level
block devices.
-- Colin Watson <cjwatson@debian.org> Mon, 21 Aug 2006 14:42:05 +0100
debian-installer-utils (1.33) unstable; urgency=low
* Add locking to chroot-setup.sh, since people sometimes try to run two
parallel instances of apt-install or in-target and that breaks horribly.
* Just mv start-stop-daemon.REAL back during cleanup, don't rm then mv
(Anthony Towns).
* Note that search-path is deprecated, as 'type' can generally do the job
just as well. (If you find a case where it can't, please tell me.)
* Add list-devices, which can be used to list all devices of a given type
(currently cd, disk, floppy, and a weird maybe-floppy type to handle
mountfloppy's needs). Once udevinfo is added to udev-udeb (bug filed),
this can be used to avoid devfs path assumptions.
[ Updated translations ]
* Greek, Modern (1453-) (el.po) by quad-nrg.net
* Estonian (et.po) by Siim Põder
* Gujarati (gu.po) by Kartik Mistry
* Panjabi (pa.po) by A S Alam
* Traditional Chinese (zh_TW.po) by Tetralet
-- Colin Watson <cjwatson@debian.org> Mon, 21 Aug 2006 13:31:19 +0100
debian-installer-utils (1.32) unstable; urgency=low
* Rename a progess template that is only used for the post-base-installer
hook.
-- Joey Hess <joeyh@debian.org> Thu, 8 Jun 2006 02:40:54 -0400
debian-installer-utils (1.31) unstable; urgency=low
* Call udevsettle after udevtrigger; we want to ensure that the udev event
queue is empty.
* Always exit 0 from update-dev, even if e.g. udevplug exits non-zero due
to a timeout.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Georgian (ka.po) by Aiet Kolkhi
* Lithuanian (lt.po) by Kęstutis Biliūnas
-- Colin Watson <cjwatson@debian.org> Tue, 6 Jun 2006 14:08:25 +0100
debian-installer-utils (1.30) unstable; urgency=low
* debconf-get, debconf-set: Use DEBIAN_FRONTEND=noninteractive rather than
none, so that these programs can be used unmodified with debconf.
Requires cdebconf-udeb (>= 0.97).
* update-dev: Call udevplug if available (used in Ubuntu).
* update-dev: Call udevtrigger if available, for udev (>= 0.92-1). At some
point perhaps the udev guys will stop changing this?
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Icelandic (is.po) by David Steinn Geirsson
* Italian (it.po) by Giuseppe Sacco
* Khmer (km.po) by Khoem Sokhem
-- Colin Watson <cjwatson@debian.org> Fri, 26 May 2006 11:58:42 +0100
debian-installer-utils (1.29) unstable; urgency=low
* Suppress locale warnings from perl by setting PERL_BADLANG=0.
-- Frans Pop <fjp@debian.org> Fri, 12 May 2006 20:08:47 +0200
debian-installer-utils (1.28) unstable; urgency=low
* Fix chroot-setup.sh to work with new busybox which no longer pads the
count output of 'uniq -c'.
[ Updated translations ]
* Danish (da.po) by Claus Hindsgaul
* Dzongkha (dz.po)
* Basque (eu.po) by Piarres Beobide
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Slovenian (sl.po) by Jure Čuhalev
-- Frans Pop <fjp@debian.org> Fri, 12 May 2006 19:48:51 +0200
debian-installer-utils (1.27) unstable; urgency=low
[ Joey Hess ]
* Skip new module-specific parameters in user-params.
[ Frans Pop ]
* register-module:
- don't create parameter file if there are no parameters
- keep order of parameters
- avoid errors during script execution
[ Updated translations ]
* Dzongkha (dz.po)
* Kurdish (ku.po) by Erdal Ronahi
-- Frans Pop <fjp@debian.org> Mon, 24 Apr 2006 21:01:24 +0200
debian-installer-utils (1.26) unstable; urgency=low
* Do not allow apt-install to remove already installed packages.
Closes: #361870.
* register-module.prebaseconfig: only execute update-modules if it exists.
* register-module: make prebaseconfig script run post-base-installer instead.
This means it runs before kernel selection so that module parameters can
be taken into account by initrd/initramfs generators. There seems to be no
reason to run it later.
* register-module.post-base-installer (closes: #363290, #363292):
- to get the module name, also remove the suffix from the filename
- write to /etc/modutils.d in /target instead of the d-i environment
* register-module: add -i flag, this allows a module to be queued for
inclusion in the initrd rather than to be loaded from /etc/modules.
Based on patch by Jurij Smakov, for which thanks.
* Add myself to uploaders.
[ Updated translations ]
* Bosnian (bs.po) by Safir Secerovic
* Dzongkha (dz.po) by Sonam Rinchen
* Esperanto (eo.po) by Serge Leblanc
* Basque (eu.po) by Piarres Beobide
* Irish (ga.po) by Kevin Patrick Scannell
* Hungarian (hu.po) by SZERVÑC Attila
* Khmer (km.po) by Leang Chumsoben
* Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
* Northern Sami (se.po) by Børre Gaup
* Slovenian (sl.po) by Jure Cuhalev
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
-- Frans Pop <fjp@debian.org> Tue, 18 Apr 2006 20:33:11 +0200
debian-installer-utils (1.25) unstable; urgency=low
* Rebuilt with current version of libd-i for proper udeb deps.
-- Joey Hess <joeyh@debian.org> Sat, 18 Mar 2006 14:50:11 -0500
debian-installer-utils (1.24) unstable; urgency=low
* Don't include the terminfo file for bterm: it's already included in the
bogl-bterm-udeb. Closes: #353687.
* register-module: Add -p flag, this allows module parameters to be
specified w/o forcing the module to be loaded on boot via /etc/modules.
(This meant reworking how the queue is laid out.)
* register-module: Add module parameters to /etc/modules.conf and to
/etc/modprobe.conf in the d-i initrd, so that they will be used if the
module is loaded after register-module is called.
* register-module: Write out module parameters to /etc/modprobe.d/ so
they will be used with the 2.6 kernel.
* register-module: Add -a flag, this allows adding to existing module
params.
* Version build dep on libdebian-installer-dev. Closes: #354097
[ Frans Pop ]
* Do not install di-utils-shell when the gtk frontend is used.
[ Joey Hess ]
* Remove Remove --ignore-time-conflict settings, set globally for the
installer by base-installer now.
* Needs base-installer 1.49, but can't depend on it.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Bosnian (bs.po) by Safir Secerovic
* Hungarian (hu.po) by SZERVÑC Attila
* Polish (pl.po) by Bartosz Fenski
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Matej Kovačič
* Swedish (sv.po) by Daniel Nylander
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Joey Hess <joeyh@debian.org> Wed, 15 Mar 2006 14:58:16 -0500
debian-installer-utils (1.23) unstable; urgency=low
[ Martin Michlmayr ]
* Terminfo data moved to /lib/terminfo, update rules file accordingly.
* Install the terminfo file of bterm since it was included in sarge and
it seems some code might need it.
[ Joey Hess ]
* Keep terminfo files in /usr/share/terminfo where slang can find them
(dereference symlinks when copying).
-- Joey Hess <joeyh@debian.org> Tue, 24 Jan 2006 20:10:46 -0500
debian-installer-utils (1.22) unstable; urgency=low
[ Colin Watson ]
* apt-install: When queueing a package for later installation, make a log
entry saying so.
[ Joey Hess ]
* chroot-setup.sh: Set LANG to the value of debian-installer/locale so that
debconf frontend proxying etc will use the right language.
* Requires localechooser 0.26.
[ Updated translations ]
* Galician (gl.po) by Jacobo Tarrio
* Slovenian (sl.po) by Jure Čuhalev
-- Colin Watson <cjwatson@debian.org> Sun, 25 Dec 2005 16:13:04 +0000
debian-installer-utils (1.21) unstable; urgency=low
* chroot-setup.sh: set LANG again; not doing so causes endless perl warnings.
* apt-install: run chroot_setup before setting the frontend to noninteractive
as chroot_setup clears that variable.
-- Frans Pop <fjp@debian.org> Fri, 9 Dec 2005 17:36:40 +0100
debian-installer-utils (1.20) unstable; urgency=low
[ Joey Hess ]
* Add in-target command used to run a command in /target with debconf
passthrough.
* Split general purpose parts of apt-install out into chroot-setup.sh.
* Also added code to chroot-setup.sh to pass through the debconf
priority and the installation language.
* Make in-target use chroot-setup.sh, so it can be used to run commands that
install packages, like tasksel.
* Move the --ignore-time-conflict setting into a temporry apt.conf file
so it will also be used by commands run by in-target.
* Drop installation language code; locales are not set up and it's probably
not needed.
[ Colin Watson ]
* Add /usr/share/common-licenses/GPL reference to debian/copyright.
* Add myself to Uploaders.
[ Updated translations ]
* Latvian (lv.po) by Aigars Mahinovs
* Malagasy (mg.po) by Jaonary Rabarisoa
-- Colin Watson <cjwatson@debian.org> Wed, 7 Dec 2005 10:36:17 +0000
debian-installer-utils (1.19) unstable; urgency=low
* Add new update-dev program to centralise duplicated
userdevfs/udev-prodding code from hw-detect, partman-base,
partman-auto-lvm, and rootskel.
[ Updated translations ]
* Malagasy (mg.po) by Jaonary Rabarisoa
* Romanian (ro.po) by Eddy Petrişor
-- Colin Watson <cjwatson@debian.org> Wed, 30 Nov 2005 21:19:55 +0000
debian-installer-utils (1.18) unstable; urgency=low
* Make apt-get use gpgv --ignore-time-conflict to avoid validation errors
due to clock problems.
* Split out part of di-utils-shell.postinst into a new debconf-disconnect
command; rescue-mode uses the same code.
[ Updated translations ]
* Czech (cs.po) by Miroslav Kure
* German (de.po) by Jens Seidel
-- Colin Watson <cjwatson@debian.org> Sun, 20 Nov 2005 13:57:08 +0000
debian-installer-utils (1.17) unstable; urgency=low
[ Joey Hess ]
* Indentation consistency.
[ Colin Watson ]
* Add myself to debian/copyright for log-output.
[ Frans Pop ]
* Also mount /target/sys in apt-install to support installation of 2.6.14
and higher kernels using yaird/initramfs-tools.
[ Joey Hess ]
* Ignore shell return code in postinst script since it can exit nonzero
in several normal uses.
[ Updated translations ]
* Bengali (bn.po) by Baishampayan Ghose
* Hindi (hi.po) by Nishant Sharma
* Icelandic (is.po) by David Steinn Geirsson
* Norwegian Nynorsk (nn.po)
* Swedish (sv.po) by Daniel Nylander
* Tagalog (tl.po) by Eric Pareja
-- Frans Pop <fjp@debian.org> Tue, 15 Nov 2005 20:40:50 +0100
debian-installer-utils (1.16) unstable; urgency=low
[ Colin Watson ]
* Replace log-output with a C implementation that doesn't stomp on fds 3
and 4, and which is therefore usable for debootstrap logging.
Unfortunately this requires making di-utils Architecture: any.
[ Updated translations ]
* Romanian (ro.po) by Eddy Petrisor
-- Colin Watson <cjwatson@debian.org> Sun, 2 Oct 2005 11:27:52 +0100
debian-installer-utils (1.15) unstable; urgency=low
* Change log-output to require passing the syslog tag using '-t TAG', like
logger(1).
-- Colin Watson <cjwatson@debian.org> Thu, 22 Sep 2005 18:36:20 +0100
debian-installer-utils (1.14) unstable; urgency=low
[ Joey Hess ]
* Use log-output in apt-install.
[ Colin Watson ]
* Add --pass-stdout option to log-output, so that you can log just stderr
and send stdout to a file or a pipe.
-- Colin Watson <cjwatson@debian.org> Thu, 22 Sep 2005 10:20:17 +0100
debian-installer-utils (1.13) unstable; urgency=low
* Sending output to the syslog from shell has long been a bit nasty in
d-i. We can pipe things to logger, but that loses the program's exit
code. Add log-output to fix this; you give it a tag, a program name, and
the program's arguments, it runs that program sending the output to
syslog with the specified tag, and then exits with the same exit code as
the subsidiary program.
* Updated translations:
- German (de.po) by Holger Wansing
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Kurdish (ku.po) by Erdal Ronahi
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Romanian (ro.po) by Eddy Petrisor
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Colin Watson <cjwatson@debian.org> Mon, 19 Sep 2005 11:29:56 +0100
debian-installer-utils (1.12) unstable; urgency=low
[ Matt Kraai ]
* Copy the terminfo files from /usr/share instead of /etc.
* Updated translations:
- Greek (el.po) by Greek Translation Team
-- Matt Kraai <kraai@debian.org> Tue, 19 Jul 2005 18:45:26 -0700
debian-installer-utils (1.11) unstable; urgency=low
[ Otavio Salvador ]
* Provide a debian-installer/add-kernel-opts question which is never
asked but allows adding extra parameters to $user_params variable.
[ Joey Hess ]
* Remove pipe_progress and its udeb, moved to busybox.
* Updated translations:
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Estonian (et.po) by Siim Põder
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Romanian (ro.po) by Eddy Petrişor
- Slovak (sk.po) by Peter Mann
- Tagalog (tl.po) by Eric Pareja
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Vietnamese (vi.po) by Clytie Siddall
- Wolof (wo.po) by Mouhamadou Mamoune Mbacke
- Xhosa (xh.po) by Canonical Ltd
-- Joey Hess <joeyh@debian.org> Sat, 9 Jul 2005 18:41:20 +0300
debian-installer-utils (1.10) unstable; urgency=low
* Colin Watson
- debconf-get: Reimplement using the cdebconf 'none' frontend.
* Joey Hess
- env2debconf moved to here from rootskel.
- Whoops, env2debconf moved on to new env-preseed.
- And debconf-set-selections moved to preseed-common, just to keep all
the preseed stuff in one place.
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Spanish (es.po) by Javier Fernández-Sanguino Peña
- Basque (eu.po) by Piarres Beobide
- Hebrew (he.po) by Lior Kaplan
- Italian (it.po) by Giuseppe Sacco
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Eddy Petrişor
- Russian (ru.po) by Yuri Kozlov
-- Joey Hess <joeyh@debian.org> Tue, 31 May 2005 20:53:29 -0400
debian-installer-utils (1.09) unstable; urgency=low
NOTE: Not for sarge.
* Colin Watson
- search-path: Do something sensible with absolute paths as arguments
(useful for rescue-mode).
- debconf-set: Use the 'none' frontend to avoid the annoying
screen-clearing effect.
- debconf-set-selections: Add an --unseen flag, to allow for interactive
preseeding.
- Don't output init=* from user-params; supplying it to the first stage
doesn't in general mean that you want it in the second stage too.
- Replace di-utils-shell.postinst with a smaller shell implementation,
using the DEBCONF_OLD_FD_BASE shell export feature from cdebconf 0.73.
* Joey Hess
- Merge Colin's anna-install patch for immediate udeb installation if
anna is configured. Needs new anna for the new functionality, queue mode
should continue to work with older annas.
- Stop setting the frontend to noninteractive for anna-install, getting
a progress bar and being able to deal with errors is semi-nice.
- Overload the type field in preseed files; if it's "seen" then
instead set the seen flag; this allows for preseeding that only changes
a default value but still leaves the question unseen.
* Matt Kraai
- Fix the spelling of "file system".
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Catalan (ca.po) by Guillem Jover
- German (de.po) by Dennis Stampfer
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Spanish (es.po) by Javier Fernandez-Sanguino Peña
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by Christian Perrier
- Gallegan (gl.po) by Jacobo Tarrio
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- Polish (pl.po) by Bartosz Fenski
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Yuri Kozlov
- Turkish (tr.po) by Recai Oktaş
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Sun, 1 May 2005 11:16:15 -0400
debian-installer-utils (1.08) unstable; urgency=low
* Updated translations:
- Welsh (cy.po) by Dafydd Harries
- Hebrew (he.po) by Lior Kaplan
- Hungarian (hu.po) by VEROK Istvan
- Romanian (ro.po) by Eddy Petrisor
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Wed, 6 Oct 2004 14:35:42 -0400
debian-installer-utils (1.07) unstable; urgency=low
* Frans Pop
- Don't add packages that are installed immediately to the queue
as they shouldn't be processed in base-config's postinst.
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Czech (cs.po) by Miroslav Kure
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Hebrew (he.po) by Lior Kaplan
- Indonesian (id.po) by Debian Indonesia Team
- Lithuanian (lt.po) by Kęstutis Biliūnasn
- Latvian (lv.po) by Aigars Mahinovs
- Bøkmal, Norwegian (nb.po) by Bjorn Steensrud
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Russian L10N Team
- Swedish (sv.po) by Per Olofsson
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Sun, 3 Oct 2004 20:45:33 -0400
debian-installer-utils (1.06) unstable; urgency=low
* Joey Hess
- Make apt-install add a dummy start-stop-daemon and a policy-rc.d to
prevent daemons from being started when packages are installed.
Closes: #264451
- Better cleanup if package install fails.
* Updated translations:
- German (de.po) by Dennis Stampfer
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- French (fr.po) by French Team
- Gallegan (gl.po) by Héctor Fenández López
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Russian (ru.po) by Russian L10N Team
-- Joey Hess <joeyh@debian.org> Fri, 17 Sep 2004 16:08:51 -0400
debian-installer-utils (1.05) unstable; urgency=low
* Joey Hess
- Add the id of the question to the dummy template description so bug
reports can be more useful.
* Updated translations:
- German (de.po) by Dennis Stampfer
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
- French (fr.po) by French Team
-- Joey Hess <joeyh@debian.org> Fri, 10 Sep 2004 11:38:36 -0400
debian-installer-utils (1.04) unstable; urgency=low
* Joey Hess
- Remove seen flag setting code in di-utils-shell.postinst and
di-utils-reboot.postinst.
- apt-install: Set DEBCONF_ADMIN_EMAIL to "" to prevent debconf from
mailing notes to user mail.
* Updated translations:
- Catalan (ca.po) by Jordi Mallach
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
- Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
- Basque (eu.po) by Piarres Beobide Egaña
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by French Team
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- Korean (ko.po) by Changwoo Ryu
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Polish (pl.po) by Bartosz Fenski
- Turkish (tr.po) by Recai Oktaş
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Mon, 6 Sep 2004 20:31:20 -0400
debian-installer-utils (1.03) unstable; urgency=low
* Joey Hess
- Make debconf-set-selections robust when dealing with preseed files
that are missing fields.
-- Joey Hess <joeyh@debian.org> Wed, 1 Sep 2004 01:09:44 -0400
debian-installer-utils (1.02) unstable; urgency=low
* Joey Hess
- debconf-set-selections: Mark preseeded questions as seen to
avoid pestering the user with them.
-- Joey Hess <joeyh@debian.org> Thu, 19 Aug 2004 16:27:16 +0100
debian-installer-utils (1.01) unstable; urgency=low
* Joey Hess
- Add a user-params command to di-utils, useful for boot loader installers
that want to pass on user-entered params to the installed system's
bootloader.
- Add a debconf-set-selections to di-utils for use by preseeding.
-- Joey Hess <joeyh@debian.org> Wed, 18 Aug 2004 15:07:50 +0100
debian-installer-utils (1.00) unstable; urgency=low
* Updated translations:
- Welsh (cy.po) by Dafydd Harries
- Italian (it.po) by Stefano Melchior
- Bøkmal, Norwegian (nb.po) by Petter Reinholdtsen
- Swedish (sv.po) by Per Olofsson
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Sun, 25 Jul 2004 19:26:43 -0400
debian-installer-utils (0.57) unstable; urgency=low
* Bastian Blank
- Setup new environment. (closes: #219629)
- Restore stderr. Needs cdebconf 0.70.
- Use generic exit routines. Needs rootskel 0.86.
- Make register-module able to product chandev settings.
- Don't call clear.
* Colin Watson
- Add search-path program to attempt to discourage fragile code of the
form 'if [ -x /hardcoded/path/to/executable ]'.
* Updated translations:
- Arabic (ar.po) by Abdulaziz Al-Arfaj
- Bulgarian (bg.po) by Ognyan Kulev
- Catalan (ca.po) by Jordi Mallach
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Frederik Dannemare
- German (de.po) by Dennis Stampfer
- Greek (el.po) by George Papamichelakis
- Spanish (es.po) by Javier Fernández-Sanguino
- Persian (fa.po) by Arash Bijanzadeh
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by Christian Perrier
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- Hungarian (hu.po) by VERÓK István
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Dutch (nl.po) by Bart Cornelis
- Norwegian (nn.po) by Håvard Korsvoll
- Polish (pl.po) by Bartosz Fenski
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Yuri Kozlov
- Slovak (sk.po) by Peter KLFMANiK Mann
- Albanian (sq.po) by Elian Myftiu
- Turkish (tr.po) by Osman Yüksel
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Bastian Blank <waldi@debian.org> Sat, 24 Jul 2004 12:09:47 +0200
debian-installer-utils (0.56) unstable; urgency=low
* Updated translations:
- Albanian (sq.po) by Elian Myftiu
- Basque (eu.po) by Piarres Beobide Egaña
- Italian (it.po) by Stefano Melchior
- Polish (pl.po) by Bartosz Fenski
- Russian (ru.po) by Nikolai Prokoschenko
-- Joey Hess <joeyh@debian.org> Tue, 25 May 2004 12:43:47 -0300
debian-installer-utils (0.55) unstable; urgency=low
* Christian Perrier
- Fixed ellipsis typography
-- Christian Perrier <bubulle@debian.org> Thu, 13 May 2004 16:05:13 +0200
debian-installer-utils (0.54) unstable; urgency=low
* Joey Hess
- In di-utils-shell, ignore the exit status of the shell;
some commands came make the shell return nonzero, and that should not be
presented as a menu item failing.
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Bokmal, Norwegian (nb.po) by Bjørn Steensrud
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Vietnamese (vi.po) by Vu Quang Trung
-- Joey Hess <joeyh@debian.org> Fri, 23 Apr 2004 13:23:09 -0400
debian-installer-utils (0.53) unstable; urgency=low
* Updated translations:
- Finnish (fi.po) by Tapio Lehtonen
- Hebrew (he.po) by Lior Kaplan
- Indonesian (id.po) by Parlin Imanuel Toh
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Portuguese (pt.po) by Miguel Figueiredo
- Turkish (tr.po) by Osman Yüksel
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Tue, 20 Apr 2004 11:14:30 -0400
debian-installer-utils (0.52) unstable; urgency=low
* Updated translations:
- Basque (eu.po) by Piarres Beobide Egaña
- Dutch (nl.po) by Bart Cornelis
- Polish (pl.po) by Bartosz Fenski
-- Joey Hess <joeyh@debian.org> Sat, 10 Apr 2004 00:49:18 -0400
debian-installer-utils (0.51) unstable; urgency=low
* Joey Hess
- Change the menu item of di-utils-reboot so it's clear this is how to
abort the install. Closes: #229210
- main-menu has been fixed, so di-utils-shell need not exit 1.
- Change di-utils-reboot to not exit 30 if the user cancels.
The new main-menu displays a failure box for that.
- Reocmmend the busybox help command instead of the hard-t-remember ls
thing.
* Updated translations:
- Catalan (ca.po) by Jordi Mallach
- Czech (cs.po) by Miroslav Kure
- Welsh (cy.po) by Dafydd Harries
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Alwin Meschede
- Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
- Spanish (Castilian) (es.po) by Javier Fernández-Sanguino
- French (fr.po) by Christian Perrier
- Gallegan (gl.po) by Héctor Fernández López
- Hebrew (he.po) by Lior Kaplan
- Hungarian (hu.po) by VERÓK István
- Indonesian (id.po) by Parlin Imanuel Toh
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Polish (pl.po) by Bartosz Fenski
- Portuguese (pt.po) by Miguel Figueiredo
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Nikolai Prokoschenko
- Slovak (sk.po) by Peter KLFMANiK Mann
- Slovenian (sl.po) by Jure Čuhalev
- Albanian (sq.po) by Elian Myftiu
- Swedish (sv.po) by André Dahlqvist
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Sun, 4 Apr 2004 16:13:46 -0400
debian-installer-utils (0.50) unstable; urgency=low
* Updated translations:
- Bosnian (bs.po) by Safir Šećerović
- Hebrew (he.po) by Lior Kaplan
- Indonesian (id.po) by Parlin Imanuel Toh
- Turkish (tr.po) by Osman Yüksel
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Joey Hess <joeyh@debian.org> Tue, 30 Mar 2004 14:59:19 -0500
debian-installer-utils (0.49) unstable; urgency=low
* Updated translations:
- Russian by Nikolai Prokoschenko
- Giusepp Sacco
- Updated italian translation and notified translator (it.po)
-- Joey Hess <joeyh@debian.org> Sun, 14 Mar 2004 13:53:30 -0500
debian-installer-utils (0.48) unstable; urgency=low
* Translations:
- Ognyan Kulev
- Updated Bulgarian translation (bg.po).
- Dafydd Harries : Added Welsh translation (cy.po)
-- Joey Hess <joeyh@debian.org> Sat, 13 Mar 2004 00:11:10 -0500
debian-installer-utils (0.47) unstable; urgency=low
* Joey Hess
- Use three dots in elipses for consistency.
* Translations :
- Miguel Figueiredo
- Updated Portuguese translation (pt.po)
- Bartosz Fenski
- Updated Polish translation (pl.po)
- Pierre Machard
- Updated French translation (fr.po)
- Kenshi Muto
- Updated Japanese translation (ja.po)
- Konstantinos Margaritis
- Updated Greek translation (el.po)
- Carlos Z.F. Liu
- Updated Simplified Chinese translation (zh_CN.po)
- Jordi Mallach
- Updated Catalan translation (ca.po)
- André Luís Lopes
- Updated Brazilian Portuguese translation (pt_BR.po)
- Eugeniy Meshcheryakov
- Updated Ukrainian translation (uk.po)
- Elian Myftiu
- Updated Albanian translation (sq.po)
- Claus Hindsgaul
- Update da (Danish) translation.
- Ming Hua
- Initial Traditional Chinese translation (zh_TW.po), by Tetralet
- Updated Traditional Chinese translation (zh_TW.po), by Tetralet
- Håvard Korsvoll
- Updated Norwegian (Nynorsk) translation.
- Peter Mann
- Updated Slovak translation (sk.po)
- Alwin Meschede
- Updated German translation (de.po)
- Andre Dahlqvist
- Update Swedish translation (sv.po)
- Bart Cornelis
- Update Dutch translation (nl.po)
- Changwoo Ryu
- Updated Korean translation (ko.po)
- Javier Fernandez-Sanguino
- Updated Spanish translation (es.po)
- Jure Cuhalev
- Updated Slovenian translation (sl.po)
- Shlomi Loubaton
- Added Hebrew translation (he.po)
- Håvard Korsvoll
- Updated Norwegian, bokmål translation, (nb.po). From Axel Bojer
-- Joey Hess <joeyh@debian.org> Tue, 2 Mar 2004 13:12:28 -0500
debian-installer-utils (0.46) unstable; urgency=low
* Joey Hess
- Moved mapdevs to di-utils-mapdevfs.
- Removed the unnecessary utils.c.
- Moved apt-install, anna-install, register-module, debconf-get, and
debconf-set from rootskel to di-utils.
- Add a prebaseconfig progress template for register-module.
- Moved usage info out of the scripts and into the README.
- TODO seems obsolete, remove.
- apt-install: don't use comm and the files are not in /target.
Instead use an uniq -c trick inspired by Sesse. Fixed /proc unmount
problem.
* Translations :
- André Luís Lopes
- Added di-utils.templates into debian/po/POTFILES.in
- Ran debconf-updatepo.
- Updated Brazilian Portuguese translation (pt_BR.po)
- Kenshi Muto
- Updated Japanese translation (ja.po)
- Claus Hindsgaul
- Update da (Danish) translation.
- Kęstutis Biliūnas
- Updated Lithuanian translation (lt.po)
- Eugeniy Meshcheryakov
- Updated Ukrainian translation (uk.po)
- Carlos Z.F. Liu
- Updated Simplified Chinese translation (zh_CN.po)
- Konstantinos Margaritis
- Updated Greek translation (el.po)
- Miroslav Kure
- Updated Czech translation (cs.po)
- Elian Myftiu
- Updated Albanian translation (sq.po)
- Jordi Mallach
- Updated Catalan translation (ca.po)
-- Joey Hess <joeyh@debian.org> Sat, 21 Feb 2004 15:45:17 -0500
debian-installer-utils (0.45) unstable; urgency=low
* Use debhelper's new udeb support.
* Translations:
- Eugeniy Meshcheryakov
- Updated Ukrainian translation (uk.po)
- Carlos Z.F. Liu
- Updated Simplified Chinese translation (zh_CN.po)
-- Joey Hess <joeyh@debian.org> Mon, 9 Feb 2004 00:40:42 -0500
debian-installer-utils (0.44) unstable; urgency=low
* Translations
- Giuseppe Sacco
- applied patch for normalizing menus and some italian translation (it.po)
- h3li0s
- added albanian translation (sq.po)
* Eugen Meshcheryakov : added Ukrainian translation (uk.po)
-- Christian Perrier <bubulle@debian.org> Sun, 8 Feb 2004 20:26:50 +0100
debian-installer-utils (0.43) unstable; urgency=low
* Bart Cornelis
- Merged Norwegian Nynorsk (nn.po) translation from Skolelinux cvs
- small update to Dutch translation as a result of [DICO] discussion on
debian-l10n-dutch@l.d.o
* Andre Dahlqvist
- Update Swedish translation (sv.po)
* Joey Hess
- s/disc/disk/ (and unfuzzy)
- don't mark terminfo files as conffiles, that breaks things (and policy)
* Anmar Oueja
- created and translated to Arabic (ar.po)
* Nikolai Prokoschenko
- updated russian translation (ru.po)
* Anmar Oueja
- Updated Arabic translation (ar.po)
* André Luís Lopes
- Fixed some minor ocurrencies of the typo
disko -> disco. Were noticed as inconsistencies
among transltions by Denis Barbier's scripts and
I was noticed about them by Christian Perrier.
* Alwin Meschede
- clarified German translation (de.po)
* Safir Secerovic
- Update Bosnian translation (bs.po).
-- Joey Hess <joeyh@debian.org> Tue, 27 Jan 2004 13:24:18 -0500
debian-installer-utils (0.42) unstable; urgency=low
* Bartosz Fenski
- Updated Polish (pl) translation.
* Miguel Figueiredo
- Fixed charset in Portuguese translation (pt.po)
* Ming Hua
- Initial Simplified Chinese translation (zh_CN.po)
* Bart Cornelis
- Merged Norwegian Nynorsk (nn.po) translation from skolelinux-cvs
* Giuseppe Sacco
- Updated italian translation.
* Christian Perrier
- Corrected English spelling in templates (s/disc/disk)
- Debconf-udpatepo
- Unfuzzied translations
* Kęstutis Biliūnas
- Updated Lithuanian translation (lt.po).
* Joey Hess
- Removed di-utils-devicefiles from debian/control, and comment out line
for it in debian/rules. This package currently breaks netinst installs
on i386 (conflicts withy devfs), and should not be turned back on until
that is resolved.
-- Joey Hess <joeyh@debian.org> Sun, 28 Dec 2003 15:04:58 -0500
debian-installer-utils (0.41) unstable; urgency=low
* Bart Cornelis
- Merged Norwegian Bokmael (nb.po) translation from skolelinux-cvs
* Jure Cuhalev
- Added/updated slovenian translation (sl.po).
* Dennis Stampfer
- Merged some strings in German translation de.po
* Peter Mann
- Updated Slovak translation
-- Joey Hess <joeyh@debian.org> Thu, 25 Dec 2003 19:59:49 -0500
debian-installer-utils (0.40) unstable; urgency=low
* Bartosz Fenski
- Updated Polish (pl) translation.
* Verok Istvan
- Initial Hungarian translation.
* Bart Cornelis
- Updated Dutch translation (nl.po)
* André Dahlqvist
- Update Swedish translation. (sv.po)
* Dennis Stampfer
- Update German translation (de.po)
* Changwoo Ryu
- Initial Korean translation (ko.po).
* David Martínez Moreno
- Updated Spanish translation (es.po) and converted to UTF-8.
* Konstantinos Margaritis
- Updated Greek translation (el.po)
* Giuseppe Sacco
- preliminary italian translation from Filippo Giunchedi
- translation update by Stefano Melchior
* Aiki
- Added portuguese translation (pt.po)
* Ognyan Kulev
- Added/updated bulgarian translation (bg.po).
* Miguel Figueiredo
- Added portuguese translation (pt.po).
* Petter Reinholdtsen
- Update Norwegian Nynorsk (nn.po), thanks to Gaute Hvoslef Kvalnes.
* Joey Hess
- Fix di-utils-shell to exit 10 not 30 on backup.
* Miroslav Kure
- Updated Czech translation (cs.po)
-- Joey Hess <joeyh@debian.org> Mon, 22 Dec 2003 13:47:21 -0500
debian-installer-utils (0.39) unstable; urgency=low
* Peter Mann
- Initial Slovak translation (sk.po).
* Kęstutis Biliūnas
- Updated Lithuanian translation.
* Claus Hindsgaul
- Update da (Danish) translation.
* Ilgiz Kalmetev
- Updated Russian translation.
* Alastair McKinstry
- Add di-utils-devicefiles module, to supply device files for systems
not using devfs (or udev).
* Konstantinos Margaritis
- Initial Greek translation (el.po)
* Christian Perrier
- Refined and standardized templates. Closes: #220181
- Update French translation.
* Safir Šećerović
- Update Bosnian translation (bs.po)
* Tommi Vainikainen
- Update Finnish translation.
* Miroslav Kure
- Update Czech translation.
* Bart Cornelis
- Updated Dutch translation (nl.po)
* Jordi Mallach
- Update Catalan translation.
* Kęstutis Biliūnas
- Updated Lithuanian translation.
* Kenshi Muto
- Update Japanese translation (ja.po)
* André Luís Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* Petter Reinholdtsen
- Updated nb.po.
-- Joey Hess <joeyh@debian.org> Tue, 9 Dec 2003 15:37:09 -0500
debian-installer-utils (0.38) unstable; urgency=low
* Petter Reinholdtsen
- Fix typo in tr.po.
- Make templates for di-utils-exit-installer and
di-utils-reboot translatable.
- Updated Norwegian Bokmål (nb.po).
* Tommi Vainikainen
- Updated Finnish translation.
* Christian Perrier
- Update French translation.
* Miroslav Kure
- Update Czech translation.
* Update pt_BR (Brazilian Portuguese) translation.
* Kenshi Muto
- Update Japanese translation (ja.po)
* Bart Cornelis
- Updated Dutch translation (nl.po)
-- Joey Hess <joeyh@debian.org> Fri, 7 Nov 2003 21:49:02 -0500
debian-installer-utils (0.37) unstable; urgency=low
* Joey Hess
- di-utils-reboot: If the user chooses not to reboot, exit with 30,
to avoid making main-menu decide to jump to high priority mode
- di-utils-shell: support backup and improve template
* Kęstutis Biliūnas
- Update Lithuanian translation.
-- Joey Hess <joeyh@debian.org> Sun, 2 Nov 2003 22:00:46 -0500
debian-installer-utils (0.36) unstable; urgency=low
* Joey Hess
- Change di-utils-reboot to priority standard to match overrides.
- Reupload with correct distribution. Closes: #218583
* Safir Secerovic, Amila Akagic
- Add Bosnian translation (bs.po).
-- Joey Hess <joeyh@debian.org> Sat, 1 Nov 2003 11:24:01 -0500
debian-installer-utils (0.35) unstable; urgency=low
Alastair McKinstry
- Move di-utils-terminfo build bits into binary-indep.
Joey Hess
- Changed priority of di-utils-exit-installer to extra so it does not
show up on real installs. (Will need an override though.)
- Make di-utils-bootfloppy extra as well, as it is only useful for the
bootfloppy image.
-- Joey Hess <joeyh@debian.org> Sat, 1 Nov 2003 10:45:51 -0500
debian-installer-utils (0.34) unstable; urgency=low
* Alastair McKinstry
- Add di-utils-terminfo, providing terminfo entries for slang.
- di-utils-shell calls /usr/bin/clear if possible.
* Kęstutis Biliūnas
- Update Lithuanian translation (lt.po).
* Petter Reinholdtsen
- Update nb.po.
* Claus Hindsgaul
- Update da (Danish) translation.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 27 Oct 2003 10:15:43 +0100
debian-installer-utils (0.33) unstable; urgency=low
* Joey Hess
- add di-utils-exit-installer, which is only useful for exiting
installer demos (so priority extra)
* Kęstutis Biliūnas
- Update Lithuanian translation (lt.po).
-- Joey Hess <joeyh@debian.org> Wed, 22 Oct 2003 22:33:25 -0400
debian-installer-utils (0.32) unstable; urgency=low
* Kenshi Muto
- Update Japanese translation (ja.po)
* Christian Perrier
- Update French translation.
* Bart Cornelis
- update dutch translation (nl.po)
* Tommi Vainikainen
- Add Finnish (fi.po) translation
* Joey Hess
- Documentation updates.
- Remove unused exec.c, shell.c.
* Miroslav Kure
- Update Czech translation (cs.po).
* Ilgiz Kalmetev
- Update Russian translation (ru.po). Closes: #214354
-- Bart Cornelis <cobaco@linux.be> Sun, 19 Oct 2003 17:02:22 +0200
debian-installer-utils (0.31) unstable; urgency=low
* Christian Perrier
- Update French translation.
* Joey Hess
- Add pipe_progress, a new little program to cat a in a pipeline,
outputting a dot every second while there is activity. Based on a
program by Rob Landley.
- Add a di-utils-bootfloppy udeb, which for now includes only
pipe_progress.
-- Joey Hess <joeyh@debian.org> Fri, 17 Oct 2003 17:43:52 -0400
debian-installer-utils (0.30) unstable; urgency=low
* André Luís Lopes
- Updated pt_BR (Brazilian Portuguese) translation.
* Matt Kraai
- Fix the long description for di-utils-reboot.
-- Joey Hess <joeyh@debian.org> Wed, 15 Oct 2003 21:21:49 -0200
debian-installer-utils (0.29) unstable; urgency=low
* di-utils-shell does not depend on di-utils
* Add new di-utils-reboot, for a reboot menu item that does not depend on
anything.
-- Joey Hess <joeyh@debian.org> Thu, 16 Oct 2003 19:59:23 -0400
debian-installer-utils (0.28) unstable; urgency=low
* Claus Hindsgaul
- Update da (Danish) translation.
* Alastair McKinstry
- Move to new debconf macros.
- Added versioned depends on libdebconfclient-dev to ensure we get
working debonf_* macros
* Denis Barbier
- Add a comment in templates file to flag the main menu item.
* Kęstutis Biliūnas
- Add Lithuanian (lt.po) translation.
* Joey Hess
- Add a postinst for di-utils-shell. Closes: #215158
- Set DH_OPTIONS=-n to remove eg, debconf-generated postrm files.
- Fix build-dependency on libdebconfclient-dev (add 0).
- Clarified the wording of di-utils-shell/do-shell.
- Add myself to uploaders.
- Remove udpkg.c. Put it back when it works and is ready to be used, for
now it is just confusing.
- Remove exec binary. It doesn't work, and the name is wrong (exec is a
shell builtin!)
- Add usage message to di-utils if it's run directly.
- Remove di-utils-fake-*. There are better approaches.
- Remove standard-version, udebs are not standards-compliant.
- Removed various unreferenced files in debian/.
- Update to debhelper v4.
- Trim cruft from .cvsignore.
- Bump the priority of the di-utils-shell/do-shell to high.
It is an informational message, and those running at high priority
levels are the ones who need to read it most, probably.
- Simplified rules file; use dh_builddeb, dh_gencontrol.
- Break shell back out of the multicall binary (which is now a single-call
binary, whee!), and make di-utils-shell use a compiled postinst.
- Fix debhelper command invocations for split arch/indep package.
Although it's all arch dep right now, there will be an indep package
soon.
* Christian Perrier
- Update French translation.
-- Joey Hess <joeyh@debian.org> Thu, 16 Oct 2003 15:09:06 -0400
debian-installer-utils (0.27) unstable; urgency=low
* Alastair McKinstry
- Convert changelog to UTF-8 as per policy.
- Moved to Standards-Version: 3.6.1; no changes required.
* Thorsten Sauter
- Update German translation. (Closes: #179638)
* Bastian Blank
- Remove async, unused.
- Move shell and mapdevfs to a multicall binary.
- Add exec to the binary.
- Make exec exit with read return code.
* Petter Reinholdtsen
- Make menu entry translatable.
- Update nb.po.
- Make sure new multicall binary is installed into an
existing directory. Based on patch from Goswin von Brederlow.
* Kenshi Muto
- Update Japanese po (ja.po)
* André Luís Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* Pierre Machard
- Update French po-debconf translation.
* Miroslav Kure
- Added Czech translation.
* Bart Cornelis
- updated dutch translation (nl.po)
-- Bastian Blank <waldi@debian.org> Thu, 09 Oct 2003 16:18:08 +0200
debian-installer-utils (0.26) unstable; urgency=low
* Petter Reinholdtsen
- Update and complete the nb.po debconf translation.
- Update ru.po, patch from Serge Winitzki. (Closes: #180893)
* Chris Tillman
- Update English usage in message templates
* Kenshi Muto
- Update ja.po
* Christian Perrier
- Update fr.po
* André Luís Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* Bart Cornelis
- updated dutch translation
-- Petter Reinholdtsen <pere@debian.org> Sat, 27 Sep 2003 17:57:40 +0200
debian-installer-utils (0.25) unstable; urgency=low
* André Luís Lopes
- Update Brazilian Portuguese (pt_BR) debconf template translation.
* Alastair McKinstry
- Update to Standards-Version 3.6.0, converting changelog to UTF-8
* Pierre Machard
- Update French debconf template translation.
* Javier Fernandez-Sanguino
- Fixed to use proper spanish quotes
* Petter Reinholdtsen
- Updated fr.po, patch from Christian Perrier and Lucien Coste.
(Closes: #206966)
* Kenshi Muto
- Added Japanese translation (ja.po)
-- Petter Reinholdtsen <pere@debian.org> Tue, 9 Sep 2003 20:50:02 +0200
debian-installer-utils (0.24) unstable; urgency=low
* Alastair McKinstry
- Disable di-utils-choosesystem for now
- Remove unwanted menutest files
* Joey Hess
- shell.c dups the old fd to stderr too, since main-menu eats stderr
otherwise
-- Alastair McKinstry <mckinstry@computer.org> Wed, 16 Jul 2003 13:40:03 +0100
debian-installer-utils (0.23) unstable; urgency=low
* Alastair McKinstry
- Removed old packages di-utils-mkfs, di-utils-mkswap,
di-utils-mount-partitons.
- Added di-utils-choosesystem to select which OS
- Add di-utils for async utility
* Thomas Sauter
- Remove di-utils-generic package
-- Alastair McKinstry <alastair@computer.org> Tue, 15 Jul 2003 09:52:57 +0100
debian-installer-utils (0.22) unstable; urgency=low
* Petter Reinholdtsen
- Change priority of di-utils-partitioner from standard to
optional to match the archive override file.
* Bastian Blank
- s/dash/ash/, dash is also an ash
- remove di-utils-partitioner
- install mapdevfs into di-utils-mapdevfs
- di-utils-generic depends against di-utils-mapdevfs
-- Thorsten Sauter <tsauter@debian.org> Tue, 24 Jun 2003 22:57:22 +0200
debian-installer-utils (0.21) unstable; urgency=low
* André Luís Lopes
- Spellchecking and some minor cosmetic fixes for pt_BR
debconf template translation.
* Alastair McKinstry:
- Change from -ldebconf to -ldebconfclient. (Closes: #195110)
- Use cfdisk when using the newt frontend, too.
* Bastian Blank
- use mapdevfs from libd-i
- use new fds
* Petter Reinholdtsen
- Fix obvious typo in handling of partapps/archmaps.txt.
- Updated nb.po.
-- Petter Reinholdtsen <pere@debian.org> Thu, 29 May 2003 18:14:20 +0200
debian-installer-utils (0.20) unstable; urgency=low
* Carlos Valdivia Yague
- Translate to Spanish.
* Martin Sjögren
- Back out the busybox-cvs-udeb dependency, it breaks the netinst CDs.
The di-utils-mkswap package and friends are on their way out anyway.
-- Martin Sjogren <sjogren@debian.org> Mon, 21 Apr 2003 13:58:59 +0200
debian-installer-utils (0.19) unstable; urgency=low
* Denis Barbier
- Update French template translation, by Lucien Coste
* Chris Tillman
- Minor English corrections
* Petter Reinholdtsen
- Correct fstype in generated /etc/fstab. (Closes: #184992)
- Pass unknown device types unchanged through mapdevfs, to keep
LVM device names. (Closes: #185261)
* Martin Sjögren
- Add fd0 and fd1 to the list in mapdevfs. (Closes: #184994)
* André Luís Lopes
- Update Brazilian Portuguese (pt_BR) template translations.
* Alastair McKinstry
- Add dependency for di-utils-mkswap on busybox-udeb, which provides
mkswap.
-- Petter Reinholdtsen <pere@debian.org> Sat, 29 Mar 2003 15:01:13 +0200
debian-installer-utils (0.18) unstable; urgency=low
* Thorsten Sauter
- include external scripts for archs which call the available partitioner
programs
- prevent double mounting to mountpoints through the "manual"
option. (Closes: #183720)
- don't allow mounting to silly mount points
- notice the user, if no partitions for mounting are available
(Closes: #180694)
- add unmounting functionality. (Closes: #180029)
* Alastair McKinstry
- change ash to dash in template. (Closes: #183722)
* André Luís Lopes
- Update Brazilian Portuguese (pt_BR) template translations.
* Martin Sjögren
- Add Swedish translation.
* Petter Reinholdtsen
- Correct prebaseconfig/40fstab. It should now insert the file system
mount points as well. Device paths are rewritten using mapdevfs.
Add mount points /floppy and /cdrom.
-- Petter Reinholdtsen <pere@debian.org> Wed, 12 Mar 2003 22:03:16 +0100
debian-installer-utils (0.17) unstable; urgency=low
* Mario Lang
- mapdevfs.c: Add mapping for serial devices, and fix segfault on
faulty input.
* Max Kosmach <max@tcen.ru>: updated ru.po
* Petter Reinholdtsen
- Added Norwegian Bokmål (nb.po) translations recieved from
Bjørn Steensrud.
- Added Norwegian Nynorsk (nn.po) translations recieved from
Gaute Hvoslef Kvalnes.
* Thorsten Sauter:
- all packages use generic functions from new di-utils-generic pkg
- partitioner/mkfs/mkswap use /proc/partitions to get
also lvm/raid/... devices
- generic package for common used functions
- package for creating swapspace
- di-utils-mount-partitions generates final fstab file
- warning/error messages if something get wrong
-- Martin Sjogren <sjogren@debian.org> Tue, 25 Feb 2003 22:59:27 +0100
debian-installer-utils (0.16) unstable; urgency=low
* Create a di-utils-mapdevfs package.
-- Matt Kraai <kraai@debian.org> Sat, 08 Feb 2003 12:11:57 -0800
debian-installer-utils (0.15) unstable; urgency=low
* Make di-utils-mount-partitions architecture dependent (closes:
#180016).
-- Matt Kraai <kraai@debian.org> Thu, 06 Feb 2003 17:24:50 -0800
debian-installer-utils (0.14) unstable; urgency=low
* Jordi Mallach
- Add Catalan translation.
* Richard Hirst
- add ia64 support, using parted
* Matt Kraai
- Add proc entry to empty fstab.
* Martin Sjögren
- Set ext2 as default filesystem for di-utils-mkfs.
- Change the type of di-utils-mount-partitions/manual-mountpoint to
string.
-- Matt Kraai <kraai@debian.org> Mon, 03 Feb 2003 20:37:32 -0800
debian-installer-utils (0.13) unstable; urgency=low
* Tollef Fog Heen
- Fail if no discs are detected.
- Make mkfs and mount defaults a lot smarter (they will now not reselect
an item which they have operated on.)
- Add di-utils-fake-{partitioner,mkfs,mount-partitions} packages, if you
already done the needed work by hand
- Make di-utils-partitioner fail gracefully when no discs are detected
- Make di-utils-mount-partitions smart with regards to default choice
* Martin Sjögren
- The fake packages shouldn't be menu items.
- Tidy up the descriptions
* André Luís Lopes
- Sync pt_BR templates translation with original english.
-- Tollef Fog Heen <tfheen@debian.org> Sat, 7 Dec 2002 17:13:40 +0100
debian-installer-utils (0.12) unstable; urgency=low
* Martin Sjögren
- di-utils-mount-partitions now depends on made-filesystems, which
di-utils-mkfs provides.
* Tollef Fog Heen
- fix installr-menu-item
* Richard Hirst
- add hppa support, uses *fdisk, like i386
-- Tollef Fog Heen <tfheen@debian.org> Thu, 5 Dec 2002 01:39:01 +0100
debian-installer-utils (0.11) unstable; urgency=low
* Tollef Fog Heen
- Add menutest script for shell as well
-- Tollef Fog Heen <tfheen@debian.org> Tue, 26 Nov 2002 03:57:09 +0100
debian-installer-utils (0.10) unstable; urgency=low
* Bastian Blank
- add s390 support (uses fdasd)
- remove depency to fdisk-udeb
-- Tollef Fog Heen <tfheen@debian.org> Tue, 19 Nov 2002 02:35:38 +0100
debian-installer-utils (0.09) unstable; urgency=low
* Fix filenames for arch-independent udebs.
-- Tollef Fog Heen <tfheen@debian.org> Sun, 17 Nov 2002 11:32:17 +0100
debian-installer-utils (0.08) unstable; urgency=low
* Martin Sjögren
- Replace XBC with XB so our special control fields don't confuse the
changes files.
* André Luís Lopes
- Include di-utils-mkfs.templates into debian/po/POTFILES.in.
- Run debconf2po-update to update all translation.
- Update Brazilian Portuguese (pt_BR) translation.
* Tollef Fog Heen
- Fix installer-menu-item values. (Multiply by ten)
-- Tollef Fog Heen <tfheen@debian.org> Fri, 8 Nov 2002 14:40:33 +0100
debian-installer-utils (0.07) unstable; urgency=low
* Tollef Fog Heen:
- Add di-utils-mkfs
-- Tollef Fog Heen <tfheen@debian.org> Fri, 8 Nov 2002 04:42:18 +0100
debian-installer-utils (0.06) unstable; urgency=low
* Added french translation from Pierre Machard (Closes: 165857).
* André Luís Lopes
- Sync pt_BR.po with original english.
- Unfuzzy old translations.
- Define pt_BR.po fields (last translator, etc).
* Tollef Fog Heen
- use /dev/console for accessing the terminal, this works on all
systems, both those with and those without VCs
- fix this for the partitioner as well.
-- Tollef Fog Heen <tfheen@debian.org> Wed, 6 Nov 2002 02:15:24 +0100
debian-installer-utils (0.05) unstable; urgency=low
* use /dev/vc/0 to access the terminal
* Reduce menu item order from 2 to 9 to place it at the bottom of the
menu list.
* Convert to po-debconf, set Build-Depends: debhelper (>= 4.1.13) and
po-debconf (>= 0.5.0) to ensure that generated templates are right,
and set output encoding to UTF-8.
* Add mapdevfs tool for mapping devfs to old-style names
* Use udpkg-print-architecture for deciding whether to run fdisk to/from
vc or not.
* Use mapdevfs for writing fstab.
-- Tollef Fog Heen <tfheen@debian.org> Mon, 14 Oct 2002 17:25:14 +0200
debian-installer-utils (0.04) unstable; urgency=low
* German templateupdate thanks to
Sebastian Feltel <sebastian@feltel.de>.
* Add Brazilian Portuguese debconf templates for
partitioner and choose-medium and update the template
for shell.
* Add partitioner and mounter
-- Tollef Fog Heen <tfheen@debian.org> Mon, 16 Sep 2002 17:56:10 +0200
debian-installer-utils (0.03) unstable; urgency=low
* get rid of silly, unused configure target
* split out translated templates in separate files
* add partition-wrapper to the utils list.
* use new dpkg features so build isn't too cludgy
* add Spanish translation for shell thanks to
Carlos Valdivia Yagüe <valyag@teleline.es> (closes: #106725)
* add German template for shell thanks to
"Sebastian Feltel" <sebastian@feltel.de> (Closes: #99331)
* add Brazilian portuguese template for shell thanks to
Andre Luis Lopes <andrelop@ig.com.br> (closes: #108516)
* Russian template for shell thanks to
Ilgiz Kalmetev <ilgiz@bashtelecom.ru> (closes: #137635)
* Get rid of emacs variables in changelog.
* Put debian-boot as maintainer, put David Kimdon and Tollef Fog Heen
into uploaders
* Build-depend on libcdebconf-dev instead of cdebconf-dev
-- David Kimdon <dwhedon@debian.org> Tue, 23 Jul 2002 22:37:50 +0200
debian-installer-utils (0.02) unstable; urgency=low
* must build depend on cdebconf-dev (closes: #87537)
-- David Whedon <dwhedon@debian.org> Tue, 8 May 2001 00:04:27 -0700
debian-installer-utils (0.01) unstable; urgency=low
* Initial Release.
-- David Whedon <dwhedon@debian.org> Mon, 12 Feb 2001 21:16:51 -0800
|