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 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459
|
hw-detect (1.166) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Hungarian (hu.po) by Szia Tomi
* Romanian (ro.po) by Remus-Gabriel Chelu
* Serbian (sr.po) by Мирослав Николић
-- Holger Wansing <hwansing@mailbox.org> Tue, 01 Apr 2025 12:05:00 +0200
hw-detect (1.165) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Hungarian (hu.po) by Szia Tomi
* Polish (pl.po) by Matthaiks
* Romanian (ro.po) by Remus-Gabriel Chelu
* Traditional Chinese (zh_TW.po) by reimu105
-- Holger Wansing <hwansing@mailbox.org> Thu, 06 Feb 2025 22:03:09 +0100
hw-detect (1.164) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Persian (fa.po) by Danial Behzadi
-- Holger Wansing <hwansing@mailbox.org> Fri, 29 Nov 2024 23:19:43 +0100
hw-detect (1.163) unstable; urgency=medium
[ Updated translations ]
* Indonesian (id.po) by Andika Triwidada
* Georgian (ka.po) by Temuri Doghonadze
-- Cyril Brulebois <kibi@debian.org> Sat, 02 Nov 2024 21:40:17 +0100
hw-detect (1.162) unstable; urgency=medium
* Team upload
[ Michael Biebl ]
* Remove obsolete discover related files/dependencies
[ Carsten Schoenert ]
* Fix reload of iwlwifi module (Closes: #1006708)
[ Updated translations ]
* Georgian (ka.po) by Temuri Doghonadze
-- Holger Wansing <hwansing@mailbox.org> Tue, 10 Sep 2024 21:07:48 +0200
hw-detect (1.161) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Hindi (hi.po) by Scrambled777
* Hungarian (hu.po) by SZERVÁC Attila
* Marathi (mr.po) by omwani
* Punjabi (Gurmukhi) (pa.po) by Aman Alam
-- Holger Wansing <hwansing@mailbox.org> Tue, 28 May 2024 19:17:07 +0200
hw-detect (1.160) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Croatian (hr.po) by Milo Ivir
* Romanian (ro.po) by NicolaeFericitu
-- Holger Wansing <hwansing@mailbox.org> Sat, 23 Sep 2023 22:25:39 +0200
hw-detect (1.159) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Norwegian Nynorsk (nn.po) by Yngve Spjeld-Landro
-- Holger Wansing <hwansing@mailbox.org> Tue, 23 May 2023 22:22:00 +0200
hw-detect (1.158) unstable; urgency=medium
[ Pascal Hambourg ]
* Restore support for firmware license prompts (Closes: #1033921).
[ Cyril Brulebois ]
* Pick Pascal's minimal patch (duplicating standard input) to implement
the aforementioned fix for Bookworm, and postpone reworking the loop
until the next development cycle begins (See: #1035356, #1029843).
-- Cyril Brulebois <kibi@debian.org> Thu, 11 May 2023 23:14:28 +0200
hw-detect (1.157) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Norwegian Nynorsk (nn.po) by Kjetil Sørlund
* Polish (pl.po) by Matthaiks
-- Holger Wansing <hwansing@mailbox.org> Tue, 09 May 2023 21:59:55 +0200
hw-detect (1.156) unstable; urgency=medium
[ Updated translations ]
* Macedonian (mk.po) by Kristijan Fremen Velkovski
-- Cyril Brulebois <kibi@debian.org> Wed, 26 Apr 2023 01:39:26 +0200
hw-detect (1.155) unstable; urgency=medium
[ Cyril Brulebois ]
* Deduplicate the list of requested firmware files, not just the list of
requesting modules (Closes: #1031631).
* Implement microcode support when /proc/cpuinfo contains a vendor_id
field, with one of the following values (Closes: #1029804):
- Install amd64-microcode on AuthenticAMD.
- Install intel-microcode on GenuineIntel.
- Enable non-free-firmware accordingly.
- Perform installation via finish-install, making sure apt-setup has
been configured, and using apt-install for dependency resolution.
* Optimize firmware package installation: process dpkg triggers once,
after all packages have been installed (i.e. install-firmware only
triggers a single update-initramfs call).
* Fix condition around moutmedia calls (See: #1032377).
* Fix files removal for non-accepted firmware packages (See: #1032377).
* Add a special case for the mhi module: when the module requesting
firmware files is “mhi”, use the modules listed as holders (e.g.
ath11k_pci and qrtr_mhi). This is less precise than the usb special
case, since /sys/bus/mhi/devices/<device> gives no hints as to which
network module would be involved (See: #1032140). Thanks to Nicolas
Dandrimont and Benoît Chauvet for the tests.
* Adjust dmesg timestamp management: only update the timestamp file if
there are new lines.
* Fix package name extraction when removing a firmware package (e.g.
it failed to install because it was corrupted). Regression in 1.153,
spotted in #1032970.
* Build /var/log/firmware-summary as a 3-column summary of firmware (and
microcode) packages getting installed (Closes: #1029849). Those three
columns are: package, component, and reason. The reason might be dmesg
(check-missing-firmware), modalias (install-firmware hook), or cpu
(install-firmware hook).
[ Pascal Hambourg ]
* Fix several glitches (Closes: #1033035):
- Fix removal of temporary files in /target after installing firmware
packages (they're in /tmp so the next reboot has been doing the
trick until now).
- Determine the package name by using the Package field instead of
trusting the filename when installing firmware packages.
- Make sure not to include the possible -n option when setting the
IFACES variables in check-missing-firmware.
-- Cyril Brulebois <kibi@debian.org> Wed, 22 Mar 2023 20:31:11 +0100
hw-detect (1.154) unstable; urgency=medium
* Implement support for the hw-detect/firmware-lookup=never setting
(Closes: #1029848):
- It can be set on the kernel command line or via preseed.
- It can be set via the firmware=never alias.
- It changes check-missing-firmware's behaviour:
+ It will still scan kernel logs for missing firmware files, and
generate log lines accordingly.
+ It will not try to load firmware packages from the installation
image, even if firmware packages are included (as that's the
case for official installation images starting with Bookworm).
+ It will not ask whether to load firmware from removable media.
- It changes install-firmware's behaviour:
+ It will not copy any firmware files into the installed system.
+ It will not try to install firmware packages based on modalias
information.
* Reinstate “mountmedia” and “mountmedia driver” calls, even if use
cases haven't been clarified yet (See: #1029543); but skip them during
the first iteration:
- The “Load missing firmware from removable media?” question hasn't
been asked yet, so that seems better consistency-wise.
- If firmware is found in /firmware or /cdrom/firmware, which is
likely now that installation images include packages from
non-free-firmware, the first iteration might be sufficient and
skipping those calls means an improved user experience (less
waiting).
-- Cyril Brulebois <kibi@debian.org> Mon, 30 Jan 2023 02:36:59 +0100
hw-detect (1.153) unstable; urgency=medium
* Add initial support for non-free-firmware, following the 2022 General
Resolution about non-free firmware:
- Implement firmware lookup using Contents-firmware indices. Those
are produced by debian-cd when including firmware packages onto
installation images, and they make it possible to map firmware
files requested by the kernel to firmware packages and the
components they were found in. When performing a search in a
directory that doesn't include such Contents-firmware index, the
already-existing code is used as a fallback, checking the contents
of each and every *.deb package in that directory; in that case,
the component is deduced from the Section field of the package.
- Add support for *.component files when installing firmware packages
based on modalias information. Those are generated alongside the
existing *.patterns files (built from DEP-11/AppStream metadata)
by debian-cd when including firmware packages onto installation
images, and make it possible to map firmware packages to the
components they were found in.
- Use the aforementioned mechanisms to establish a list of components
from which firmware packages were installed, making it possible to
enable the relevant apt-setup/$component parameters (among contrib,
non-free, and non-free-firmware). This makes sure the package
manager's configuration includes the right components, so that
those firmware packages can be upgraded like any other regular
packages.
- The end results should be official installation images with
packages only from main and non-free-firmware (without contrib or
non-free which used to be present in some unofficial images
including firmware packages), configuring the installed system with
the main component and possibly the non-free-firmware one when some
firmware packages are needed.
* Add a special case for the usb module: when the module requesting
firmware files is “usb”, search the USB bus using port and device
information to find the underlying device and the module managing
it. Using a Realtek-based Wi-Fi dongle connected over USB as an
example: this makes it possible to trade “usb 4-1.5” found in dmesg
for “rtl8192cu”. Instead of trying to unload/reload the usb and
usbcore modules (which might not even be feasible), the relevant
network module gets reloaded instead, which should make it request its
firmware files again, and maybe find them if some firmware packages
have just been installed. If the lookup fails, stick to “usb”; the
existing link up/down dance implemented by upnics (see below) might be
sufficient for firmware files to be requested again.
* Tweak the upnics function, trying to stop it from killing any network
configuration that might have been set up by users, manually or via
preseed (with many thanks to Nicolas Dandrimont):
- Historically, to make sure network modules request the firmware
files they might require (this might not happen at the time the
module is loaded), each interface is brought up and down.
- Instead, only perform the link up/down dance for interfaces that
aren't up already (working under the assumption that their being up
is the result of user actions, as a previous upnics call would have
left interfaces down) and that aren't associated with a master
interface (that happens when bonding is configured).
* Delete support for loading udeb firmware packages (*.udeb or *.ude
depending on the filesystem), focus on loading regular deb firmware
packages instead. Yes, such udeb firmware packages existed… in Etch!
* Temporarily delete support for searching firmware on external media:
- users have always struggled with preparing such media;
- the lookup doesn't work sufficiently well;
- and since non-free firmware can be included directly into official
installation images, this feature should be much less useful
anyway.
A detailed rationale can be found in #1029543, feedback is welcome!
-- Cyril Brulebois <kibi@debian.org> Tue, 24 Jan 2023 05:12:46 +0000
hw-detect (1.152) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Amharic (am.po) by Danial Behzadi
* Asturian (ast.po) by Danial Behzadi
* Bengali (bn.po) by Danial Behzadi
* Japanese (ja.po) by Norimitsu SUGIMOTO
-- Holger Wansing <hwansing@mailbox.org> Sun, 01 Jan 2023 12:38:26 +0100
hw-detect (1.151) unstable; urgency=medium
* Team upload
* Revert template change in v1.148 (that changed /etc/pcmcia/ path into
/etc/pcmciautils/), which was done by error. Closes: #1020535.
-- Holger Wansing <hwansing@mailbox.org> Sun, 09 Oct 2022 17:34:19 +0200
hw-detect (1.150) unstable; urgency=medium
* Team upload
[ Chris Hofstaedtler ]
* Remove experimental dmraid support.
-- Holger Wansing <hwansing@mailbox.org> Thu, 04 Aug 2022 17:54:03 +0200
hw-detect (1.149) unstable; urgency=medium
* Team upload
[ Holger Wansing ]
* Add missing changelog entry for 1.148
[ Debian Janitor ]
* Add missing ${misc:Depends} to Depends for hw-detect, ethdetect,
disk-detect, driver-injection-disk-detect, archdetect.
* Bump debhelper from deprecated 9 to 13.
* Set debhelper-compat version in Build-Depends.
* Remove constraints unnecessary since buster:
+ Build-Depends: Drop versioned constraint on dpkg-dev,
libdebian-installer4-dev and po-debconf.
+ hw-detect: Drop versioned constraint on cdebconf-udeb, di-utils, rootskel
and udpkg in Depends.
+ ethdetect: Drop versioned constraint on cdebconf-udeb, di-utils and
rootskel in Depends.
+ disk-detect: Drop versioned constraint on cdebconf-udeb and di-utils in
Depends.
+ driver-injection-disk-detect: Drop versioned constraint on cdebconf-udeb
in Depends.
[ Updated translations ]
* Dutch (nl.po) by Frans Spiesschaert
* Vietnamese (vi.po) by Trần Ngọc Quân
* Simplified Chinese (zh_CN.po) by Wenbin Lv
-- Holger Wansing <hwansing@mailbox.org> Sun, 17 Jul 2022 16:33:50 +0200
hw-detect (1.148) unstable; urgency=medium
* Team upload
[ Frédéric Bonnard ]
* install opal-prd package on OpenPOWER machines.
[ Samuel Thibault ]
* Make gbp produce the right tag format
[ Holger Wansing ]
* Path /etc/pcmcia/ has been moved to /etc/pcmciautils/ (see #980271).
Update the template accordingly.
+ Syncing translations.
-- Holger Wansing <hwansing@mailbox.org> Sun, 02 Jan 2022 17:02:34 +0100
hw-detect (1.147) unstable; urgency=medium
* Add support for CHECK_MISSING_FIRMWARE=0 to hw-detect. This makes it
possible for some callers (e.g. cdrom-detect, maybe iso-scan too) to
avoid triggering firmware-related prompts when it's too early in the
installation process to do anything about it (See: #991587, #991590).
-- Cyril Brulebois <kibi@debian.org> Wed, 28 Jul 2021 09:05:05 +0200
hw-detect (1.146) unstable; urgency=medium
* Make the install-firmware script check both /firmware (PXE) and
/cdrom/firmware (ISO) for patterns extracted from DEP-11 metadata,
like check-missing-firmware does.
-- Cyril Brulebois <kibi@debian.org> Wed, 28 Jul 2021 00:46:22 +0200
hw-detect (1.145) unstable; urgency=medium
* Drop firmware-map file and surrounding logic: it never went further
than a proof-of-concept, and we're approaching the firmware problem
differently now (see: #989863).
* If /firmware/dep11 is present (which should be the case starting with
D-I Bullseye RC 3, for firmware-enabled images), query the udev
database, extract modalias information, and use the patterns available
under that directory to figure out which firmware packages might be
helpful. Copy the relevant /firmware/<package>_*.deb files under
/var/cache/firmware, and let the existing code enable non-free in
apt-setup and install those packages in /target (see: #989863).
* Check the actual module behind a given driver, since there might be a
slight mismatch between the name coming up in dmesg (e.g. rtw_8821ce)
and the actual module name (e.g. rtw88_8821ce). With many thanks to
Daniel Lewart for the original patch (Closes: #973733).
* Uniquify module list earlier in check-missing-firmware, to avoid
repeating n times the same module if it requests n firmware files
(e.g. iwlwifi).
* Finally stop looking into the obsolete /dev/.udev/firmware-missing and
/run/udev/firmware-missing locations, which were obsoleted upstream
(udev) in 2013. This only generates noise in the installer's syslog.
* When resuming parsing dmesg from a timestamp, just mention the
timestamp in the log instead of the actual pattern, for better
readability.
* Set udevdir to /lib/udev/rules.d (instead of /etc/udev/rules.d), to
appease lintian (udev-rule-in-etc).
* Ignore iwl-debug-yoyo.bin requested by iwlwifi as it seems to be about
debugging, it doesn't seem actually required, and it's not packaged
anyway (see: #969264, #966218).
-- Cyril Brulebois <kibi@debian.org> Tue, 27 Jul 2021 02:26:23 +0200
hw-detect (1.144) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Arabic (ar.po) by Fahim Sabah
-- Holger Wansing <hwansing@mailbox.org> Sun, 30 May 2021 22:33:19 +0200
hw-detect (1.143) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Hindi (hi.po) by KushagraKarira
* Tamil (ta.po) by Vasudevan Tirumurti
* Traditional Chinese (zh_TW.po) by louies0623
-- Holger Wansing <hwansing@mailbox.org> Sat, 13 Mar 2021 19:19:38 +0100
hw-detect (1.142) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Greek (el.po) by Vangelis Skarmoutsos
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* Lithuanian (lt.po) by Kornelijus Tvarijanavičius
* Punjabi (Gurmukhi) (pa.po) by Aman ALam
[ New translations ]
* Kabyle (kab.po) by Slimane Selyan Amiri
* Occitan (oc.po) by Quentin PAGÈS
-- Holger Wansing <hwansing@mailbox.org> Wed, 04 Nov 2020 19:22:45 +0100
hw-detect (1.141) unstable; urgency=medium
* Team upload
[ Updated translations ]
* French (fr.po) by Baptiste Jammet
* Icelandic (is.po) by Sveinn í Felli
* Polish (pl.po) by Bartosz Feński
-- Holger Wansing <hwansing@mailbox.org> Sun, 20 Sep 2020 22:24:07 +0200
hw-detect (1.140) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
* Dutch (nl.po) by Frans Spiesschaert
* Portuguese (Brazil) (pt_BR.po) by Adriano Rafael Gomes
-- Holger Wansing <hwansing@mailbox.org> Sun, 10 May 2020 18:03:38 +0200
hw-detect (1.139) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Czech (cs.po) by Miroslav Kure
-- Holger Wansing <hwansing@mailbox.org> Sun, 02 Feb 2020 19:08:46 +0100
hw-detect (1.138) unstable; urgency=medium
* Team upload
[ Cyril Brulebois ]
* Remove Christian Perrier from Uploaders, with many thanks for all
his contributions over the years! (Closes: #927504)
[ Raphaël Hertzog ]
* Add finish-install.d/08hw-detect.sh to install virtualization related
packages when virtualization is detected. (Closes: #782287)
[ Holger Wansing ]
* Add comment for translators, to keep main menu entry below a 55 columns
limit. This updates all po|pot files.
[ Updated translations ]
* Arabic (ar.po) by ButterflyOfFire
* Croatian (hr.po) by gogogogi
* Portuguese (pt.po) by Miguel Figueiredo
-- Holger Wansing <hwansing@mailbox.org> Sat, 12 Oct 2019 23:20:41 +0200
hw-detect (1.137) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Ukrainian (uk.po) by Anton Gladky
-- Holger Wansing <hwansing@mailbox.org> Wed, 27 Mar 2019 21:56:08 +0100
hw-detect (1.136) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Vietnamese (vi.po) by Trần Ngọc Quân
-- Holger Wansing <hwansing@mailbox.org> Wed, 06 Mar 2019 22:16:49 +0100
hw-detect (1.135) unstable; urgency=medium
* Team upload
* Remove trailing whitespaces from changelog file, to fix lintian tag.
* No longer use invalid 'modprobe -l' call, replace by 'modprobe -qn' to
query available modules (Closes: #870448).
[ Updated translations ]
* Danish (da.po) by Joe Hansen
* Finnish (fi.po) by Juhani Numminen
-- Holger Wansing <hwansing@mailbox.org> Sat, 09 Feb 2019 16:22:22 +0100
hw-detect (1.134) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Galician (gl.po) by mantinan
* Croatian (hr.po) by Valentin Vidic
* Marathi (mr.po) by Nayan Nakhare
-- Holger Wansing <hwansing@mailbox.org> Tue, 30 Oct 2018 18:30:45 +0100
hw-detect (1.133) unstable; urgency=medium
[ 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 23:11:08 +0200
hw-detect (1.132) unstable; urgency=medium
[ Updated translations ]
* Indonesian (id.po) by Andika Triwidada
-- Christian Perrier <bubulle@debian.org> Wed, 28 Mar 2018 07:26:39 +0200
hw-detect (1.131) unstable; urgency=medium
[ Updated translations ]
* Hebrew (he.po) by Yaron Shahrabani
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Thu, 15 Feb 2018 06:12:46 +0100
hw-detect (1.130) unstable; urgency=medium
[ Updated translations ]
* Persian (fa.po) by nima sahraneshin
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Thu, 01 Feb 2018 18:21:09 +0100
hw-detect (1.129) unstable; urgency=medium
[ Updated translations ]
* Panjabi (pa.po) by Aman ALam
* Serbian (sr.po) by Filipovic Dragan
-- Christian Perrier <bubulle@debian.org> Fri, 12 Jan 2018 15:46:39 +0100
hw-detect (1.128) unstable; urgency=medium
[ Updated translations ]
* Esperanto (eo.po) by Felipe Castro
* Simplified Chinese (zh_CN.po) by Boyuan Yang
-- Christian Perrier <bubulle@debian.org> Sun, 24 Dec 2017 09:52:01 +0100
hw-detect (1.127) unstable; urgency=medium
[ Updated translations ]
* Hungarian (hu.po) by Dr. Nagy Elemér Károly
* Lithuanian (lt.po) by Rimas Kudelis
* Swedish (sv.po) by Anders Jonsson
-- Christian Perrier <bubulle@debian.org> Thu, 30 Nov 2017 21:06:57 +0100
hw-detect (1.126) unstable; urgency=medium
[ Updated translations ]
* Greek (el.po) by Sotirios Vrachas
* Estonian (et.po) by Kristjan Räts
* Swedish (sv.po) by Anders Jonsson
-- Christian Perrier <bubulle@debian.org> Sat, 25 Nov 2017 09:10:09 +0100
hw-detect (1.125) unstable; urgency=medium
[ Updated translations ]
* Albanian (sq.po) by Redon Skikuli
-- Christian Perrier <bubulle@debian.org> Sun, 17 Sep 2017 08:13:26 +0200
hw-detect (1.124) unstable; urgency=medium
[ Updated translations ]
* Simplified Chinese (zh_CN.po) by Yangfl
-- Christian Perrier <bubulle@debian.org> Mon, 26 Jun 2017 12:24:24 +0200
hw-detect (1.123) unstable; urgency=medium
[ Mathieu Trudel-Lapierre ]
* disk-detect.sh: multipath-tools now generates mpath devices names in the
form 'mpath[a-z]+', rather than 'mpath[0-9]+' (Closes: #806713, #854565).
* disk-detect.sh: run update-dev before probing for devices
(Closes: #843895).
[ Cyril Brulebois ]
* Merge the changes above, with thanks to Mathieu Trudel-Lapierre,
Hendrik Brueckner, and Allan Jacobsen; and apologies for the delay.
-- Cyril Brulebois <kibi@debian.org> Fri, 10 Feb 2017 19:13:20 +0100
hw-detect (1.122) unstable; urgency=medium
* disk-detect: Stop trying to load dm-emc, since this module is long
gone: it seems to have been removed in v2.6.27-rc1! Thanks to Allan
Jacobsen for the report (Closes: #852285).
-- Cyril Brulebois <kibi@debian.org> Sat, 04 Feb 2017 01:09:36 +0100
hw-detect (1.121) unstable; urgency=medium
[ Cyril Brulebois ]
* Update firmware-map as of 2017-01-15.
-- Christian Perrier <bubulle@debian.org> Mon, 16 Jan 2017 07:11:05 +0100
hw-detect (1.120) unstable; urgency=medium
[ Cyril Brulebois ]
* Update firmware-map as of 2016-11-22.
-- Christian Perrier <bubulle@debian.org> Tue, 06 Dec 2016 05:56:51 +0100
hw-detect (1.119) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sun, 14 Aug 2016 21:52:39 +0200
hw-detect (1.118) unstable; urgency=medium
[ Aurelien Jarno ]
* Stop trying to install libc6-i686 and libc6-sparcv9b optimized
libraries as these packages are now gone.
[ Cyril Brulebois ]
* Introduce a build-firmware-map script, which makes it possible to
build a firmware->package mapping. The resulting mapping can then be
used to inform users of firmware packages they might be interested in
instead of letting them perform a manual lookup.
* Update Makefile to support a "firmware-map" target to refresh this
mapping, and to ship the mapping as /usr/share/hw-detect/firmware-map
in the hw-detect package.
-- Christian Perrier <bubulle@debian.org> Tue, 24 May 2016 08:58:00 +0200
hw-detect (1.117) unstable; urgency=medium
* Team upload
[ Hendrik Brueckner ]
* Improve and split harddrive detection into DASD and SCSI dependency
on s390x (Closes: #818586)
-- Philipp Kern <pkern@debian.org> Sun, 03 Apr 2016 11:40:24 +0200
hw-detect (1.116) unstable; urgency=medium
[ Colin Watson ]
* Use HTTPS for Vcs-* URLs, and link to cgit rather than gitweb.
-- Christian Perrier <bubulle@debian.org> Tue, 02 Feb 2016 07:04:13 +0100
hw-detect (1.115) unstable; urgency=medium
[ Colin Watson ]
* Compress devnames-static.gz using "gzip -n" (Lintian).
-- Christian Perrier <bubulle@debian.org> Sun, 17 Jan 2016 21:31:03 +0100
hw-detect (1.114) unstable; urgency=high
* Fix a hang during ethdetect (Closes: #803769). Thanks, Karsten Merker!
-- Cyril Brulebois <kibi@debian.org> Sat, 14 Nov 2015 16:34:33 +0100
hw-detect (1.113) unstable; urgency=medium
[ Ben Hutchings ]
* ethdetect: Don't look for Linux USB net drivers under drivers/usb
* ethdetect: Use embedded module description for modules not listed in
devnames-static.txt
* ethdetect: Exclude PHY drivers from list of net drivers
-- Christian Perrier <bubulle@debian.org> Thu, 10 Sep 2015 07:06:55 +0200
hw-detect (1.112) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Mon, 10 Aug 2015 08:57:22 +0200
hw-detect (1.111) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sat, 25 Jul 2015 18:48:50 +0200
hw-detect (1.110) unstable; urgency=medium
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Mon, 22 Jun 2015 06:53:24 +0200
hw-detect (1.109) unstable; urgency=medium
* No longer install acpi acpid acpi-support-base as it duplicates
functionality which is nowadays provided by systemd/logind.
Thanks to Michael Biebl for the notice and patch.
Closes: #783247
-- Christian Perrier <bubulle@debian.org> Tue, 28 Apr 2015 07:00:05 +0200
hw-detect (1.108) unstable; urgency=high
* Make sure not to look at past lines in dmesg (Closes: #779546):
- If user supplies firmware on a USB stick, missing firmware detection
happens again, and if dmesg hasn't received enough lines to get rid of
old “firmware: failed to load” entries, the situation looks like it
hasn't improved.
- To avoid such a loop, note the timestamp of the last dmesg line after
having scanned for such lines, and in case missing firmware detection
runs again, use this timestamp to filter out previous lines in case it's
still present in the new dmesg output; or use the whole dmesg output if
that timestamp has vanished.
- Tested successfully on bare metal with iwlwifi.
-- Cyril Brulebois <kibi@debian.org> Fri, 17 Apr 2015 19:24:22 +0200
hw-detect (1.107) unstable; urgency=low
[ Updated translations ]
* Danish (da.po) by Joe Hansen
-- Christian Perrier <bubulle@debian.org> Sun, 08 Mar 2015 08:03:17 +0100
hw-detect (1.106) unstable; urgency=low
[ Petter Reinholdtsen ]
* Add more logging in check-missing-firmware, to make debugging
easier.
-- Christian Perrier <bubulle@debian.org> Wed, 22 Oct 2014 08:17:49 +0200
hw-detect (1.105) unstable; urgency=low
[ Petter Reinholdtsen ]
* Change check-missing-firmware to look in dmesg for firmware requests
as the linux kernel and udev no longer tell us via
/dev/.udev/firmware-missing and /run/udev/firmware-missing which
firmware files are needed (Closes: #725714).
-- Christian Perrier <bubulle@debian.org> Thu, 16 Oct 2014 21:43:52 +0200
hw-detect (1.104) unstable; urgency=low
[ Updated translations ]
* German (de.po) by Holger Wansing
-- Christian Perrier <bubulle@debian.org> Thu, 25 Sep 2014 07:05:53 +0200
hw-detect (1.103) unstable; urgency=low
[ Petter Reinholdtsen ]
* Enable hardening when building archdetect.
-- Christian Perrier <bubulle@debian.org> Mon, 15 Sep 2014 11:25:54 +0200
hw-detect (1.102) unstable; urgency=low
* Revert the archdetect vs. archdetect-udeb change (Closes: #761135).
Reasons include:
- Disruptive changes are not welcome so late in the release cycle
(especially when little to nothing has to be gained).
- No tests have been performed, since debian-installer starts
failing to build from source.
- Reusing a package name for a different package-type is a recipe
for disaster.
-- Cyril Brulebois <kibi@debian.org> Thu, 11 Sep 2014 08:32:43 +0200
hw-detect (1.101) unstable; urgency=low
* Upload to unstable.
-- Petter Reinholdtsen <pere@debian.org> Wed, 10 Sep 2014 00:03:14 +0200
hw-detect (1.100.0.exp.1) experimental; urgency=low
* Improve driver injection disk support. Adjust
driver-injection-disk.sh to also probe disks for OEMDRV label (LP:
#1332187). Patch from Kent Baxley and Ubuntu.
* Move firmware installation code to pre-pkgsel.d. Relocate hook to
move firmware/injected drivers' .deb packages installation from
post-base-installer.d stage to pre-pkgsel.d stage to make sure it
is done after any injected drivers are installed in the
pre-pkgsel.d step (LP: #1209287, LP: #1216043). Patch from
Dmitrijs Ledkovs and Ubuntu.
* Correct email address for Bart Cornelis in changelog to avoid
lintian error.
* Introduce archdetect deb package and archdetect(1) manual page.
This is useful to know what setting d-i uses for architecture.
Rename udeb to archdetect-udeb providing archdetect for backward
compatibility, and add new archdetect binary package. Build with
hardening flags to ensure binary is hardened. Based on patch from
Colin Watson and Ubuntu.
-- Petter Reinholdtsen <pere@debian.org> Tue, 09 Sep 2014 13:00:39 +0200
hw-detect (1.100) unstable; urgency=low
[ Petter Reinholdtsen ]
* Correct detection of Macs needing to blacklist snd-aoa
modules. This should get sound working out of the box on iMac G5
20 and others (Closes: #650588). Patch from Risto Suominen and
Ben Harris.
* Remove code trying to install the libc6-sparcv9 package on sparc,
as the package no longer exist since wheezy. (Closes: #505829).
-- Petter Reinholdtsen <pere@debian.org> Tue, 09 Sep 2014 10:27:24 +0200
hw-detect (1.99) unstable; urgency=medium
[ Updated translations ]
* Bosnian (bs.po) by Amila Valjevčić
* Hungarian (hu.po) by Judit Gyimesi
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Cyril Brulebois <kibi@debian.org> Fri, 14 Mar 2014 15:32:19 +0100
hw-detect (1.98) unstable; urgency=low
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Sat, 14 Sep 2013 15:15:28 +0200
hw-detect (1.97) unstable; urgency=low
[ Colin Watson ]
* Merge from Ubuntu:
- Refer to /usr/share/common-licenses/GPL-2 in debian/copyright.
- Load xenbus_probe_frontend if we're running under the Xen hypervisor
(LP: #857662).
- Redirect update-dev output to /dev/null, as it is in principle
possible for it to write to stdout and that would interfere with
debconf.
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Sat, 07 Sep 2013 07:43:20 +0200
hw-detect (1.95) unstable; urgency=low
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Fri, 16 Aug 2013 12:49:51 +0200
hw-detect (1.94) unstable; urgency=low
[ 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:10:15 +0200
hw-detect (1.93) unstable; urgency=low
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Fri, 17 May 2013 19:34:43 +0200
hw-detect (1.92) unstable; urgency=low
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
-- Christian Perrier <bubulle@debian.org> Mon, 10 Dec 2012 22:08:28 +0100
hw-detect (1.91) unstable; urgency=low
* Replace XC-Package-Type by Package-Type in debian/control
* Add myself to Uploaders
[ Updated translations ]
* Asturian (ast.po) by ivarela
* Galician (gl.po) by Jorge Barreiro
-- Christian Perrier <bubulle@debian.org> Sun, 14 Oct 2012 20:39:13 +0200
hw-detect (1.90) unstable; urgency=low
[ Updated translations ]
* French (fr.po) by Christian Perrier
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Thu, 26 Jul 2012 02:08:00 +0200
hw-detect (1.89) unstable; urgency=low
* Team upload
[ Colin Watson ]
* check-missing-firmware.sh: Use 'readlink -f' rather than 'realpath',
since this is one of only two places using realpath in d-i at the
moment.
[ Joey Hess ]
* check-missing-firmware: Use udpkg to get the contents of debs,
in order to support other compression methods than gz.
[ Updated translations ]
* Asturian (ast.po) by Mikel González
* Bulgarian (bg.po) by Damyan Ivanov
* Tibetan (bo.po) by Tennom
* Welsh (cy.po) by Dafydd Tomos
* Estonian (et.po) by Mattias Põldaru
* Basque (eu.po) by Piarres Beobide
* Galician (gl.po) by Jorge Barreiro
* Indonesian (id.po) by Mahyuddin Susanto
* Icelandic (is.po) by Sveinn í Felli
* Kannada (kn.po) by Prabodh C P
* 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> Fri, 15 Jun 2012 07:21:09 +0200
hw-detect (1.88) unstable; urgency=low
[ Milan Kupcevic ]
* discover-mac-io.sh: Detect OHare, Heathrow/Paddington, and KeyLargo ATA
controllers to support transition from formerly compiled-in ide-pmac driver
to pata_macio module. Ref: #636269.
[ Joey Hess ]
* check-missing-firmware.sh: Add a special case for USB devices, for
which the devpath provided from firmware.agent claims to be for the
usbcore module. Search through subdirectories of the devpath to find
the actual driver module for the USB hardware. Closes: #648631
(Thanks, Brian Potkin, for testing the fix.)
-- Joey Hess <joeyh@debian.org> Thu, 17 Nov 2011 12:38:54 -0400
hw-detect (1.87) unstable; urgency=low
[ Jurij Smakov ]
* check-missing-firmware.sh: support new missing firmware directory
location (/run/udev/firmware-missing) in addition to the old one.
-- Jurij Smakov <jurij@debian.org> Thu, 23 Jun 2011 20:55:23 +0100
hw-detect (1.86) unstable; urgency=low
* Team upload
[ Miguel Figueiredo ]
* discover-mac-io.sh: blacklist snd-aoa-* modules to allow snd-powermac
to work. Closes #606984.
* Change priority of driver-injection-disk/load template. Closes: #583650.
[ Otavio Salvador ]
* Blacklist snd-aoa to allow snd-powermac to work. Refs: #606984.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Esperanto (eo.po) by Felipe Castro
* Korean (ko.po) by Changwoo Ryu
* Romanian (ro.po) by Eddy Petrișor
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Uighur (ug.po) by Sahran
-- Christian Perrier <bubulle@debian.org> Fri, 22 Apr 2011 22:22:00 +0200
hw-detect (1.85) unstable; urgency=low
* discover-mac-io.sh: Fix module loading for Ibook G4 (powermac). Closes:
#525902, #525946, #606984.
Thanks to Risto Suominen <risto.suminen@gmail.com>.
* Install mmc-modules if no disk is found, since some devices may not
have hard drives, but SD slots instead. Closes: #593108
* Increase the number of attempts to detect the new disk devices in
disk_found() of disk-detect.sh to 15, bringing the total waiting time
to 28 seconds. Current timeout of 4 seconds is not sufficient for
some SCSI subsystems with long driver/disk initialization time.
Closes: #611314
-- Jurij Smakov <jurij@debian.org> Sun, 27 Feb 2011 12:33:23 +0000
hw-detect (1.84) unstable; urgency=low
[ Joey Hess ]
* check-missing-firmware: Avoid reloading modules that have a network
interface that is already configured. Closes: #605983
[ Petter Reinholdtsen ]
* Add Vcs-Browser entry to control file, in addition to the Vcs-Svn
entry.
[ Updated translations ]
* Northern Sami (se.po) by Børre Gaup
* Telugu (te.po) by Arjuna Rao Chavala
-- Otavio Salvador <otavio@debian.org> Fri, 24 Dec 2010 19:27:22 -0200
hw-detect (1.83) unstable; urgency=low
* Set DI_PROGRESS_BAR_VISIBLE flag when running discover-pkginstall
to avoid it destroying pkgsel's progress bar.
(Bug #605938 asks for discover to honor this flag.)
[ Updated translations ]
* Lao (lo.po) by Anousak Souphavanh
-- Joey Hess <joeyh@debian.org> Sat, 04 Dec 2010 16:16:59 -0400
hw-detect (1.82) unstable; urgency=low
[ Joey Hess ]
* check-missing-firmware: When called from ethdetect, take interfaces
up and down each time through the loop. Previously this was only done
once, which caused a bug, as the first pass through does not prompt
for missing firmware, and on subsequent passes, the firmware was not
requested. Closes: #537502
(Thanks, Asbjørn Sloth Tønnesen)
[ Updated translations ]
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Sinhala (si.po) by Danishka Navin
* Slovenian (sl.po) by Vanja Cvelbar
-- Otavio Salvador <otavio@debian.org> Wed, 24 Nov 2010 09:52:34 -0200
hw-detect (1.81) unstable; urgency=low
[ Thibaut Girka ]
* The g_ether module is used to provide networking over USB on the
Openmoko phones. Register it in order to have network in the
installed system. Closes #593109
[ Otavio Salvador ]
* Handle all_generic_ide=1 kernel param.
[ Updated translations ]
* Bengali (bn.po) by Israt Jahan
* Catalan (ca.po) by Jordi Mallach
* Persian (fa.po) by Behrad Eslamifar
* Icelandic (is.po) by Sveinn Felli
-- Otavio Salvador <otavio@debian.org> Fri, 12 Nov 2010 14:42:31 -0200
hw-detect (1.80) unstable; urgency=low
* Add -g/--guess option to archdetect to ask for heuristics that make it
easier to bring up new boards, based on a patch from Michael Casadevall.
See http://lists.debian.org/debian-boot/2010/08/msg00641.html for
rationale. Requires libdebian-installer4-dev (>= 0.76).
[ Updated translations ]
* Asturian (ast.po) by maacub
* Bulgarian (bg.po) by Damyan Ivanov
* Bosnian (bs.po) by Armin Beširović
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Jacob Sparre Andersen
* Persian (fa.po) by Behrad Eslamifar
* Kurdish (ku.po) by Erdal Ronahi
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Romanian (ro.po) by Andrei Popescu
* Serbian (sr.po) by Janos Guljas
* Tamil (ta.po) by Dr.T.Vasudevan
* Telugu (te.po) by Arjuna Rao Chavala
-- Colin Watson <cjwatson@debian.org> Tue, 14 Sep 2010 18:23:23 +0100
hw-detect (1.79) unstable; urgency=low
[ Christian Perrier ]
* Reviewed driver injection disks templates with the help
of debian-l10n-english. Unjargonized and wordig aligned with
other D-I templates. Moved strings to sublevel 3 as this template
is used in some corner cases.
* Add dependency on cdebconf-udeb for driver-injection-disk-detect
udeb
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
* Arabic (ar.po) by Ossama M. Khayat
* Asturian (ast.po) by maacub
* Belarusian (be.po) by Viktar Siarheichyk
* Bulgarian (bg.po) by Damyan Ivanov
* Bengali (bn.po) by Israt Jahan
* Bosnian (bs.po) by Armin Beširović
* Catalan (ca.po) by Jordi Mallach
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Jacob Sparre Andersen
* German (de.po) by Holger Wansing
* Dzongkha (dz.po) by Jurmey Rabgay
* Greek, Modern (1453-) (el.po) by debian-l10n-greek
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Estonian (et.po) by Mattias Põldaru
* Basque (eu.po) by Piarres Beobide
* Persian (fa.po) by acathur
* Finnish (fi.po) by Esko Arajärvi
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jorge Barreiro
* 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
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Central Khmer (km.po) by Khoem Sokhem
* Korean (ko.po) by Changwoo Ryu
* 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
* Marathi (mr.po) by Sampada
* Bokmål, Norwegian (nb.po) by Hans Fredrik Nordhaug
* Dutch (nl.po) by Frans Pop
* Norwegian Nynorsk (nn.po) by Eirik U. Birkeland
* Panjabi (pa.po) by A S Alam
* Polish (pl.po) by Bartosz Fenski
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Portuguese (pt.po) by Miguel Figueiredo
* Romanian (ro.po) by ioan-eugen STAN
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Ivan Masár
* Slovenian (sl.po) by Vanja Cvelbar
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Turkish (tr.po) by Mert Dirik
* Ukrainian (uk.po) by Borys Yanovych
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Christian Perrier <bubulle@debian.org> Sun, 11 Jul 2010 12:22:45 +0200
hw-detect (1.78) unstable; urgency=low
[ Petter Reinholdtsen ]
* Add support for Dell Driver Injection disk v1, an integrated flash
media based solution for adding in drivers after OS launches.
Patch from Mario Limonciello and Ubuntu (LP: #341526). This
add some untranslated strings the the .po files.
* Install mouseemu on systems likely to have single-button mice
(i.e. non-desktop Macs LP: #251830), but not powerpc64 since it
is said to cause an oops in the input layer. Patch from Colin
Watson and Ubuntu.
* Depend on pciutils-udeb for lspci. Patch from Colin Watson and
Ubuntu.
* Adjust code reloading modules in check-missing-firmware.sh to
only reload once when a module need several firmware files.
-- Petter Reinholdtsen <pere@debian.org> Wed, 26 May 2010 08:04:02 +0200
hw-detect (1.77) unstable; urgency=low
[ Frans Pop ]
* check-missing-firmware: install loose firmware files in subdirectories
if that's where the kernel expects them. Closes: #572785.
[ Petter Reinholdtsen ]
* Use discover-pkginstall to install hardware related packages
automatically during installation (Closes: #577451). Run it
from pre-pkgsel to make sure a upgraded discover package is
available.
* Make sure check-missing-firmware follow symlinks and copy the
content to make sure symlinked firmware files work too.
* Move code checking for firmware in check-missing-firmware to a
separate function, to allow it to be used several places.
* Also look for firmware debs and udebs in the PXE initrd and
on the CD media, in a firmware/ directory (Closes: #574116).
* Add cross building support (Closes: #572369). Patch from
Hector Oron.
* Run preinst script of firmware debs in case there is a license
question there to accept, and do not activate firmware if the
preinst script return non-zero exit code (Closes: #574158).
[ Joey Hess ]
* Remove myself from Uploaders.
[ Updated translations ]
* Asturian (ast.po) by Iñigo Varela
* Danish (da.po) by Jacob Sparre Andersen
* German (de.po) by Holger Wansing
* French (fr.po) by Christian Perrier
* Hebrew (he.po) by Lior Kaplan
* Korean (ko.po) by Changwoo Ryu
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Marathi (mr.po) by Sampada
* Norwegian Nynorsk (nn.po) by Eirik U. Birkeland
* Romanian (ro.po) by ioan-eugen stan
* Slovenian (sl.po) by Vanja Cvelbar
-- Petter Reinholdtsen <pere@debian.org> Sat, 22 May 2010 17:58:26 +0200
hw-detect (1.76) unstable; urgency=low
[ Joey Hess ]
* check-missing-firmware: Try probing once for missing firmware before
prompting for it to be provided.
* Add new preseedable ethdetect/prompt_missing_firmware, which will
be used by oldsys-preseed to avoid firmware prompting happening
before network-console starts.
[ Frans Pop ]
* Queue pciutils for installation if the system has a pci bus.
* Drop --no-recommends option for installation of acpi-related packages.
Requires base-installer 1.105.
[ Updated translations ]
* Bengali (bn.po) by Israt Jahan
* German (de.po) by Holger Wansing
* Slovenian (sl.po) by Vanja Cvelbar
-- Frans Pop <fjp@debian.org> Mon, 22 Feb 2010 04:29:28 +0100
hw-detect (1.75) unstable; urgency=low
* check-missing-firmware: not all drivers register themselves if firmware
is missing; in that case fall back to determining the module using the
device's modalias. Patch provided by Jérémy Bobbio. Closes: #562594.
[ Updated translations ]
* Slovenian (sl.po) by Vanja Cvelbar
-- Frans Pop <fjp@debian.org> Tue, 29 Dec 2009 13:08:20 +0100
hw-detect (1.74) unstable; urgency=low
[ Gaudenz Steinlin ]
* The driver which turns the USB chip on the Openmoko phones into a network
card is not automatically loaded by udev. This special code in hw-detect
loads the needed kernel module.
[ Colin Watson ]
* Exec ethdetect/disk-detect from their respective postinsts, saving a fork.
* Upgrade to debhelper v7.
[ Joey Hess ]
* Fix firmware loading.
Current udev+kernel no longer supports PHYSDEVDRIVER. Instead make
firmware.agent log the DEVPATH, and check-missing-firmware can look
up the module name using sysfs. Closes: #542282
* Sync firmware.agent with udev, and make check-missing-firmware
use /dev/.udev/firmware-missing/
[ Ian Campbell ]
* Do not present an error to the user if loading ide-generic fails.
[ Frans Pop ]
* Remove code to wait for initialization of megaraid_mbox driver. Should
no longer be needed with current kernels.
* Remove no longer needed Lintian override for missing Standards-Version
field.
* Always test for USB support using /sys/bus/usb. Closes: #534413.
* Drop firmware.agent udev script; it's been included in udev-udeb since
version 146-2. Closes: #552497.
* hw-detect.sh: avoid pulling in console-{common,data} through console-tools
when apt-installing acpid and acpi-support-base.
Requires di-utils 1.73 and base-installer 1.104.
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
* Asturian (ast.po) by Marcos Antonio Alvarez Costales
* Belarusian (be.po) by Pavel Piatruk
* Bulgarian (bg.po) by Damyan Ivanov
* Esperanto (eo.po) by Felipe Castro
* Estonian (et.po) by Mattias Põldaru
* Galician (gl.po) by Marce Villarino
* Italian (it.po) by Milo Casagrande
* Slovenian (sl.po) by Vanja Cvelbar
-- Frans Pop <fjp@debian.org> Thu, 24 Dec 2009 03:23:27 +0100
hw-detect (1.73) unstable; urgency=low
[ Otavio Salvador ]
* Skip the start_pcmcia question since it has been enabled by default
for ages without known problems. In case it fails it ought to be fixed
in kernel anyway. The question template has been kept to avoid double
work for translators in case we get too many bug reports about it.
[ Colin Watson ]
* Improve cardbus_check_netdev quoting.
* Explicitly set seen flag of hw-detect/pcmcia_resources to true so that
it doesn't get asked on second and subsequent runs of hw-detect if
pcmcia_core fails to get loaded for some reason.
* Suppress unused-parameter warnings in archdetect.
[ Updated translations ]
* Czech (cs.po) by Miroslav Kure
* Esperanto (eo.po) by Felipe Castro
* Hindi (hi.po)
* Italian (it.po) by Milo Casagrande
* Swedish (sv.po) by Daniel Nylander
-- Colin Watson <cjwatson@debian.org> Thu, 23 Jul 2009 16:40:23 +0100
hw-detect (1.72) unstable; urgency=low
[ Colin Watson ]
* Ask the correct parameters question if modprobe fails.
* Cope with dm-mod being built-in (e.g. custom kernels).
* Merge from Ubuntu:
- Check dmraid's exit code rather than parsing its output.
- Use 'update-dev --settle' rather than 'update-dev' after loading
modules (although not after installing new module packages, which may
still require a trigger). Requires di-utils 1.66.
- Activate only non-degraded dmraid arrays (thanks, Luke Yelavich;
closes: #499482).
[ Frans Pop ]
* Install usbutils based on presence of /sys/bus/usb.
[ Javier Fernández-Sanguino Peña ]
* Fix Spanish translation. Closes: #510304
[ Frans Pop ]
* Remove myself as uploader.
* Move hook scripts to directories to simplify including them.
* hppa: starting with kernel 2.6.29 modules for devices on the parisc bus
should be loaded automatically.
-- Frans Pop <fjp@debian.org> Fri, 08 May 2009 07:45:48 +0200
hw-detect (1.71) unstable; urgency=low
* Pass all_generic_ide as a plain boot option instead of with the value 1 as
initramfs-tools ignores it otherwise. Whether or not initramfs-tools'
behavior is correct is debatable.
-- Frans Pop <fjp@debian.org> Wed, 17 Dec 2008 20:54:19 +0100
hw-detect (1.70) unstable; urgency=low
[ Frans Pop ]
* The partman-dmraid component is no longer needed for Serial ATA RAID
(dmraid) installations.
[ Updated translations ]
* Bengali (bn.po) by Mahay Alam Khan (মাহে আলম খান)
* Bosnian (bs.po) by Armin Besirovic
* Danish (da.po)
* Esperanto (eo.po) by Felipe Castro
* Latvian (lv.po) by Aigars Mahinovs
* Macedonian (mk.po) by Arangel Angov
* Slovenian (sl.po) by Vanja Cvelbar
* Albanian (sq.po) by Elian Myftiu
* Serbian (sr.po) by Veselin Mijušković
* Ukrainian (uk.po) by Borys Yanovych
-- Otavio Salvador <otavio@debian.org> Sun, 21 Sep 2008 21:57:19 -0300
hw-detect (1.68) unstable; urgency=low
[ Joey Hess ]
* Fix libc6-i686 queuing on smp. Closes: #497863
[ Jérémy Bobbio ]
* check-missing-firmware: Don't ask for firmware files that have already
been denied by the user in a previous question. Closes: #497395
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Hebrew (he.po) by Omer Zak
* Hungarian (hu.po) by SZERVÁC Attila
* Indonesian (id.po) by Arief S Fitrianto
* Georgian (ka.po) by Aiet Kolkhi
* Central Khmer (km.po) by KHOEM Sokhem
* Kurdish (ku.po) by Erdal Ronahi
* Nepali (ne.po) by Shiva Prasad Pokharel
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Simplified Chinese (zh_CN.po) by Deng Xiyue
-- Jérémy Bobbio <lunar@debian.org> Sun, 14 Sep 2008 20:16:35 +0000
hw-detect (1.67) unstable; urgency=low
[ Jérémy Bobbio ]
* Install virtio-modules when virtio devices are detected on the PCI bus.
(Closes: #497238)
[ Updated translations ]
* Belarusian (be.po) by Pavel Piatruk
* Catalan (ca.po) by Jordi Mallach
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Kumar Appaiah
* Croatian (hr.po) by Josip Rodin
* Malayalam (ml.po) by പ്രവീണ് അരിമ്പ്രത്തൊടിയില്
* Panjabi (pa.po) by Amanpreet Singh Alam
* Polish (pl.po) by Bartosz Fenski
-- Jérémy Bobbio <lunar@debian.org> Thu, 04 Sep 2008 12:32:35 +0000
hw-detect (1.66) unstable; urgency=low
[ Jérémy Bobbio ]
* On frontends other than GTK+, only ask about PCMCIA resource range when
user decided to start PCMCIA. (Closes: #479391)
* Fix ethdetect and hw-detect for NICs named differently than ethX.
(Closes: #495676)
Thanks to Frans Pop for suggesting a better implementation.
[ Ian Campbell ]
* Add Xen virtual Ethernet to list of known Ethernet drivers.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* German (de.po) by Jens Seidel
* Dzongkha (dz.po) by Jurmey Rabgay(Bongop) (DIT,BHUTAN)
* Greek, Modern (el.po) by Emmanuel Galatoulas
* 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
* Gujarati (gu.po) by Kartik Mistry
* Hindi (hi.po) by Kumar Appaiah
* Croatian (hr.po) by Josip Rodin
* Korean (ko.po) by Changwoo Ryu
* Kurdish (ku.po) by Erdal Ronahi
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Malayalam (ml.po) by Praveen|പ്രവീണ് A|എ
* 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
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Traditional Chinese (zh_TW.po) by Tetralet
-- Jérémy Bobbio <lunar@debian.org> Tue, 26 Aug 2008 12:19:11 +0200
hw-detect (1.65) unstable; urgency=low
[ Joey Hess ]
* Look for firmware files in a firmware subdirectory of the media,
as well as at the top level, for neat freaks.
* Call check-missing-firmware at the end of ethdetect and disk-detect,
as those programs can manually load modules, that could need firmware too.
[ Frans Pop ]
* Starting with initramfs-tools 0.92d the module ide-generic will be loaded
if the all_generic_ide parameter is passed. Advantage is that with that
option the module is loaded last instead of first.
* If the megaraid_mbox driver is in use, wait for the RAID hardware
initialization to finish before proceeding with the installation and add
the 'rootdelay' boot parameter for the target system. Closes: #486298.
[ Joey Hess ]
* ethdetect: Some modules do not request firmware until their interface
has been brought up. So up and down every interface so missing firmware
can be detected. Closes: #491712
* check-missing-firmware: Don't display dups. Closes: #492246
* check-missing-firmware: Check that debs are the right architecture before
trying to use them. Closes: #492249
* post-base-installer: If dpkg fails to install a firmware package, likely
because it has dependencies outside base, remove it rather than leaving
the db in an inconsistent state. Note that bugs have been filed to get all
such firmware packages fixed. Closes: #492248
* check-missing-firmware: Avoid trailing space in $files that caused it to
look for firmware packages containing a file named "" (and probably match
any package). Closes: #492247
* check-missing-firmware: Add a 1 second sleep before reading the missing
firmware log, just in case a module delays requesting firmware
until after modprobe returns, resulting in the log not being written in
time. (No such modules currently known.)
* hw-detect: Fix syntax error in code added for #472487.
* Add test for syntax errors in scripts to build process.
-- Joey Hess <joeyh@debian.org> Fri, 25 Jul 2008 13:32:08 -0400
hw-detect (1.64) unstable; urgency=low
* floppy-retriever renamed to media-retriever.
* Change wording of question since drivers can now be loaded from other
media than floppies.
* Add a modified copy of udev's firmware.agent, that records to
/tmp/missing-firmware.
* Add check-missing-firmware.
* Add a post-base-installer hook to install firmware into /target.
Closes: #487228
* If firmware debs are installed, default apt-setup to using non-free.
This is so that apt can upgrade those debs.
* RM note: udev-udeb 0.124-1 has dropped the firmware.agent, so needs
this version of hw-detect. This version of hw-detect will work with
older versions of udev-udeb, although it will be indetermanate whether the
missing firmware detection works.
-- Joey Hess <joeyh@debian.org> Mon, 07 Jul 2008 13:50:33 -0400
hw-detect (1.63) unstable; urgency=low
[ Colin Watson, Frans Pop ]
* The esp module is now called esp_scsi. linux-kernel-di-sparc-2.6 was
updated last October, but sbus.list wasn't updated to match.
Turns out the corrent module to load is sun_esp, not esp_scsi which is
only a mid-level module. See #485961.
[ Updated translations ]
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* Korean (ko.po) by Changwoo Ryu
* Russian (ru.po) by Yuri Kozlov
-- Frans Pop <fjp@debian.org> Tue, 17 Jun 2008 14:08:02 +0200
hw-detect (1.62) unstable; urgency=low
[ Updated translations ]
* Marathi (mr.po) by Sampada
* Punjabi (Gurmukhi) (pa.po) by Amanpreet Singh Alam
-- Otavio Salvador <otavio@debian.org> Thu, 08 May 2008 00:14:58 -0300
hw-detect (1.61) unstable; urgency=low
[ Frans Pop ]
* Remove Bdale Garbee, Christian Perrier and Matt Kraai as Uploaders with
many thanks for their past contributions.
[ Guido Guenther ]
* Run depmod after pulling in the multipath kernel modules.
Closes: #476836
[ Updated translations ]
* Malayalam (ml.po) by Praveen|പ്രവീണ് A|എ
* Marathi (mr.po)
-- Frans Pop <fjp@debian.org> Thu, 01 May 2008 10:47:19 +0200
hw-detect (1.60) unstable; urgency=low
[ Guido Guenther ]
* Add optional multipath detection to disk-detect.sh (triggered by
disk-detect/multipath/enable). Closes: #440439.
[ Frans Pop ]
* Some older systems have a disk controller that is not listed by lspci,
but that is supported by ide-generic. Load ide-generic if an ISA bus is
detected and, if new block devices become available, register the module
for inclusion in the initrd. Closes: #472487.
* hw-detect: simplify is_available() function.
[ Updated translations ]
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Esko Arajärvi
* Panjabi (pa.po) by Amanpreet Singh Alam
-- Frans Pop <fjp@debian.org> Thu, 03 Apr 2008 13:31:39 +0200
hw-detect (1.59) unstable; urgency=low
[ Updated translations ]
* Amharic (am.po) by tegegne tefera
* Dzongkha (dz.po) by Jurmey Rabgay
* Finnish (fi.po) by Esko Arajärvi
* Hindi (hi.po) by Kumar Appaiah
* Indonesian (id.po) by Arief S Fitrianto
* Korean (ko.po) by Changwoo Ryu
* Kurdish (ku.po) by Erdal Ronahi
* Latvian (lv.po) by Viesturs Zarins
* Malayalam (ml.po) by Praveen|പ്രവീണ് A|എ
* Panjabi (pa.po) by Amanpreet Singh Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Turkish (tr.po) by Recai Oktaş
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Fri, 15 Feb 2008 08:14:58 -0200
hw-detect (1.58) unstable; urgency=low
* Install acpi-support-base, needed now to get power button shutdowns to
work in non-gui environments since acpid dropped that support.
-- Joey Hess <joeyh@debian.org> Sat, 17 Nov 2007 21:34:08 -0500
hw-detect (1.57) unstable; urgency=low
[ Colin Watson ]
* Discard errors from grepping /sys/bus/pci/devices/*/class, in case
/sys/bus/pci/devices exists but not the class files.
[ Frans Pop ]
* Various code and whitespace cleanups.
* No longer load isofs by default as it's loaded automatically when mount is
called with '-t iso9660' which we do both in cdrom-detect and iso-scan.
* No longer explicitly load ide-core.
* Stop loading all IDE driver modules by default as they should be loaded
correctly automatically by the kernel/udev. For now, the old behavior can
still be forced by booting with hw-detect/load-ide=true.
The ide-floppy driver module may not be loaded automatically, but
mountfloppy (0.14) will try to load it when needed.
[ Updated translations ]
* Belarusian (be.po) by Hleb Rubanau
* Esperanto (eo.po) by Serge Leblanc
* Korean (ko.po) by Sunjae Park
* Romanian (ro.po) by Eddy Petrișor
-- Frans Pop <fjp@debian.org> Tue, 13 Nov 2007 14:06:56 +0100
hw-detect (1.56) unstable; urgency=low
[ Jérémy Bobbio ]
* Add missing "fi" in hw-detect.sh.
* Fix debian-rules-ignores-make-clean-error lintian warning.
-- Jérémy Bobbio <lunar@debian.org> Sun, 30 Sep 2007 04:20:41 +0200
hw-detect (1.55) unstable; urgency=low
[ Frans Pop ]
* Only ask PCMCIA resource question at low priority as we've not seen any
installation reports mentioning that issue in a long time.
[ Joey Hess ]
* Linux 2.6.22 renames the firewire bus and modules from "1394" to
"firewire". Support the new module names.
* While eth1394 is not currently being built for 2.6.22, go ahead and modify
sysfs-update-devnames to recognise ethernet devices that point to
/sys/bus/firewire as firewire ethernet.
[ Updated translations ]
* Bengali (bn.po) by Jamil Ahmed
* Italian (it.po) by Stefano Canepa
* Panjabi (pa.po) by A S Alam
* Portuguese (pt.po) by Miguel Figueiredo
* Vietnamese (vi.po) by Clytie Siddall
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Joey Hess <joeyh@debian.org> Fri, 28 Sep 2007 19:18:04 -0400
hw-detect (1.54) unstable; urgency=low
[ Joey Hess ]
* Remove cruft left over from the days of pcmcia-cs.
- pcmciautils doesn't create a cardmgr.pid, so stop looking for it to
determine if pcmcia is started. Look for the pcmcia_core module being
loaded instead.
- No need for funky redirections when running the init script as it no
longer starts a daemon.
- /var/run/stab was only produced by pcmcia-cs, so the whole
gen_pcmcia_devnames section can no longer run; remove.
- Only modify config.opts in /target if pcmcia_resources is preseeded.
* Remove workaround for long fixed cdebconf bug.
[ Frans Pop ]
* disk-detect: detect Serial ATA RAID disks if requested by setting
disk-detect/dmraid/enable at the boot prompt. Closes: #405484.
Thanks to Criss Carr for all the information he has provided, much of
which has been used in implementing the experimental dmraid support
available with this release of hw-detect and other components. Also
thanks to Jérémy Bobbio for his patches and Mark Brown for providing
a test system.
[ Updated translations ]
* Punjabi (Gurmukhi) (pa.po) by A S Alam
* Russian (ru.po) by Yuri Kozlov
-- Frans Pop <fjp@debian.org> Fri, 06 Jul 2007 00:17:19 +0200
hw-detect (1.53) unstable; urgency=low
[ Joey Hess ]
* Install eject on systems that seem to have a CD drive. Previously, it
was installed by cdrom-detect, only when installing from CD.
[ Updated translations ]
* Romanian (ro.po) by Eddy Petrișor
-- Frans Pop <fjp@debian.org> Mon, 21 May 2007 16:38:31 +0200
hw-detect (1.52) unstable; urgency=low
* Code cleanup:
- remove support for 2.4 series kernels
- remove support for discover
- remove support for old versions of hotplug/udev
-- Frans Pop <fjp@debian.org> Sat, 21 Apr 2007 00:59:06 +0200
hw-detect (1.51) unstable; urgency=low
* Multiply menu-item-numbers by 100
[ Updated translations ]
* Esperanto (eo.po) by Serge Leblanc
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
* Tamil (ta.po) by Dr.T.Vasudevan
-- Joey Hess <joeyh@debian.org> Tue, 10 Apr 2007 14:44:32 -0400
hw-detect (1.50) unstable; urgency=low
[ Updated translations ]
* Hebrew (he.po) by Lior Kaplan
* Malayalam (ml.po) by Praveen A
* Swedish (sv.po) by Daniel Nylander
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Frans Pop <fjp@debian.org> Tue, 27 Feb 2007 16:49:26 +0100
hw-detect (1.49) unstable; urgency=low
[ Updated translations ]
* Hebrew (he.po) by Lior Kaplan
* Romanian (ro.po) by Eddy Petrișor
-- Frans Pop <fjp@debian.org> Wed, 31 Jan 2007 11:35:05 +0100
hw-detect (1.48) unstable; urgency=low
* hw-detect.sh: [hppa] make sure initramfs-tools will load scsi modules for
controlers on a native HP bus. Closes: #406735.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Latvian (lv.po) by Aigars Mahinovs
* Malayalam (ml.po) by Praveen A
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
-- Frans Pop <fjp@debian.org> Wed, 24 Jan 2007 02:14:10 +0100
hw-detect (1.47) unstable; urgency=low
* sysfs-update-devnames.sh
FireWire Ethernet devices are often a subdevice of the actual (PCI)
controller and thus do not have vendor/device info under /sys/class/net.
However, we can recognize FireWire devices by their bus type. Having this
recognition should make it easier for users to identify their "regular"
Ethernet NIC.
[ Updated translations ]
* Danish (da.po) by Claus Hindsgaul
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Galician (gl.po) by Jacobo Tarrio
* Kurdish (ku.po) by Amed Çeko Jiyan
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Portuguese (pt.po) by Miguel Figueiredo
* Slovenian (sl.po) by Matej Kovačič
* Swedish (sv.po) by Daniel Nylander
-- Frans Pop <fjp@debian.org> Thu, 11 Jan 2007 15:17:33 +0100
hw-detect (1.46) unstable; urgency=low
* Change menu item for ethdetect from 18 to 17 so that ppp-udeb does not
get skipped.
[ Updated translations ]
* Panjabi (pa.po) by A S Alam
-- Frans Pop <fjp@debian.org> Thu, 21 Dec 2006 16:24:44 +0100
hw-detect (1.45) unstable; urgency=low
* Add sbus-discover back in as sysfs support for sbus turns out to be
incomplete. Closes: #402102,
[ Updated translations ]
* Belarusian (be.po) by Pavel Piatruk
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Kurdish (ku.po) by Erdal Ronahi
* Latvian (lv.po) by Aigars Mahinovs
* Malayalam (ml.po) by Praveen A
* Russian (ru.po) by Yuri Kozlov
* Slovenian (sl.po) by Matej Kovačič
-- Frans Pop <fjp@debian.org> Mon, 11 Dec 2006 08:41:58 +0100
hw-detect (1.44) unstable; urgency=low
* Remove sbus-discover now that the kernel has sysfs support for sbus
devices.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Bosnian (bs.po) by Safir Secerovic
* Catalan (ca.po) by Jordi Mallach
* Esperanto (eo.po) by Serge Leblanc
* Georgian (ka.po) by Aiet Kolkhi
* Kurdish (ku.po) by rizoye-xerzi
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Panjabi (pa.po) by A S Alam
* Romanian (ro.po) by Eddy Petrișor
* Slovenian (sl.po) by Matej Kovačič
* Swedish (sv.po) by Daniel Nylander
-- Frans Pop <fjp@debian.org> Thu, 30 Nov 2006 15:33:36 +0100
hw-detect (1.43) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Andrei Darashenka
* Greek, Modern (1453-) (el.po) by quad-nrg.net
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Estonian (et.po) by Siim Põder
* Hindi (hi.po) by Nishant Sharma
* Croatian (hr.po) by Josip Rodin
* Hungarian (hu.po) by SZERVÁC Attila
* Indonesian (id.po) by Arief S Fitrianto
* Khmer (km.po) by Khoem Sokhem
* Kurdish (ku.po) by Erdal Ronahi
* Macedonian (mk.po) by Georgi Stanojevski
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
* Nepali (ne.po) by Shiva Prasad Pokharel
* Dutch (nl.po) by Bart Cornelis
* Polish (pl.po) by Bartosz Fenski
* Romanian (ro.po) by Eddy Petrișor
* Albanian (sq.po) by Elian Myftiu
* Tamil (ta.po) by Damodharan Rajalingam
* Thai (th.po) by Theppitak Karoonboonyanan
* Turkish (tr.po) by Recai Oktaş
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Vietnamese (vi.po) by Clytie Siddall
* Simplified Chinese (zh_CN.po) by Ming Hua
* Traditional Chinese (zh_TW.po) by Tetralet
-- Frans Pop <fjp@debian.org> Tue, 24 Oct 2006 14:54:27 +0200
hw-detect (1.42) unstable; urgency=low
[ Colin Watson ]
* Improve sbus detection based on a scan of kernel code:
- qlogic_isp has been renamed to qlogicpti.
- Better sunlance, sunhme, esp, and qlogicpti detection.
- Add sunbmac detection.
- David Miller says that espdma is unnecessary for esp detection.
* Use list-devices to check for disks if parted_devices if unavailable.
Requires di-utils 1.33.
[ Joey Hess ]
* Finally install libc6-i686, if the machine's CPU can support it.
Libc guys tell me this is safe enough that it should be the default.
* Patch from Aurelien Jarno to install libc6-sparcv9[b] if the CPU supports
it.
* Improve wording of the pcmcia question.
[ Joshua Kwan ]
* Remove myself from Uploaders, I seriously lack the time for this..
[ Updated translations ]
* Bengali (bn.po) by Mahay Alam Khan (মাহে আলম খান)
* Catalan (ca.po) by Jordi Mallach
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Claus Hindsgaul
* German (de.po) by Jens Seidel
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Tapio Lehtonen
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hebrew (he.po) by Lior Kaplan
* Indonesian (id.po) by Arief S Fitrianto
* Italian (it.po) by Giuseppe Sacco
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Sunjae park
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Latvian (lv.po) by Aigars Mahinovs
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
* Dutch (nl.po) by Bart Cornelis
* Portuguese (pt.po) by Miguel Figueiredo
* Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
* Romanian (ro.po) by Eddy Petrişor
* Russian (ru.po) by Yuri Kozlov
* Northern Sami (se.po) by Børre Gaup
* Slovak (sk.po) by Peter Mann
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* Tagalog (tl.po) by Eric Pareja
* Turkish (tr.po) by Recai Oktaş
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
-- Frans Pop <fjp@debian.org> Sat, 16 Sep 2006 11:38:58 +0200
hw-detect (1.41) unstable; urgency=low
[ Colin Watson ]
* Install pcmciautils on 2.6 installs even if pcmcia-cs-udeb is present
for some reason (closes: #381863).
[ Frans Pop ]
* Remove standards-version and add Lintian override for it.
[ Updated translations ]
* Spanish (es.po) by Javier Fernández-Sanguino Peña
-- Frans Pop <fjp@debian.org> Sun, 20 Aug 2006 01:10:14 +0200
hw-detect (1.40) unstable; urgency=low
[ Joey Hess ]
* Only install discover into /target if udev is not being used. The only
user of discover on 2.6 systems is X, which gets it installed via the
desktop task preinst.
[ Frans Pop ]
* discover-mac-io.sh: snd-powermac can lock up G5 iMac and Power Mac.
Patch proposed by Colin Watson. Closes: #380082.
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Traditional Chinese (zh_TW.po) by Tetralet
-- Frans Pop <fjp@debian.org> Sun, 30 Jul 2006 01:39:50 +0200
hw-detect (1.39) unstable; urgency=low
[ Frans Pop ]
* Only ask FireWire question if a FireWire interface is actually present.
[ Colin Watson ]
* Fix disk_found to return 1 (no disks found) if it falls off the end of
its loop.
* If /proc/sys/kernel/hotplug is empty or /sbin/udevsend, then
HOTPLUG_TYPE is always udev even if /etc/hotplug is present (closes:
https://launchpad.net/bugs/53400).
[ Otavio Salvador ]
* Install pbbuttonsd if /sys/class/misc/pmu/ is found. Closes: #379197
[ Updated translations ]
* Estonian (et.po) by Siim Põder
* Gujarati (gu.po) by Kartik Mistry
* Hungarian (hu.po) by SZERVÁC Attila
* Dutch (nl.po) by Bart Cornelis
* Panjabi (pa.po) by A S Alam
-- Frans Pop <fjp@debian.org> Tue, 25 Jul 2006 13:04:38 +0200
hw-detect (1.38) unstable; urgency=low
* Change ethdetect menu item number from 15 to 18. cdrom-detect, load-iso,
load-cdrom, ethdetect, and s390-netdevice are all changed due to this and
should transition together.
Closes: #373097
-- Joey Hess <joeyh@debian.org> Tue, 13 Jun 2006 20:31:08 -0400
hw-detect (1.37) unstable; urgency=low
* prebaseconfig transition
-- Joey Hess <joeyh@debian.org> Wed, 7 Jun 2006 22:02:51 -0400
hw-detect (1.36) unstable; urgency=low
[ Frans Pop ]
* devnames-static.txt: update descriptions for some Sun Ethernet devices.
[ Joey Hess ]
* Remove code for i8042 and atkbd on powerpc, has been in rootskel for a
long time.
* Only register the psmouse module for 2.4 kernels, udev will handle it for
2.6.
* Only register ide-detect, ide-cd, and ide-disk for 2.4, ditto.
* Only register sr_mod and sd_mod for 2.4 as well.
[ Christian Perrier ]
* Split Choices fields in debconf templates. Will minimize translators errors.
[ Colin Watson ]
* Fix sysfs-update-devnames not to try to use 'local' outside a function,
which bash doesn't like.
* Use /etc/init.d/pcmciautils if available, so that pcmciautils-udeb and
pcmcia-cs-udeb don't have to contain the same file (and thus break if
pcmcia-cs-udeb accidentally gets unpacked into a 2.6 installer).
[ Joey Hess ]
* Removed some unnecessary and/or redundant debugging lines.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Catalan (ca.po) by Jordi Mallach
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Claus Hindsgaul
* German (de.po) by Jens Seidel
* Dzongkha (dz.po)
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hungarian (hu.po) by SZERVÑC Attila
* Italian (it.po) by Giuseppe Sacco
* Japanese (ja.po) by Kenshi Muto
* Georgian (ka.po) by Aiet Kolkhi
* Khmer (km.po) by Khoem Sokhem
* Korean (ko.po) by Sunjae park
* Kurdish (ku.po) by Erdal Ronahi
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Macedonian (mk.po) by Georgi Stanojevski
* Bokmål, Norwegian (nb.po) by Bjørn Steensrud
* Nepali (ne.po) by Shiva Pokharel
* Dutch (nl.po) by Bart Cornelis
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* 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 Petrişor
* Russian (ru.po) by Yuri Kozlov
* Northern Sami (se.po) by Børre Gaup
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Jure Čuhalev
* Albanian (sq.po) by Elian Myftiu
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Damodharan Rajalingam
* Thai (th.po) by Theppitak Karoonboonyanan
* Turkish (tr.po) by Recai Oktaş
* Vietnamese (vi.po) by Clytie Siddall
-- Colin Watson <cjwatson@debian.org> Wed, 7 Jun 2006 01:20:20 +0100
hw-detect (1.35) unstable; urgency=low
* hwdetect.sh: look in /proc/modules instead of using lsmod.
* discover-sbus: queue SCSI sbus modules for inclusion in initrd and NIC
modules for addition to /etc/modules. Closes: #358532.
* Needs di-utils 1.26.
* Add myself to uploaders.
[ Updated translations ]
* Bosnian (bs.po) by Safir Secerovic
* German (de.po) by Jens Seidel
* 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
* Polish (pl.po) by Bartosz Fenski
* Northern Sami (se.po) by Børre Gaup
* Slovenian (sl.po) by Jure Cuhalev
* Thai (th.po) by Theppitak Karoonboonyanan
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Wed, 19 Apr 2006 19:45:38 +0200
hw-detect (1.34) unstable; urgency=low
[ Joey Hess ]
* Remove most code that prompted for module parameters. The new model d-i
uses for module parameters is that the user should enter them on the
kernel command line at boot, using the form module.param=value. This
allows module parameters to be specified before udev loads modules during
boot. Closes: #271065
* Needs rootskel 1.30.
[ Frans Pop ]
* sbus.list: SUNW,qfe (Quattro HME) needs sunhme driver instead of sunqe.
See: #306476.
* sbus.list: add qec (QuadEthernet) which uses sunqe driver.
[ Joey Hess ]
* Rebuilt with new libdebian-installer to get correct udeb dependency
for archdetect.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Bulgarian (bg.po) by Ognyan Kulev
* Bosnian (bs.po) by Safir Secerovic
* Catalan (ca.po) by Jordi Mallach
* Czech (cs.po) by Miroslav Kure
* Danish (da.po) by Claus Hindsgaul
* German (de.po) by Jens Seidel
* Greek, Modern (1453-) (el.po) by quad-nrg.net
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Hungarian (hu.po) by SZERVÑC Attila
* Italian (it.po) by Giuseppe Sacco
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Sunjae park
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Latvian (lv.po) by Aigars Mahinovs
* Macedonian (mk.po) by Georgi Stanojevski
* Bokmål, Norwegian (nb.po) by Bjørn Steensrud
* Dutch (nl.po) by Bart Cornelis
* Polish (pl.po) by Bartosz Fenski
* Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Peter Mann
* Swedish (sv.po) by Daniel Nylander
* Tagalog (tl.po) by Eric Pareja
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Vietnamese (vi.po) by Clytie Siddall
* Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Sat, 18 Mar 2006 14:05:32 -0500
hw-detect (1.33) unstable; urgency=low
[ Martin Michlmayr ]
* Add a description of Intel's IXP400 Ethernet driver.
[ Colin Watson ]
* Replace another udevsynthesize call with update-dev.
* Remove old DEB_HOST_ARCH_* and CFLAGS_ARCH cruft.
* Fix CFLAGS so that the apparently-intended version formerly in
debian/rules actually gets used; no impact on size, though.
* Offer disk devices from drivers/message/fusion and drivers/message/i2o
(https://launchpad.net/distros/ubuntu/+bug/22220).
[ Frans Pop ]
* Add support for detecting sbus devices on sparc now that we are not using
discover anymore. May need to be extended to also add the drivers to the
initramfs initrd or /etc/modules. Uses prtconf from sparc-utils-udeb.
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Finnish (fi.po) by Tapio Lehtonen
* Japanese (ja.po) by Kenshi Muto
* Latvian (lv.po) by Aigars Mahinovs
* Punjabi (Gurmukhi) (pa_IN.po) by Amanpreet Singh Alam
* Romanian (ro.po) by Eddy Petrişor
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Jure Cuhalev
* Albanian (sq.po) by Elian Myftiu
* Turkish (tr.po) by Recai Oktaş
* Vietnamese (vi.po) by Clytie Siddall
-- Frans Pop <fjp@debian.org> Wed, 1 Feb 2006 15:40:33 +0100
hw-detect (1.32) unstable; urgency=low
* I observed a scsi disk that required three seconds from the end of
hw-detect until the kernel brought it up. (This may have involved udev,
not sure). Try to deal with this kind of race slightly better in
disk-detect by probing a few times with short pauses before concluding
that there is no disk.
[ Updated translations ]
* Catalan (ca.po) by Guillem Jover
* Greek, Modern (1453-) (el.po) by quad-nrg.net
* Finnish (fi.po) by Tapio Lehtonen
* Swedish (sv.po) by Daniel Nylander
* Vietnamese (vi.po) by Clytie Siddall
-- Joey Hess <joeyh@debian.org> Mon, 2 Jan 2006 21:15:56 -0500
hw-detect (1.31) unstable; urgency=low
* If d-i is using pcmciautils-udeb instead of pcmcia-cs-udeb (needed on
2.6.13 kernels), then install pcmciautils as well as pcmcia-cs.
* The new update-dev that handles udev has been around for a while, so
drop old calls to udevstart/udevsynthesize.
* Install discover1 in /target even if d-i is using udev, since X's
maintainer scripts need discover.
[ Updated translations ]
* Galician (gl.po) by Jacobo Tarrio
* Malagasy (mg.po) by Jaonary Rabarisoa
* Slovenian (sl.po) by Jure Čuhalev
-- Colin Watson <cjwatson@debian.org> Sun, 25 Dec 2005 15:12:11 +0000
hw-detect (1.30) unstable; urgency=low
* udebs are not allowed to have ORed deps (and it was adding cruft to the
build) so remove the discover/udev deps entirely. It would be better to
use a depends on something provided by both packages, but these deps are
not really needed since both hw-detect and one or the other is part of the
d-i base system.
-- Joey Hess <joeyh@debian.org> Sat, 3 Dec 2005 12:55:10 -0500
hw-detect (1.29) unstable; urgency=low
* Add udev-udeb as alternate dependency for discover.
[ Updated translations ]
* Latvian (lv.po) by Aigars Mahinovs
-- Colin Watson <cjwatson@debian.org> Fri, 2 Dec 2005 10:38:29 +0000
hw-detect (1.28) unstable; urgency=low
[ Frans Pop ]
* Drop dependency on hotplug-udeb for hw-detect as there's no such thing.
* ethdetect.sh: avoid grep error if /etc/network/devnames doesn't exist.
[ Colin Watson ]
* Rename /etc/network/devnames.gz to /etc/network/devnames-static.gz to
avoid confusion with /etc/network/devnames (closes: #340919).
* Consider HOTPLUG_TYPE as udev if the hotplug handler is empty (i.e.
udevd is listening for events on a netlink socket).
[ Updated translations ]
* Malagasy (mg.po) by Jaonary Rabarisoa
* Russian (ru.po) by Yuri Kozlov
-- Colin Watson <cjwatson@debian.org> Thu, 1 Dec 2005 13:04:27 +0000
hw-detect (1.27) unstable; urgency=low
* If we're running with udev, apt-install udev rather than hotplug.
[ Updated translations ]
* French (fr.po) by Christian Perrier
* Japanese (ja.po) by Kenshi Muto
* Romanian (ro.po) by Eddy Petrişor
-- Colin Watson <cjwatson@debian.org> Tue, 22 Nov 2005 21:16:15 +0000
hw-detect (1.26) unstable; urgency=low
[ Colin Watson ]
* If udevstart is missing, try udevsynthesize instead to try to get udev
to create pending device nodes.
-- Joey Hess <joeyh@debian.org> Wed, 16 Nov 2005 18:30:21 -0500
hw-detect (1.25) unstable; urgency=low
[ Colin Watson ]
* If we're using coldplugging udev rather than hotplug, run udevsynthesize
when modules are added.
* Add a udev rule to make sure our net event hook is run even without the
rest of hotplug.
[ Sven Luther ]
* chrp_rs6k -> chrp_ibm change, still keeping backward compatible support.
[ Updated translations ]
* Bengali (bn.po) by Baishampayan Ghose
* Hindi (hi.po) by Nishant Sharma
* Icelandic (is.po) by David Steinn Geirsson
* Korean (ko.po) by Sunjae park
* Norwegian Nynorsk (nn.po)
* Romanian (ro.po) by Eddy Petrişor
* Slovak (sk.po) by Peter Mann
* Swedish (sv.po) by Daniel Nylander
* Turkish (tr.po) by Recai Oktaş
-- Frans Pop <fjp@debian.org> Tue, 15 Nov 2005 20:55:09 +0100
hw-detect (1.24) unstable; urgency=low
* Use log-output.
* Updated translations:
- Catalan (ca.po) by Guillem Jover
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Kurdish (ku.po) by Erdal Ronahi
- Dutch (nl.po) by Bart Cornelis
- Portuguese (pt.po) by Miguel Figueiredo
- Romanian (ro.po) by Eddy Petrisor
- Wolof (wo.po) by Mouhamadou Mamoune Mbacke
-- Joey Hess <joeyh@debian.org> Mon, 26 Sep 2005 16:58:23 +0200
hw-detect (1.23) unstable; urgency=low
[ Colin Watson ]
* Install net-hotplug.sh as hw-detect.hotplug, not ddetect.hotplug.
[ Joey Hess ]
* Move explicit ide-core load to before hardware autodetection, to
avoid ugly message in the log and to allow module parameters to really be
passed for it.
* Run update-dev from userdevfs at end to allow it to create device nodes.
* Updated translations:
- German (de.po) by Holger Wansing
- Basque (eu.po)
- Bokmål, Norwegian (nb.po) by Bjørn Steensrud
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
-- Joey Hess <joeyh@debian.org> Wed, 17 Aug 2005 09:29:46 -0400
hw-detect (1.22) unstable; urgency=low
[ Joey Hess ]
* Robustness fix in apply_pcmcia_resource_opts: ignore incomplete user input
[ Colin Watson ]
* Most of archdetect moved to libdebian-installer so that it can be used
by other C code in d-i more conveniently. Use di_system_subarch_analyze
from there.
* Updated translations:
- German (de.po) by Dennis Stampfer
- Spanish (es.po) by Javier Fernández-Sanguino Peña
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Macedonian (mk.po) by Georgi Stanojevski
- Dutch (nl.po) by Bart Cornelis
- Polish (pl.po) by Bartosz Fenski
- Russian (ru.po) by Yuri Kozlov
- Slovenian (sl.po) by Jure Čuhalev
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Colin Watson <cjwatson@debian.org> Thu, 28 Jul 2005 10:59:46 +0100
hw-detect (1.21) unstable; urgency=low
* Updated translations:
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Hebrew (he.po) by Lior Kaplan
- Indonesian (id.po) by Arief S Fitrianto
- Japanese (ja.po) by Kenshi Muto
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Tagalog (tl.po) by Eric Pareja
- Wolof (wo.po) by Mouhamadou Mamoune Mbacke
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Fri, 15 Jul 2005 16:52:02 +0300
hw-detect (1.20) unstable; urgency=low
[ Joey Hess ]
* Remove the missing modules warning, which was confusing to users and only
useful for debugging. Missing modules are still logged, and d-i already
handles helping the user with important undeteted hardware (ethernet,
cdrom, disk).
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Catalan (ca.po) by Guillem Jover
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Basque (eu.po) by Piarres Beobide
- French (fr.po) by Christian Perrier
- Gallegan (gl.po) by Jacobo Tarrio
- Italian (it.po) by Giuseppe Sacco
- Japanese (ja.po) by Kenshi Muto
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Eddy Petrişor
- Slovak (sk.po) by Peter Mann
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Joey Hess <joeyh@debian.org> Thu, 30 Jun 2005 17:09:55 -0400
hw-detect (1.19) unstable; urgency=low
* Colin Watson
- Don't install pcmcia-cs if hw-detect/start_pcmcia=false; at least on
2.6 kernels, the /sys nodes can end up being present even if PCMCIA
hasn't been started (Ubuntu bug #8678).
- Fix DEB_HOST_ARCH_* compatibility code to handle the various special
cases.
* Joey Hess
- Rename hw-detect-full to disk-detect.
- Add a disk-detect command, which uses hw-detect to load any additional
drivers, as hw-detect-full did, but which also checks to see if any
disks were found, and if none are, allows the user to select driver
modules from a list, or load more from a floppy. Closes: #283193
- disk-detect will use partman's parted_devices command if available to
see if any disks are found. Otherwise it falls back to a devfs find
similar to that used by partitioner and autopartkit. This is probably
good enough, but partman could be extended for network filesystems or
something else and disk-detect's check would not know about it.
- Move retry_params template to hw-detect so disk-detect can use it too.
hw-detect might also use it in the future. Same with load_floppy
template.
- Remove ethdetect/modprobe_error template, as it's identical to
hw-detect/modprobe_error. Use the latter in ethdetect.
- Direct some modprobe output to /var/log/messages in ethdetect as is done
in hw-detect.
- Add a cleanup function to ethdetect.
- Rename the source package as it's going through NEW anyway.
* Updated translations:
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Portuguese (pt.po) by Miguel Figueiredo
- Romanian (ro.po) by Eddy Petrişor
-- Joey Hess <joeyh@debian.org> Fri, 17 Jun 2005 23:06:58 -0400
ddetect (1.18) unstable; urgency=low
* Joey Hess
- archdetect postinst removed
- debian-installer/kernel/subarchitecture is no longer supported,
just run archdetect instead.
- remove archdetect-deb binary and source as it and archdetect are now
identical
* Colin Watson
- Use DEB_HOST_ARCH_* variables if available so that we work correctly
with dpkg 1.13.
- hw-detect and ethdetect are entirely Linux-specific, so make them do
nothing on the Hurd for now.
- Make discover | hotplug-udeb dependency Linux-specific.
- No longer build-depend on libdebconfclient0-dev, due to archdetect
change.
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Basque (eu.po)
- Hebrew (he.po) by Lior Kaplan
- Italian (it.po) by Giuseppe Sacco
- Dutch (nl.po) by Bart Cornelis
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Albanian (sq.po) by Elian Myftiu
- Turkish (tr.po) by Recai Oktaş
-- Colin Watson <cjwatson@debian.org> Mon, 30 May 2005 01:08:39 +0100
ddetect (1.17) unstable; urgency=low
* Joey Hess
- Set hw-detect-full priority to optional to match overrides.
* Colin Watson
- Tolerate failure of sysfs-update-devnames in ethdetect, to cope with
old initrds (closes: #308340).
* Updated translations:
- Greek, Modern (1453-) (el.po) by Kostas Papadimas
- Portuguese (Brazil) (pt_BR.po) by Carlos Eduardo Pedroza Santiviago
-- Colin Watson <cjwatson@debian.org> Mon, 9 May 2005 22:15:14 +0100
ddetect (1.16) unstable; urgency=low
* Colin Watson
- If udev is available, call udevstart at the end of hardware detection
to make sure that device nodes are created synchronously.
- Don't break if no modules need to be loaded.
- Add integration with hotplug:
+ Re-run hotplug rc scripts during hardware detection.
+ Hook into net events so that we can record them for netcfg.
Requires lspci in udeb form, which isn't yet available (#284110).
* Joey Hess
- Allow module parameters to be preseeded on a per-module basis, using
hw-detect/module_params/$module as the question name.
- Turn seen flag setting back on after trying to ask the pcmcia start
question, now that #257180 is fixed. Add a dependency on the version of
cdebconf that fixed it. Closes: #280025
- Revert change to force load sunhme, sunbmac, and esp, since a discover1
patch exists (thought not yet applied), and the change caused nasty
error messages during the install.
* Updated translations:
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Japanese (ja.po) by Kenshi Muto
-- Joey Hess <joeyh@debian.org> Sat, 7 May 2005 20:16:28 -0400
ddetect (1.15) unstable; urgency=low
* Joey Hess
- Force register and load sunhme, sunbmac, and esp on sparc since
apparently discover does not find these on at least an E4500.
This is kind of a work around for #299074, and will be reverted once
discover is fixed.
- Detect if only one ethernet interface is found, and if it's a firewire
interface, warn the user and allow them to manually select modules to
load. This after noticing that 2.6 installs that fail to load the
ethernet driver fail unexpectedly when the firewire ethernet ends up
being used. Closes: #303445
- Add a few missing 2.6 ethernet drivers to devnames.txt.
* Colin Watson
- Register apm_emu on systems with via-pmu mac-io devices.
* Frans Pop
- Schedule acpi packages for installation if system has acpi support.
Works only for 2.6 kernels. Closes: #300545
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Catalan (ca.po) by Guillem Jover
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Dennis Stampfer
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Spanish (es.po) by Javier Fernandez-Sanguino Peña
- French (fr.po) by Christian Perrier
- Gallegan (gl.po) by Jacobo Tarrio
- Hebrew (he.po) by Lior Kaplan
- Italian (it.po) by Stefano Canepa
- Korean (ko.po) by Changwoo Ryu
- Dutch (nl.po) by Bart Cornelis
- 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 Yuri Kozlov
- Slovak (sk.po) by Peter KLFMANiK Mann
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Sun, 1 May 2005 16:51:56 -0400
ddetect (1.14) unstable; urgency=low
* Kurt Roeckx
- Also do the register-module psmouse for amd64.
* Note that this includes some sustitution fixes in translated templates.
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Welsh (cy.po) by Dafydd Harries
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Gallegan (gl.po) by Hctor Fenndez Lpez
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Portuguese (pt.po) by Miguel Figueiredo
- Russian (ru.po) by Dmitry Beloglazov
-- Joey Hess <joeyh@debian.org> Wed, 2 Feb 2005 17:13:59 -0500
ddetect (1.13) unstable; urgency=low
* Bdale Garbee
- force loading of some hppa nic and scsi modules that discover doesn't
know about in hw-detect.sh, so modular (2.6) kernels work better
-- Bdale Garbee <bdale@gag.com> Fri, 14 Jan 2005 16:53:47 -0700
ddetect (1.12) unstable; urgency=low
* Joey Hess
- Load ide-core explicitly rather than implicitly to allow the user to
specify parameters such as hda=stroke when the module is loaded.
- Add ide-disk to /etc/modules on systems with ide. I'm not yet sure
what situation calls for this as it's normally autoloaded. Maybe
something to do with lvm? See bug #289377.
- Moved register-module psmouse calls to here from rootskel.
Currently done for some powerpc subarches, ia64, and also now for i386,
since some races have been reported on i386 with the module being loaded
on demand as X starts.
* Sven Luther
- Added detection code for NuBus powermacs.
* Updated translations:
- Romanian (ro.po) by Eddy Petrisor
-- Joey Hess <joeyh@debian.org> Mon, 10 Jan 2005 15:56:59 -0500
ddetect (1.11) unstable; urgency=low
* Colin Watson
- Portable shell fix in hotplug-pcmcia.
* Joey Hess
- Work around de4x5 / tulip problem by using tulip if de4x5 is not
available, and blacklisting de4x5. So we can control which is used
on a per-arch or kernel basis by including the right one on the
initrd.
- If above hack causes tulip to be used for the first stage, call
register-modules to make it be used on the installed system.
Closes: #282814
- On hppa 2.4 this doesn't happen, since tulip is built in.
In that case, de4x5 will still be blacklisted so the hang will be
avoided. Closes: #283754
* Updated translations:
- Catalan (ca.po) by Jordi Mallach
- Czech (cs.po) by Miroslav Kure
- Finnish (fi.po) by Tapio Lehtonen
- Italian (it.po) by Giuseppe Sacco
- Dutch (nl.po) by Bart Cornelis
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Russian L10N Team
- Slovenian (sl.po) by Jure Čuhalev
- Albanian (sq.po) by Elian Myftiu
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Wed, 1 Dec 2004 16:14:06 -0500
ddetect (1.10) unstable; urgency=low
* Colin Watson
- Run discover-mac-io before discover, since that matches the ordering
post-reboot.
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- French (fr.po) by French Team
-- Colin Watson <cjwatson@debian.org> Mon, 18 Oct 2004 19:41:06 +0100
ddetect (1.09) unstable; urgency=low
* Joey Hess
- Disable the archdetect-deb as I don't want to try to get it through NEW
and I need to upload for other reasons.
-- Joey Hess <joeyh@debian.org> Wed, 6 Oct 2004 15:07:47 -0400
ddetect (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:27:12 -0400
ddetect (1.07) unstable; urgency=low
* Colin Watson
- Look through all of /proc/device-tree/, not just the mac-io bus.
Slower but apparently necessary for at least the therm_* fan
controllers, which are on uni-n here.
* Joshua Kwan
- Fix C99isms from arch-specific archdetects to eliminate build
failures (don't know why they were not caught before):
. archdetect-arm-linux.c
. archdetect-m68k-linux.c
- There was only an isblank warning in here (build succeeded, but
best to fix nonetheless):
. archdetect-powerpc-linux.c
* Updated translations:
- Czech (cs.po) by Miroslav Kure
- Greek (el.po) by Greek Translation Team
- Hebrew (he.po) by Lior Kaplan
- Indonesian (id.po) by Debian Indonesia Team
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by Kęstutis Biliūnasn
- Latvian (lv.po) by Aigars Mahinovs
- Norwegian (nb.po) by Bjorn Steensrud
- Dutch (nl.po) by Bart Cornelis
- Norwegian (nn.po) by Håvard Korsvoll
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Russian L10N Team
- Slovenian (sl.po) by Jure Čuhalev
- Albanian (sq.po) by Elian Myftiu
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joshua Kwan <joshk@triplehelix.org> Sun, 3 Oct 2004 15:49:38 -0700
ddetect (1.06) unstable; urgency=low
* Colin Watson
- Add the ability to back up from the error messages you get if
ethdetect can't find any network interfaces. We could probably do with
a state machine of some kind here.
- mac-io bus detection improvements:
+ Detect mesh SCSI controller (closes: #269655, #271419).
+ Detect mace Ethernet controller.
+ Detect mac53c94 SCSI controller.
+ Detect therm_adt746x and therm_windtunnel fan controllers, although
only post-reboot for now since those modules aren't in
linux-kernel-di-powerpc-*.
+ Cope with /proc/device-tree/aliases/mac-io pointing to a symlink.
* Bastian Blank
- Add archdetect-deb package.
* Joey Hess
- Temporarily disable archdetect-deb for this upload, don't want to wait
for NEW processing for a deb.
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- 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
- Hebrew (he.po) by Lior Kaplan
- Lithuanian (lt.po) by Kęstutis Biliūnasn
- Bøkmal, Norwegian (nb.po) by Axel Bojer
- Polish (pl.po) by Bartosz Fenski
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Russian (ru.po) by Russian L10N Team
- Slovenian (sl.po) by Jure Čuhalev
- Swedish (sv.po) by Per Olofsson
-- Joey Hess <joeyh@debian.org> Mon, 27 Sep 2004 17:02:47 -0400
ddetect (1.05) unstable; urgency=low
* Joey Hess
- Add usb nic modules to the manual module list. Closes: #262638, #267402
- Hack to make this work for 2.4 which does not have a usb/nic subdir.
- In ethdetect, don't prompt twice for module params in a low priority
install.
* 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
- 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 17:15:48 -0400
ddetect (1.04) unstable; urgency=low
* Joey Hess
- Work around kernel bug #269823 by not loading the hpt366 module
automatically.
-- Joey Hess <joeyh@debian.org> Fri, 3 Sep 2004 15:06:55 -0400
ddetect (1.03) unstable; urgency=low
* Martin Michlmayr
- Upstream changed how the SGI O2 (IP 32) is reported in /proc/cpuinfo.
Deal with the old and the new value.
* Joey Hess
- Remove seen flag unsetting code, not necessary for a long time in the
d-i environment.
* Colin Watson
- Make hw-detect Architecture: any so that we don't have to have
discover-mac-io on non-powerpc architectures.
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Bulgarian (bg.po) by Ognyan Kulev
- Bosnian (bs.po) by Safir Šećerović
- Welsh (cy.po) by Dafydd Harries
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Basque (eu.po) by Piarres Beobide Egaña
- French (fr.po) by French Team
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- Latvian (lv.po) by Aigars Mahinovs
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Russian (ru.po) by Yuri Kozlov
-- Colin Watson <cjwatson@debian.org> Thu, 2 Sep 2004 14:40:18 +0100
ddetect (1.02) unstable; urgency=low
* Colin Watson
- Don't bother trying to load psmouse in d-i; just register it for use
after the first reboot.
- Move mac-io hardware detection out to a separate file, only installed
on powerpc.
- Detect dmasound_pmac/snd-powermac (depending on kernel version) on
PowerMacs.
* Joshua Kwan
- Add USB stuff to devnames.txt.
- Don't try to load sbp2 unless we also have scsi_mod lying around.
* Updated translations:
- Catalan (ca.po) by Jordi Mallach
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- French (fr.po) by French Team
- Japanese (ja.po) by Kenshi Muto
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Bøkmal, Norwegian (nb.po) by
- Polish (pl.po) by Bartosz Fenski
- Turkish (tr.po) by Recai Oktaş
-- Colin Watson <cjwatson@debian.org> Thu, 26 Aug 2004 19:47:35 +0100
ddetect (1.01) unstable; urgency=medium
* Joshua Kwan
- Add more entries to devnames.txt.
- grep for ^${module}: to prevent e1000's description matching for
e100. (Closes: #262626, #266328)
- 'hardware architecture', not 'hardware architect' in control.
* Sven Luther
- Added support for loading the psmouse modules on powerpc/chrp
and prep too, since X is complaining after the reboot.
* Updated translations:
- Danish (da.po) by Claus Hindsgaul
- Basque (eu.po) by Piarres Beobide Egaña
- French (fr.po) by Christian Perrier
- Lithuanian (lt.po) by Kęstutis Biliūnasn
- Latvian (lv.po) by Aigars Mahinovs
-- Joshua Kwan <joshk@triplehelix.org> Mon, 23 Aug 2004 01:44:51 -0700
ddetect (1.00) unstable; urgency=low
* Updated translations:
- Swedish (sv.po) by Per Olofsson
-- Joey Hess <joeyh@debian.org> Sun, 25 Jul 2004 19:15:02 -0400
ddetect (0.110) unstable; urgency=low
* Joey Hess
- Have discover output ide devices, so sata modules are loaded.
Closes: #260658
-- Joey Hess <joeyh@debian.org> Sun, 25 Jul 2004 14:04:28 -0400
ddetect (0.109) unstable; urgency=low
* Colin Watson
- Detect BMAC Ethernet controllers, found on some PowerMacs. Ideally
discover would be able to walk the mac-io bus ... (closes: #260427)
- Add myself to Uploaders.
* Joey Hess
- Fix display of card names in the missing modules list.
* Updated translations:
- Arabic (ar.po) by Abdulaziz Al-Arfaj
- German (de.po) by Dennis Stampfer
- Persian (fa.po) by Arash Bijanzadeh
- Croatian (hr.po) by Krunoslav Gernhard
- Italian (it.po) by Giuseppe Sacco
-- Colin Watson <cjwatson@debian.org> Sat, 24 Jul 2004 12:58:38 +0100
ddetect (0.108) unstable; urgency=low
* Joey Hess
- Undo my incorrect yenta_socket change of 0.105.
* Updated translations:
- Bosnian (bs.po) by Safir Šećerović
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
-- Joey Hess <joeyh@debian.org> Sat, 17 Jul 2004 17:35:22 -0400
ddetect (0.107) unstable; urgency=low
* Joshua Kwan
- Add a cardname parameter to load_module eth1394 so it shows up as
Firewire ethernet.
* Joey Hess
- Don't bother with eth1394 for 2.4 kernel, it's only close to the
spec in 2.6.
- Don't register-module eth1394, hotplug takes care of it.
-- Joey Hess <joeyh@debian.org> Thu, 8 Jul 2004 20:53:30 -0400
ddetect (0.106) unstable; urgency=low
* Joey Hess
- Check to see if modules are available before loading them in all cases,
and if they're unavailable, add them to the standard missing modules
list.
-- Joey Hess <joeyh@debian.org> Thu, 8 Jul 2004 18:20:01 -0400
ddetect (0.105) unstable; urgency=low
* Sylvain Ferriol
- add plip in devnames
* Joshua Kwan
- add more devnames descriptions for powerpc
* Joey Hess
- Load yenta_socket a bit later, after the discover run, because it
looked strange to load a module before it said it was detecting
hardware. It still loads before any other modules.
- Add progress display when loading modules for firewire CD.
- Try to enable firewire ethernet support if ohci1394 is loaded.
For now it does no real detection, just loads it.
-- Joey Hess <joeyh@debian.org> Tue, 6 Jul 2004 22:13:52 -0400
ddetect (0.104) unstable; urgency=low
* Joey Hess
- sleep may not be available, so don't completly crash out if it's not.
(Of course, instead something with a race that the sleep call is working
around will probably not work right.)
-- Joey Hess <joeyh@debian.org> Thu, 1 Jul 2004 17:51:00 -0400
ddetect (0.103) unstable; urgency=low
* Sven Luther
- Added support for loading the i8042 and atkbd modules on
powerpc/chrp and prep in order to have keyboard input :).
* Joshua Kwan
- Use devnames descriptions for ethdetect.sh where possible.
Closes: #225166
- Create 'BLACKLIST' entries for stuff that shouldn't be seen in
ethdetect's module loading menu.
- Update a whole ton of descriptions.
* Joey Hess
- Don't mess with the seen flag of a question that has not yet been
displayed, that tickled a cdebconf bug (#257180) and broke pcmcia.
-- Joey Hess <joeyh@debian.org> Thu, 1 Jul 2004 15:55:42 -0400
ddetect (0.102) unstable; urgency=low
* Joshua Kwan
- Holy batman, Discover groks SBUS now! Disable the sunhme registration
hack in hw-detect.sh.
- And with that, add sbus to the list of busses probed by discover's
invocation.
- Fix Joey's template typo that caused modules to stop loading.
- Correct some trivial Makefile style things.
* Joey Hess
- Add a "no ethernet card" option in ethdetect if autodetection finds
nothing, to break out of the loop. Closes: #255247
- If a module fails to load and there were no parameters, prompt for
parameters at critical priority using a special template, and try the
load again. Closes: #242827
- Remove special case for ne, it should be handled by the above.
- Prompt about whether to prompt for module parameters, to avoid 20
useless questions on low priority installs (any better ideas?)
Closes: #239890
* Thiemo Seufer
- Expand list of SGI ip32 CPUs.
* Updated translations:
- Albanian (sq.po) by Elian Myftiu
- Bosnian (bs.po) by Safir Šećerović
- fa (fa.po) by Arash Bijanzadeh
- Polish (pl.po) by Bartosz Fenski
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Joshua Kwan <joshk@triplehelix.org> Sun, 27 Jun 2004 17:36:05 -0700
ddetect (0.101) unstable; urgency=low
* Joey Hess
- Register the airport module if it's detected so it will be available in
the installed system.
- apt-install usbutils when installing hotplug to avoid the "can't
synthesize root hub events" with 2.6 kernels.
- Change the example kernel parameters to use lower case, as they usually.
do. Unfuzzy all translations. Closes: #253683
* Thiemo Seufer
- Add detection for more mips/mipsel systems.
-- Joey Hess <joeyh@debian.org> Thu, 10 Jun 2004 23:32:40 -0400
ddetect (0.100) unstable; urgency=low
* Per Olofsson
- On 2.6 kernels, load yenta_socket before the regular PCI detection
if the hardware is available so that Cardbus cards will be found.
- Log something less confusing on pcmcia_socket hotplug events.
* Colin Watson
- Don't try to load floppy or ide-floppy on NewWorld PowerMacs. Most
(all?) newworld systems don't have floppy drives, and loading the
module apparently hangs G5s (closes: #251089).
* Joshua Kwan
- Since Discover doesn't grok SBUS yet, load sunhme in the manual
module loading section because most sparc32 machines have either
lance (built-in) or HME network connections.
- To this effect, add a simple archdetect-sparc-linux.c. It will
certainly have use later.
* Joey Hess and Christian Perrier
- Add support for firewire CDs, including scsi bus rescanning for 2.4
kernels. Closes: #246790, #248011, #233497, #234208
- Have discover load bridge support so it will find ieee1394 bridges.
* Christian Perrier
- Add myself to uploaders
-- Christian Perrier <bubulle@debian.org> Sun, 30 May 2004 14:09:07 -0300
ddetect (0.99) unstable; urgency=low
* Per Olofsson
- When generating PCMCIA network card device names, also put them in
/etc/network/devhotplug.
- Check /sys for Cardbus cards on 2.6 kernels and add them to
devhotplug.
* Joey Hess
- register-module ide-generic for 2.6 kernels. Fixes ide-cds on
scsi systems with 2.6 kernels. Closes: #251050
-- Petter Reinholdtsen <pere@debian.org> Wed, 26 May 2004 17:09:35 -0300
ddetect (0.98) unstable; urgency=low
* Per Olofsson
- Only ask whether PCMCIA should be started once. Closes: #250285.
- Install /etc/pcmcia/config.opts using prebaseconfig.
- Queue Cardbus modules if they are not available, so that we can still
catch their hotplug events and add them to /etc/network/devhotplug.
* Updated translations:
- Greek, Modern (1453-) (el.po) by George Papamichelakis
- Basque (eu.po) by Piarres Beobide Egaña
- Albanian (sq.po) by Elian Myftiu
-- Per Olofsson <pelle@dsv.su.se> Mon, 24 May 2004 21:58:05 +0200
ddetect (0.97) unstable; urgency=low
* Per Olofsson
- Added question about PCMCIA resource range options.
* Joshua Kwan
- Refine our PCMCIA heuristic on 2.6 by checking for the existence of
any directories in /sys/class/pcmcia_socket. Thanks Russell King
<rmk+pcmcia@arm.linux.org.uk>.
- Try hard to only apt-install pcmcia-cs and generate PCMCIA devnames
once.
* Bastian Blank
- hw-detect-full enhanced hw-detect.
* Joey Hess
- Ignore errors loading the ide-cd module, which can happen
on at least sun hardware if the system has no IDE CD drive.
Closes: #250324
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Catalan (ca.po) by Jordi Mallach
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Alwin Meschede
- Spanish (es.po) by Javier Fernández-Sanguino
- Basque (eu.po) by Piarres Beobide Egaña
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by Christian Perrier
- Gallegan (gl.po) by Héctor Fernández López
- Hungarian (hu.po) by VERÓK István
- Indonesian (id.po) by Parlin Imanuel Toh
- Italian (it.po) by Giuseppe Sacco
- Japanese (ja.po) by Kenshi Muto
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Norwegian (nb.po) by Knut Yrvin
- 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
- Slovenian (sl.po) by Jure Čuhalev
- Turkish (tr.po) by Osman Yüksel
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joshua Kwan <joshk@triplehelix.org> Mon, 24 May 2004 08:05:21 -0700
ddetect (0.96) unstable; urgency=low
* Joey Hess
- Change the wording of the question before starting pcmcia;
no detection of pcmcia is done before asking this question because the
most reliable way to detect pcmcia is to try to start it (discover's
pcmcia bridge detection may not work in all cases). Closes: #249420
* Joshua Kwan
- It turns out our PCMCIA detection heuristics really suck, so do
not assume that /var/run/stab automatically exists if cardmgr has been
started, otherwise hw-detect will error out. Do a -f check to work
around it for now.
- Change IFS to " " for netdev parsing state, restore it later.
Fixes cases where one would see 'eth0 eth1: Device name', thanks
Cit <debian@loathe.ms>.
* Updated translations:
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Alwin Meschede
- Spanish (es.po) by Javier Fernández-Sanguino
- Basque (eu.po) by Piarres Beobide Egaña
- French (fr.po) by Christian Perrier
- 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
- Dutch (nl.po) by Bart Cornelis
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Russian (ru.po) by Nikolai Prokoschenko
- Slovak (sk.po) by Peter KLFMANiK Mann
- Turkish (tr.po) by Osman Yüksel
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joshua Kwan <joshk@triplehelix.org> Tue, 18 May 2004 10:16:13 -0700
ddetect (0.95) unstable; urgency=low
* Colin Watson
- Bump priorities of hw-detect and hw-detect-full to standard, in line
with the override file.
* Joey Hess
- Follow cdrom-detect's lead by making ethdetect ask for a driver
floppy if the network card detection fails and no module was
selected from the manual list. The previous method didn't work
since many media lack a menu item to load floppies. Closes: #247941
- BTW, think "firmware floppy". :-(
- Always autodetect network hardware. The question about whether to do
this was asked as low priority; hw-detect is safe and always asks at low
priority before loading modules, so the question was redundant.
Closes: #219890
* Joshua Kwan
- Devnames for PCMCIA devices, as given by their built in names, using
the information from /var/run/stab. Woohoo!
* Christian Perrier
- s/ethernet/Ethernet in new templates
- Ellipsis typography fixed
-- Joey Hess <joeyh@debian.org> Fri, 14 May 2004 12:20:30 -0300
ddetect (0.94) unstable; urgency=low
* Joey Hess
- Find unavailable modules before calculating the size of the progress
bar and stop displaying progress messages about skipping such modules.
Closes: #241467
- Made checking for already loaded modules O(n) instead of previous
O(n^2).
- Other speedups.
- Never display "[Unknown]" as a module name in the selection list.
- The airport test is good enough to not belong in get_manual_hw_info.
- Ask the start_pcmcia qestion.
- Mark the start_pcmcia question as translatable.
- Only ask the question if pcmcia is not running (uses its pid file).
- Restart cardmgr if it's already running to make sure it uses any modules
that were not available before. Closes: #234564
- Redirect fd 3 from /dev/null when starting pcmcia to avoid debconf fd
hang issues.
* Christian Perrier
- Removed the double questioning in the pcmcia_start template
Reworded the template for simplification
* Kenshi Muto
- Check module name includes '_' also by replacing '-' for Linux 2.6.
Closes: #247249
* Stephen R. Marenka
- Add support for q40 and sun3(x) m68k subarchs.
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Alwin Meschede
- Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
- Basque (eu.po) by Piarres Beobide Egaña
- French (fr.po) by Christian Perrier
- Hebrew (he.po) by Lior Kaplan
- Hungarian (hu.po) by VERÓK István
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Dutch (nl.po) by Bart Cornelis
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- 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
- 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
-- Joey Hess <joeyh@debian.org> Wed, 5 May 2004 00:01:13 -0400
ddetect (0.93) unstable; urgency=low
* Joey Hess
- There is no reason to hardcode the path to discover. Especially not
when you hardcode the wrong path. Especially not when it breaks with
discover 2 on 2.6 kernels.
-- Joey Hess <joeyh@debian.org> Tue, 27 Apr 2004 20:39:29 -0400
ddetect (0.92) unstable; urgency=low
* Joey Hess
- Add || true after calls to discover --version, makes it work on 2.6
kernel again.
-- Joey Hess <joeyh@debian.org> Tue, 27 Apr 2004 19:57:12 -0400
ddetect (0.91) unstable; urgency=low
* Joey Hess
- Complete the discover transition by apt-installing discover1, which is
now in testing.
-- Joey Hess <joeyh@debian.org> Sat, 24 Apr 2004 12:05:28 -0400
ddetect (0.90) unstable; urgency=low
* Petter Reinholdtsen
- Stop hw-detect from failing if /etc/network/ is
missing. (Closes: #245535)
- Log when pcmcia and hotplut support is detected.
- Rewrite the code detecting which version of discover to use, and
make it easier to change which package to install in /target/
based on this.
-- Petter Reinholdtsen <pere@debian.org> Sat, 24 Apr 2004 11:47:42 +0200
ddetect (0.89) unstable; urgency=low
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Bokmal, Norwegian (nb.po) by Bjørn Steensrud
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Albanian (sq.po) by Elian Myftiu
-- Joey Hess <joeyh@debian.org> Fri, 23 Apr 2004 13:03:38 -0400
ddetect (0.88) unstable; urgency=low
* Joey Hess
- In ethdetect, always register-module manually selected modules.
* Updated translations:
- Bokmal, Norwegian (nb.po) by Bjørn Steensrud
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
-- Joey Hess <joeyh@debian.org> Wed, 21 Apr 2004 23:35:31 -0400
ddetect (0.87) unstable; urgency=low
* Joey Hess
- Add a new template, hw-detect/start_pcmcia, as a kind of workaround for
systems where starting pcmcia hangs the system (Dell inspirons..).
Due to the string freeze, this question is not translated or displayed
to the user yet, but it can be overridden at boot time.
-- Joey Hess <joeyh@debian.org> Mon, 19 Apr 2004 20:23:26 -0400
ddetect (0.86) unstable; urgency=low
* Colin Watson
- Better error checking and quoting around airport detection.
* Updated translations:
- German (de.po) by Alwin Meschede
- Finnish (fi.po) by Tapio Lehtonen
- Hebrew (he.po) by Lior Kaplan
- Indonesian (id.po) by Parlin Imanuel Toh
- Norwegian (nn.po) by Håvard Korsvoll
-- Colin Watson <cjwatson@debian.org> Mon, 19 Apr 2004 15:13:26 +0100
ddetect (0.85) unstable; urgency=low
* Sven Luther
- Don't always load the airport module on powerpc, but do the real thing,
and check if it is available or not (Closes: #221533).
* Martin Michlmayr
- Don't show missing modules twice (Closes: #244145).
* Colin Watson
- Add support for IBM iSeries logical partitions as powerpc/iseries
(thanks, Karl Kappel; closes: #239794).
-- Martin Michlmayr <tbm@cyrius.com> Sat, 17 Apr 2004 00:55:40 +0100
ddetect (0.84) unstable; urgency=low
* Per Olofsson
- List PCMCIA network interfaces in /etc/network/devhotplug and load
modules for Cardbus cards in a temporary hotplug agent.
* Martin Michlmayr
- Detect Cobalt machines running new kernels (which identify the
exact machine in /proc/cpuinfo rather than just "MIPS Cobalt").
* Joey Hess
- Try ide-generic, for 2.6 kernels.
- Don't display loading message on progress bar for skipped modules.
* Updated translations:
- Basque (eu.po) by Piarres Beobide Egaña
- Gallegan (gl.po) by Héctor Fernández López
- Hebrew (he.po) by Lior Kaplan
- Indonesian (id.po) by Parlin Imanuel Toh
- Italian (it.po) by Davide Viti
- Dutch (nl.po) by Bart Cornelis
- Polish (pl.po) by Bartosz Fenski
- 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, 13 Apr 2004 16:53:03 -0400
ddetect (0.83) unstable; urgency=low
* Martin Michlmayr
- Added support for MIPS based Cobalt machines as mipsel/cobalt.
* Joey Hess
- Remove the hw-detect/detect_progress_title template, it should no
longer be used as everything is switched to custom titles, and this
regains some space. As a fallback just in case, use
hw-detect/load_progress_step.
* Updated translations:
- Catalan (ca.po) by Jordi Mallach
-- Joey Hess <joeyh@debian.org> Sun, 4 Apr 2004 16:02:37 -0400
ddetect (0.82) unstable; urgency=low
* On powerpc, always try to load the airport driver, which discover cannot
detect. Closes: #221533
* Updated translations:
- 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
- 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
- Russian (ru.po) by Nikolai Prokoschenko
- Slovak (sk.po) by Peter KLFMANiK Mann
- Slovenian (sl.po) by Jure Ä?uhalev
- Swedish (sv.po) by André Dahlqvist
- Turkish (tr.po) by Osman Yüksel
- 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 00:33:24 -0500
ddetect (0.81) unstable; urgency=low
* Joey Hess
- Remove manual title setting.
- hw-detect can now be called with a parameter that is the name of a
debconf template. If it is, it will use that template as the title
for the progress bar. This allows for cusomised progress bars
during the different hardware detection steps. Of course, it's kinda a
gyp because hw-detect still loads all the modules it can in each pass.
- ethdetect passes a custom title, as does hw-detect-full (so do
cdrom-detect and iso-scan). Closes: #239429, #231105
* Updated translations:
- 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
- Hungarian (hu.po) by VERÓK István
- Indonesian (id.po) by Parlin Imanuel Toh
- Japanese (ja.po) by Kenshi Muto
- Polish (pl.po) by Bartosz Fenski
- Portuguese (pt.po) by Miguel Figueiredo
- Russian (ru.po) by Nikolai Prokoschenko
- Slovak (sk.po) by Peter KLFMANiK Mann
- Swedish (sv.po) by André Dahlqvist
- Turkish (tr.po) by Osman Yüksel
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
- Albanian (sq.po) by Elian Myftiu
-- Joey Hess <joeyh@debian.org> Fri, 2 Apr 2004 00:48:06 -0500
ddetect (0.80) unstable; urgency=low
* Updated translations:
- Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
- Indonesian (id.po) by Parlin Imanuel Toh
- Korean (ko.po) by Changwoo Ryu
- 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
- Turkish (tr.po) by Osman Yüksel
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Tue, 30 Mar 2004 14:48:48 -0500
ddetect (0.79) unstable; urgency=low
* Joey Hess
- Reworded the missing modules warning to try to make it less confusing to
users who think we don't have the modules at *all*, when in fact they've
just not been retreived yet.
- Depend on discover, which will be provided by discover-udeb or
discover1-udeb.
* Vincent Sanders
- added ARM machine detection
* Updated translations:
- Catalan (ca.po) by Jordi Mallach
- Danish (da.po) by Claus Hindsgaul
- French (fr.po) by Christian Perrier
- Hungarian (hu.po) by VER�K István
- Italian (it.po) by Davide Viti
- Japanese (ja.po) by Kenshi Muto
- Lithuanian (lt.po) by KÄ?stutis BiliÅ«nas
- Dutch (nl.po) by Bart Cornelis
- Portuguese (pt.po) by Miguel Figueiredo
- Portuguese (Brazil) (pt_BR.po) by André LuÃs Lopes
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Albanian (sq.po) by Elian Myftiu
-- Joey Hess <joeyh@debian.org> Wed, 24 Mar 2004 18:00:31 -0500
ddetect (0.78) unstable; urgency=low
* Bastian Blank
- hw-detect-full provides harddrive-detection.
- Change priority of hw-detect(-full) to optional.
* Joshua Kwan
- hw-detect should check for kernel hotplug support before apt-installing
it
* Joey Hess
- Clean hw-detect/select_modules's seen flag, to make sure it is always
displayed after the first hw-detect run. Closes: #239172
* Updated translations:
- French (fr.po) by Denis Barbier
-- Joey Hess <joeyh@debian.org> Tue, 23 Mar 2004 11:34:37 -0500
ddetect (0.77) unstable; urgency=low
* Martin Michlmayr
- Added support for the Broadcom MIPS development board "SWARM"
(BCM91250A) as mips/sb1-swarm-bn and mipsel/sb1-swarm-bn.
* Joey Hess
- Add a progress bar entry when starting pcmcia.
- Look for /proc/bus/pccard/drivers before apt-installing pcmcia-cs;
/proc/bus/pccard may exist on systems w/o pcmcia support.
* Updated translations:
- 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 Fernández-Sanguino
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by Christian Perrier
- Hungarian (hu.po) by VER�K István
- Japanese (ja.po) by Kenshi Muto
- Lithuanian (lt.po) by KÄ?stutis BiliÅ«nas
- Dutch (nl.po) by Bart Cornelis
- Norwegian Nynorsk (nn.po) by HÃ¥vard Korsvoll
- Polish (pl.po) by Bartosz Fenski
- Portuguese (pt.po) by Miguel Figueiredo
- Portuguese (Brazil) (pt_BR.po) by André LuÃs Lopes
- Slovak (sk.po) by Peter KLFMANiK Mann
- 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> Sat, 20 Mar 2004 13:14:07 -0500
ddetect (0.76) unstable; urgency=low
* Joshua Kwan
- Save a few calls to uname by pre-setting a $MODPATH variable.
- Fix case where a module would initialize more than one network
device. (ie, two identical tulips in the same box)
- Some static device name polishing.
* Translations:
- Davide Viti
- Updated italian translation (it.po)
corrected a typo and got rid of the fuzzy entries.
-- Joshua Kwan <joshk@triplehelix.org> Mon, 15 Mar 2004 17:02:57 -0800
ddetect (0.75) unstable; urgency=low
* Translations:
- Giuseppe Sacco
- Just corrected two typos in the italian translation (it.po)
and notified the translator.
-- Petter Reinholdtsen <pere@debian.org> Sun, 14 Mar 2004 19:02:18 +0100
ddetect (0.74) unstable; urgency=low
* Joey Hess
- Don't display the modprobe error message if a floppy or ide-floppy
module fails to load. At least one time it fails is when there is no
floppy.. This should perhaps be done for all get_manual_hw_info
modules, but I went for the quick hack.
* sylvain ferriol
- Run depmod -a in ethdetect, in case the user chooses not to run
hw-detect.
-- Joey Hess <joeyh@debian.org> Wed, 10 Mar 2004 21:17:59 -0500
ddetect (0.73) unstable; urgency=low
* Joey Hess
- Remove the largely duplicate ethdetect/module_params template.
Instead, ethdetect uses hw-detect's template.
* Translations:
- Giuseppe Sacco
- Updated italian translation by Davide Viti (it.po)
- Ognyan Kulev
- Updated Bulgarian translation (bg.po).
- Dafydd Harries : Added Welsh translation (cy.po)
-- Joey Hess <joeyh@debian.org> Tue, 9 Mar 2004 13:45:24 -0500
ddetect (0.72) unstable; urgency=low
* Matt Kraai
- Make snapshot_devs in ethdetect print the device list to stdout
instead of returning it as the exit status.
- Add self to Uploaders.
-- Matt Kraai <kraai@debian.org> Thu, 04 Mar 2004 03:54:08 -0800
ddetect (0.71) unstable; urgency=low
* Joshua Kwan
- Make sure cardmgr is started with -f so it doesn't fork until it's
finished loading all it thinks it needs to load. This allows netcfg
to see all of the possible ethernet devices the first time it runs.
-- Joshua Kwan <joshk@triplehelix.org> Tue, 2 Mar 2004 22:06:34 -0800
ddetect (0.70) unstable; urgency=low
* Translations:
- Håvard Korsvoll
- Updated Norwegian, bokmål translation, (nb.po). From Axel Bojer
-- Joey Hess <joeyh@debian.org> Tue, 2 Mar 2004 13:19:45 -0500
ddetect (0.69) unstable; urgency=low
* Joshua Kwan:
- Provide interface->driver description bindings for netcfg.
* Joey Hess
- Simplify hw-detect, removing the load_modules and get_modinfo function,
and passing card name to the load_module function.
* Translations:
- Bartosz Fenski
- Updated Polish translation (pl.po)
- Ming Hua
- Initial Traditional Chinese translation (zh_TW.po), by Tetralet
- Updated Traditional Chinese translation (zh_TW.po), by Tetralet
- Eugeniy Meshcheryakov
- Updated Ukrainian translation (uk.po)
- Jure Cuhalev
- Updated Slovenian translation (sl.po)
-- Joshua Kwan <joshk@triplehelix.org> Thu, 26 Feb 2004 21:34:14 -0800
ddetect (0.68) unstable; urgency=low
* Joey Hess
- Update to debhelper v4, and use its udeb support.
- Remove empty and apparently unused prebaseconfig script from ethdetect.
- Check to see if each module is already loaded before loading it.
Some earlier loaded module may have pulled it in, and that would cause
a failure when it's re-loaded. Happens with ide-disk and hpt366.
- Make missing_modules a note, not an error, since it is not really an
error (I suppose), and since we don't want it shown during high
priority installs.
* Thiemo Seufer
- Cleanup match pattern for sd_mod, sr_mod in hw-detect.sh.
* Sylvain Ferriol
- Add a case statement in ethdetect for special case modules like ne
and plip, and register separate questions for each.
* Translations:
- Kenshi Muto
- Update Japanese translation (ja.po)
- KÄ?stutis BiliÅ«nas
- Updated Lithuanian translation (lt.po)
- Changwoo Ryu
- Added Korean translation (ko.po)
- Håvard Korsvoll
- Updated Norwegian, nynorsk (nn.po) translation.
-- Joey Hess <joeyh@debian.org> Fri, 13 Feb 2004 13:46:31 -0500
ddetect (0.67) unstable; urgency=low
* Joey Hess
- Avoid an infinite loop in ethdetect if there are no ethernet drivers
available at all.
* Matt Kraai
- Always ask for module parameters when loading the ne module (closes:
#220971).
* Translations
- Andre Dahlqvist
- Update Swedish translation (sv.po)
* Eugen Meshcheryakov : added Ukrainian translation (uk.po)
-- Joey Hess <joeyh@debian.org> Sun, 8 Feb 2004 19:11:54 -0500
ddetect (0.66) unstable; urgency=low
* Christian Perrier
- Switch one template in ethdetect to error type
* Translations
- Bartosz Fenski
- Updated Polish (pl) translation.
- Giuseppe Sacco
- applied patch for normalizing menus and some italian translation (it.po)
- Kenshi Muto
- Updated Japanese translation (ja.po)
- Miguel Figueiredo
- Updated Portuguese translation (pt.po)
- André LuÃs Lopes
- Updated Brazilian Portuguese (pt_BR) translation.
- h3li0s
- Added Albanian translation (sq.po)
- Jordi Mallach
- Update Catalan translation (ca.po).
- KÄ?stutis BiliÅ«nas
- Update Lithuanian translation (lt.po).
- Alwin Meschede
- Updated German translation (de.po)
- Safir Å eÄ?eroviÄ?
- Update Bosnian translation (bs.po).
- Christian Perrier
- Updated French (fr) translation.
- Bart Cornelis
- Updated Dutch (nl.po) translation
-- Joey Hess <joeyh@debian.org> Thu, 5 Feb 2004 14:50:56 -0500
ddetect (0.65) unstable; urgency=low
* Petter Reinholdtsen
- Move install request for hotplut into hw-detect, next to
the install request for discover.
* Joey Hess
- Continue after manual module loading w/o displaying
ethdetect/cannot_find. Thanks, Sylvain Ferriol.
- Make hw-detect list the modules it plans to load at medium priority,
so the user can opt not to load known-problimatic modules.
* Christian Perrier
- Removed "Choose the modules to load" by "Modules to load"
for consistency with other d-i modules prompting
- s/linux/Linux in templates
* Translators:
- Peter Mann: Update Slovak translation
- Carlos Z.F. Liu
- fix some serious errors in Simplified Chinese translation.
- Claus Hindsgaul
- Update da (Danish) translation.
- Konstantinos Margaritis
- Update Greek translation
- Miroslav Kure
- Update Czech translation (cs.po)
-- Joey Hess <joeyh@debian.org> Sat, 31 Jan 2004 15:33:40 -0500
ddetect (0.64) unstable; urgency=low
* Matt Kraai
- Ignore the exit status of apt-install (closes: #228984).
* Konstantinos Margaritis
- Fixed some typos and made some strings smaller in el.po
-- Joey Hess <joeyh@debian.org> Thu, 22 Jan 2004 19:53:12 -0500
ddetect (0.63) unstable; urgency=low
* Anmar Oueja
- created and translated to Arabic (ar.po)
* Nikolai Prokoschenko
- updated russian translation (ru.po)
* Kenshi Muto
- Install hotplug (for USB, IEEE1394, CardBus, and some SCSI) at
hw-detect-full.postinst.
* Christian Perrier
- fuzzied two german translations which were obviously outdated.
Thanks Erich Waelde for noticing this
* Alwin Meschede
- fixed German translation (de.po)
* Stephen R. Marenka
- Initial m68k support.
* Joey Hess
- In the degenerate case where there are no ethernet driver modules,
do not prompt with an empty list.
- Fix order of ethernet driver list (thanks, Sylvain Ferriol).
* Andre Dahlqvist
- Update Swedish translation (sv.po)
* Safir Secerovic
- Update Bosnian translation (bs.po).
* Bastian Blank
- Add postinst script for archdetect.
* Not for beta 2.
-- Joey Hess <joeyh@debian.org> Wed, 21 Jan 2004 14:29:54 -0500
ddetect (0.62) unstable; urgency=low
* Miguel Figueiredo
- Added Portuguese translation (pt.po)
* Ming Hua
- Initial Simplified Chinese translation (zh_CN.po)
* Bart Cornelis
- Merged Norwegian Nynorsk (nn.po) translation from skolelinux-cvs
* Andre Dahlqvist
- Update Swedish translation (sv.po)
* Christian Perrier
- Correct mistake in french translation (fr.po). Closes: #226293
* Richard Hirst
- Load ide-mod and ide-probe-mod also, for older (2.4.20) kernels (ia64)
-- Joey Hess <joeyh@debian.org> Tue, 6 Jan 2004 22:28:16 -0500
ddetect (0.61) unstable; urgency=low
* Peter Mann
- Updated Slovak translation
-- Joey Hess <joeyh@debian.org> Thu, 25 Dec 2003 19:29:49 -0500
ddetect (0.60) unstable; urgency=low
* Karsten Merker
- Fix hw-detect error messages about missing sd_mod and
sr_mod when SCSI-disk- and SCSI-CDROM support is compiled
into the kernel statically. (closes: Bug#224745)
* Joey Hess
- busybox sed does not use -e, fix broken sed commands in above changes.
- Add back the missing register-module calls for sd_mod and sr_mod.
- Better IFS newline setting.
- Send ide pci modules find stderr to /dev/null.
- Use only one progress bar for both hardware detection and module
loading, and add the sd_mod and sr_mod loading to it.
- Fix sed quoting, it was broken for .ko.
* Bart Cornelis
- incorporated improvements from debian-l10n-dutch into nl.po
- Merged Norwegian Bokmael (nb.po) translation from skolelinux-cvs
* Jure Cuhalev
- Added/updated slovenian translation (sl.po).
* Gaudenz Steinlin
- add support for discover 2 without the didiscover utility
(Thanks to Thiemo Seufer for dumb_join_discover)
-- Joey Hess <joeyh@debian.org> Wed, 24 Dec 2003 01:36:30 -0500
ddetect (0.59) unstable; urgency=low
* Bartosz Fenski
- Updated Polish (pl) translation.
* Verok Istvan
- Initial Hungarian translation
* Kenshi Muto
- Update Japanese translation (ja.po)
* André Dahlqvist
- Update Swedish translation. (sv.po)
* Konstantinos Margaritis
- Updated Greek translation (el.po)
* Teófilo Ruiz Suárez
- Updated Spanish translation (es.po)
- Switched to UTF-8
* Alwin Meschede
- Updated German translation (de.po)
* Marco d'Itri
- Add premiminary support for .ko kernel modules.
* Petter Reinholdtsen
- Updated Norwegian Bokmål (nb.po).
- Update Norwegian Nynorsk (nn.po), thanks to Gaute Hvoslef Kvalnes.
* Joey Hess
- sed -re does not work with busybox, use 2 sed calls instead
- busybox shell doesn't elide failed globs, use find instead
- busybox grep does not support regexps, use less exact match
* Giuseppe Sacco
- first italian translation by Davide Viti (it.po)
* Bart Cornelis
- Updated Dutch translation (nl.po)
* Steinar H. Gunderson
- Updated Norwegian Bokmål (nb.po).
* KÄ?stutis BiliÅ«nas
- Updated Lithuanian translation (lt.po).
* Ognyan Kulev
- Added/updated bulgarian translation (bg.po).
* Jure Cuhalev
- Added/updated slovenian translation (sl.po).
-- Joey Hess <joeyh@debian.org> Mon, 22 Dec 2003 14:15:11 -0500
ddetect (0.58) unstable; urgency=low
* Joey Hess
- Remove the bogus "false" from the end of the modprobe error message
display.
- Sort the list of modules for manual selection.
- Use register-module to register modules for ide and scsi CDROMS,
so they will be available for base-config.
- Use register-module to register any module parameters that are entered
by the user.
- Fix ethdetect to not write kernel module parameters to
/target/etc/modules; instead use register-module here too.
- Add a versioned dep on rootskel.
- Based on user reports, users are very confused to see the missing
modules dialog for stuff like ide-floppy, which is both unavailable
and not autodetected. So leave off non-autodetectable modules from the
missing modules message.
* Claus Hindsgaul
- Update da (Danish) translation.
* Konstantinos Margaritis
- Initial Greek translation (el.po)
* Christian Perrier/Chris Tillman
- Refined and standardized templates. Closes: #219469
* Safir Å eÄ?eroviÄ?
- Update Bosnian translation.
* Christian Perrier
- Update French translation.
* Miroslav Kure
- Update Czech translation.
* Jordi Mallach
- Update Catalan translation.
* Kenshi Muto
- Update Japanese translation (ja.po)
* Ilgiz Kalmetev
- Update Russian translation. Closes: #221648.
* André LuÃs Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* Thiemo Seufer
- Add support for mips, mipsel to archdetect.
- Remove unused #includes.
- Unify code formatting.
- Add CFLAGS for warnings and space optimization.
-- Joey Hess <joeyh@debian.org> Tue, 9 Dec 2003 15:46:32 -0500
ddetect (0.57) unstable; urgency=low
* Peter Mann
- Initial Slovak translation (sk.po).
* Joey Hess
- typo fix
- remove commented out sr_mod load line, code below loads it
- try to load usb-storage if the system has usb. Needed for usb storage
booted installs
* Steinar H. Gunderson
- Remove db_stop from hw-detect.sh, which confuses main-menu later on
and doesn't really make a difference anyhow with cdebconf.
(Closes: #219897)
-- Joey Hess <joeyh@debian.org> Mon, 10 Nov 2003 11:51:27 -0500
ddetect (0.56) unstable; urgency=low
* Kenshi Muto
- Update Japanese translation (ja.po)
* Bart Cornelis
- Updated Dutch translation (nl.po)
-- Petter Reinholdtsen <pere@debian.org> Sat, 8 Nov 2003 20:26:16 +0100
ddetect (0.55) unstable; urgency=low
* Christian Perrier
- Update French translation.
* André LuÃs Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* Miroslav Kure
- Update Czech translation.
* Tommi Vainikainen
- Update Finnish translation.
* Petter Reinholdtsen
- Updated nb.po.
-- Joey Hess <joeyh@debian.org> Thu, 6 Nov 2003 16:53:48 +0100
ddetect (0.54) unstable; urgency=low
* KÄ?stutis BiliÅ«nas
- Update Lithuanian translation.
* Joey Hess
- Check for already loaded modules before saying anything about loading
them. Should be faster and clearer.
- If a module is not available, don't say we're loading it, instead
mention that it was unavailable. The summary of unavailable modules is
retained because it's easy to miss otherwise.
- Remove the "(full version)" from hw-detect-full's menu item.
There is no other version on the menu.
- Versioned dependencies are not allowed in udebs, removed version from
cdebconf-udeb dependency.
- ORed dependencies are not allowed either, removed modutils-basic |
modutils-full, which was obsolete anyway.
-- Joey Hess <joeyh@debian.org> Mon, 3 Nov 2003 21:27:21 +0000
ddetect (0.53) unstable; urgency=low
* Try to start pcmcia if it is available.
* If there seems to be pcmcia hardware, apt-install pcmcia-cs to
make it available on the installed system. Closes: #214492
* Change hw-detect/modprobe_error to an error.
-- Joey Hess <joeyh@debian.org> Sun, 2 Nov 2003 22:15:00 -0500
ddetect (0.52) unstable; urgency=low
* Safir Secerovic, Amila Akagic
- Add Bosnian translation (bs.po).
* Joey Hess
- Change Installer-Menu-Item from 13 to 15 as part of the 10-30
renumbering.
-- Joey Hess <joeyh@debian.org> Sat, 1 Nov 2003 21:44:36 -0500
ddetect (0.51) unstable; urgency=low
* Kenshi Muto
- Update Japanese translation (ja.po)
* Jure Cuhalev
- Add Slovenian translation. Closes: #218025.
* Claus Hindsgaul
- Update da (Danish) translation.
-- Petter Reinholdtsen <pere@debian.org> Sat, 1 Nov 2003 12:36:47 +0100
ddetect (0.50) unstable; urgency=low
* André LuÃs Lopes
- Updated pt_BR (Brazilian Portuguese) translation.
* Kenshi Muto
- Update Japanese translation (ja.po)
* Pierre Machard
- Update French translation.
* Bart Cornelis
- Updated dutch translation (nl.po)
* Tommi Vainikainen
- Add Finnish (fi.po) translation
* Miroslav Kure
- Update Czech translation (cs.po).
* KÄ?stutis BiliÅ«nas
- Update Lithuanian translation (lt.po).
-- Petter Reinholdtsen <pere@debian.org> Fri, 24 Oct 2003 16:18:45 +0200
ddetect (0.49) unstable; urgency=low
* Pierre Machard
- Update French po-debconf translation [Christian Perrier].
* Petter Reinholdtsen
- Do not fail if the 'missing modules' template is not
displayed. Log when this happen.
- Correct the template substitution variable used by hw-detect to
match the template text.
- Make it easier to disable ide chipset module loading.
- Update nb.po.
-- Petter Reinholdtsen <pere@debian.org> Sat, 18 Oct 2003 19:02:30 +0200
ddetect (0.48) unstable; urgency=low
* André LuÃs Lopes
- Updated pt_BR (Brazilian Portuguese) translation.
* Pierre Machard
- Update French po-debconf translation [Christian Perrier].
* Claus Hindsgaul
- Update da (Danish) translation.
* Miroslav Kure
- Update Czech translation (cs.po).
* Joey Hess
- ethdetect: exit 1 if no hardware is detected. This will avoid a
useless run of eg, dhcp after it at high priority.
- hw-detect: fset various questions to unseen before displaying
- hw-detect: put up a progress bar while running disvocer, so there
will be something onscreen if that step should hang
- hw-detect: run discover only once per use, not twice
* Matt Kraai
- Use the error template type for errors.
-- Andre Luis Lopes <andrelop@debian.org> Wed, 15 Oct 2003 04:26:10 -0200
ddetect (0.47) unstable; urgency=low
* Joey Hess
- A slightly less grody means of loading IDE chipset drivers.
- Simplified the text on the menu items.
- Lower-cased parts of driver names in hwdetect.
* KÄ?stutis BiliÅ«nas
- Add Lithuanian translation (lt.po).
-- Joey Hess <joeyh@debian.org> Wed, 15 Oct 2003 17:04:54 -0400
ddetect (0.46) unstable; urgency=low
* Claus Hindsgaul
- Update da (Danish) translation.
* André LuÃs Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* Denis Barbier
- Add a comment in templates files to flag main menu items.
* Christian Perrier
- Update French translation.
* Petter Reinholdtsen
- Correct module name match to avoid matching
substrings. (Closes: #215453)
- Try to load ide-floppy as well, as some platforms need it,
and I am not sure how to probe for it. (Closes: #215455)
* Joey Hess
- Load all the PCI IDE drivers before ide-detect, to fix DMA
issues on some systems. Closes: #215442
- Remove the hard-coded list of modules from ethdetect, instead search
for all net drivers and put them in the list, which is not 100% right
but still much better.
- Remove the confusing question about manually specifying the module to
load. Anyone who knows where a non-modprobe-able module is can use the
shell..
- Remove redundant ethdetect/title template, and unused
ethdetect/module_prompt template.
- hw-detect: collect any modprobe failures, and show them all in one
screen at the end. Closes: #215163
- hw-detect: Say "Loading module", not "Detected module", as not all
the loaded modules were detected.
- ethdetect: Loop if manual loading does not work, to let the user try
several modules. Add error if ethernet card is not found.
- Add myself to uploaders, at least temporarily.
-- Joey Hess <joeyh@debian.org> Wed, 15 Oct 2003 12:35:13 -0400
ddetect (0.45) unstable; urgency=low
* Petter Reinholdtsen
- Reduce the debconf priority of the question reporting about
modprobe problems.
- Make menu entries translatable.
* Miroslav Kure
- Initial Czech translation.
* Alastair McKinstry
- Move to debconf macros.
* Kenshi Muto
- Update Japanese po (ja.po)
* Bart Cornelis
- Updated dutch translation (nl.po)
-- Petter Reinholdtsen <pere@debian.org> Sun, 12 Oct 2003 17:48:49 +0200
ddetect (0.44) unstable; urgency=low
* Matt Kraai
- Add libdebconfclient0-dev to the build-depends (closes: #214295).
-- Petter Reinholdtsen <pere@debian.org> Tue, 7 Oct 2003 20:29:41 +0200
ddetect (0.43) unstable; urgency=low
* Alastair McKinstry
- Fix UTF-8 brokenness in changelog.
- Move to Standards-Version: 3.6.1; no changes required.
* Pierre Machard
- Update French po-debconf translation.
* Bastian Blank
- Add archdetect.
-- Bastian Blank <waldi@debian.org> Thu, 02 Oct 2003 17:05:21 +0200
ddetect (0.42) unstable; urgency=low
* André LuÃs Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* Kenshi Muto
- Update ja.po.
-- Petter Reinholdtsen <pere@debian.org> Sun, 28 Sep 2003 15:02:16 +0200
ddetect (0.41) unstable; urgency=low
* Kenshi Muto
- Update ja.po
* Pierre Machard
- Update French po-debconf translation [Christian Perrier]
- Run debconf-updatepo
* André LuÃs Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* Bart Cornelis
- updated dutch translation
* Petter Reinholdtsen
- Change old TITLE command to new SETTITLE command.
- Updated nb.po.
-- Bart Cornelis <cobaco@linux.be> Sat, 27 Sep 2003 14:26:52 +0200
ddetect (0.40) unstable; urgency=low
* Petter Reinholdtsen
- Added Russian debconf template translation (ru.po), patch
from Serge Winitzki.
- Kernel 2.4.22 uses ide-detect, not ide-probe-mod and ide-mod. Try
to load it.
* Denis Barbier
- Run debconf-updatepo
* Jordi Mallach
- Added Catalan (ca) translation.
-- Petter Reinholdtsen <pere@debian.org> Fri, 19 Sep 2003 20:40:05 +0200
ddetect (0.39) unstable; urgency=low
* Teófilo Ruiz Suárez
- Updated Spanish translation (es.po)
-- Petter Reinholdtsen <pere@debian.org> Fri, 5 Sep 2003 23:14:34 +0200
ddetect (0.38) unstable; urgency=low
* Remove reference to obsolete S60hw-detect.
* Javier Fernandez-Sanguino:
- Minor change to the spanish translation
* Kenshi Muto
- Added Japanese translation (ja.po)
-- Petter Reinholdtsen <pere@debian.org> Thu, 28 Aug 2003 23:06:55 +0200
ddetect (0.37) unstable; urgency=low
* Update da.po, thanks to Finn G. Larsen.
-- Petter Reinholdtsen <pere@debian.org> Sat, 9 Aug 2003 16:31:17 +0200
ddetect (0.36) unstable; urgency=low
* Correct typos in two log messages.
-- Petter Reinholdtsen <pere@debian.org> Wed, 30 Jul 2003 15:55:09 +0200
ddetect (0.35) unstable; urgency=low
* Log to syslog instead of /var/log/messages.
-- Petter Reinholdtsen <pere@debian.org> Mon, 28 Jul 2003 15:50:27 +0200
ddetect (0.34) unstable; urgency=low
* Florian Lohoff
- Updated de.po. Thanks to from Maximilian Wilhelm.
-- Petter Reinholdtsen <pere@debian.org> Mon, 21 Jul 2003 08:53:51 +0200
ddetect (0.33) unstable; urgency=low
* Remove S60hw-detect; its messy
* André LuÃs Lopes
- Fix some mispelling erros in Brazilian Portuguese (pt_BR)
debconf template translation.
* Convert to changelog to UTF-8, as per Standards-Version 3.6.0
-- Alastair McKinstry <mckinstry@computer.org> Sun, 20 Jul 2003 09:18:06 +0100
ddetect (0.32) unstable; urgency=low
* Remove unwanted menutest files
-- Alastair McKinstry <mckinstry@computer.org> Wed, 16 Jul 2003 13:32:47 +0100
ddetect (0.31) unstable; urgency=low
* Change separator character from '\t' to ':' to make it easier to
discover2.
* Update nl.po, thanks to Bart Cornelis.
* Add script /lib/debian-installer.d/S60hw-detect to get HW detection
as the first thing before main-menu start.
* Drop the call to paste (which is missing in d-i), and try harder
to handle discover2.
* Remove code to load kernel modules from floppy, and tell the user to
fetch more module packages if needed.
* Alastair McKinstry
- Drop explanation of 'driver floppy' in hwdetect, as it was wrong.
-- Alastair McKinstry <mckinstry@computer.org> Tue, 15 Jul 2003 00:21:41 +0200
ddetect (0.30) unstable; urgency=low
* Thorsten Sauter
- Update German translation
* Pierre Machard
- Update French translation
* Petter Reinholdtsen
- Avoid hardcoded kernel version number in hw-detect.
- Correct the arguments for discover2 in hw-detect.sh.
- Only try to load a module once. (Closes: #166353)
-- Petter Reinholdtsen <pere@debian.org> Tue, 3 Jun 2003 23:07:24 +0200
ddetect (0.29) unstable; urgency=low
* Changed hw-detect to probe for ethernet cards, to make it useful
to call the script from ethdetect. Based on patch from Peter
Hawkins.
* Martin Sjögren
- Use new progress bar API.
-- Petter Reinholdtsen <pere@debian.org> Fri, 16 May 2003 21:06:49 +0200
ddetect (0.28) unstable; urgency=low
* Make sure to load sr_mod in addition to sd_mod on SCSI machines, to
find CDROM drives.
* Avoid 'yes' and 'no' in template text, to make it more frontend
neutral.
* Updated nb.po.
* André LuÃs Lopes :
- Update pt_BR debconf template translations.
* Thorsten Sauter
- Update de.po
-- Petter Reinholdtsen <pere@debian.org> Sat, 10 May 2003 11:43:05 +0200
ddetect (0.27) unstable; urgency=low
* Updated nb.po and nn.po.
-- Petter Reinholdtsen <pere@debian.org> Sun, 4 May 2003 15:28:30 +0200
ddetect (0.26) unstable; urgency=low
* Change priority of ethdetect from standard to optional. It is only
usefull for network installs, and there is no need to use it unless
it already is on the boot floppy.
* Remove everyone but me from the uploaders list. I am the current
maintainer of this package.
* Start on support for discover2.
* Correct typo in nb.po.
* Change some variable names to get more consistent names.
* Remove unused debconf template ethdetect/load_module and
update translations with new variable name.
* Try to make sure discover is installed into /target/.
* Updated nn.po.
* Pierre Machard: Update the French template
* André LuÃs Lopes :
- Run debconf-updatepo.
- Update pt_BR debconf template translation.
-- Petter Reinholdtsen <pere@debian.org> Sat, 3 May 2003 12:51:59 +0200
ddetect (0.25) unstable; urgency=low
* In ethdetect, report the error to main-menu if the manual loading
failed.
* Drop the replaces/provides disk-detect in hw-detect-full. It confuses
main-menu, and make it loop if disk-detect and hw-detect-full is
installed at the same time.
-- Petter Reinholdtsen <pere@debian.org> Mon, 21 Apr 2003 09:55:37 +0200
ddetect (0.24) unstable; urgency=low
* Petter Reinholdtsen
- Improved the question text used when loading modules, and when
something goes wrong.
- Rewritten ethdetect as shell script, changing arch to 'all' and
changing build-depends to build-depends-indep.
- Two new packages, hw-detect (to be used by cdrom-detect, now
used by new ethdetect and hw-detect-full), and hw-detect-full
(replacing disk-detect).
- Rename module 'eepro100' to 'e100' to match the 2.4.20
kernel. (Closes: #189054)
- Expand HW to hardware, and rephrase the ethdetect menu item.
- Updated nb debconf template translation.
* André LuÃs Lopes :
- Update pt_BR debconf template translations.
-- Petter Reinholdtsen <pere@debian.org> Sun, 20 Apr 2003 16:34:53 +0200
ddetect (0.23) unstable; urgency=low
* Petter Reinholdtsen
- Updated nb.po received from Bjørn Steensrud.
- Added Norwegian Nynorsk (nn.po) translations recieved from Gaute
Hvoslef Kvalnes.
- Acnowlege NMU: (Closes: #95653)
- Translations for german, dutch, spanish and Brazilian portuguese
are now included. (Closes: #84986, #95727, #103216, #108539)
- Add myself to uploaders.
* Tollef Fog Heen
- Lower priority of load module question
- Automatically ask about manual module if no card is detected.
(Closes: #180772)
* Thorsten Sauter
- Run depmod before try to load modules
-- Petter Reinholdtsen <pere@debian.org> Wed, 9 Apr 2003 10:36:50 +0200
ddetect (0.22) unstable; urgency=low
* Richard Hirst
- rename debconf_input() to my_debconf_input() to avoid clashes with
#defines in cdebconf/debconfclient.h
* Tollef Fog Heen
- Change build-deps to libdebian-installer-dev instead of
libdebian-installer3-dev. Thanks to Thorsten Sauter for spotting
this.
* Matt Kraai
- Fix prebaseconfig script.
- Fix array bounds in module_loaded.
* Petter Reinholdtsen
- Added Norwegian Bokmål translations recieved from Bjørn Steensrud.
-- Matt Kraai <kraai@debian.org> Mon, 03 Feb 2003 20:17:38 -0800
ddetect (0.21) unstable; urgency=low
* Martin Sjögren
- Use libdebian-installer3
* Tollef Fog Heen
- Fix installer-menu-item
-- Tollef Fog Heen <tfheen@debian.org> Thu, 5 Dec 2002 01:03:04 +0100
ddetect (0.20) unstable; urgency=low
* Tollef Fog Heen
- Multiply installer-menu-item by ten
-- Tollef Fog Heen <tfheen@debian.org> Thu, 14 Nov 2002 02:16:17 +0100
ddetect (0.19) unstable; urgency=low
* Martin Sjögren
- Replace XBC with XB so our special control fields don't confuse the
changes files.
* André Lusà Lopes
- Set pt_BR.po control fields.
- Update Brazilian Portuguese (pt_BR)
template translation.
-- Tollef Fog Heen <tfheen@debian.org> Thu, 14 Nov 2002 02:08:08 +0100
ddetect (0.18) unstable; urgency=low
* Make detecting hardware the default.
* Adjust some debconf priorities
* Only load a module once.
-- Tollef Fog Heen <tfheen@debian.org> Wed, 6 Nov 2002 02:03:51 +0100
ddetect (0.17) unstable; urgency=low
* canonicalize description capitalization
* fix template problems noted by Denis Barbier
* waldi: don't build ethdetect for s390
* Convert to po-debconf, set Build-Depends: debhelper (>= 4.1.13)
to ensure that generated templates are right, and set output encoding
to UTF-8.
* change to libdebian-installer2-dev in build-deps (no source changes
necessary)
-- Tollef Fog Heen <tfheen@debian.org> Thu, 24 Oct 2002 12:38:59 +0200
ddetect (0.16) unstable; urgency=low
* add python to build-deps
* when a module is successfully loaded, add it to /etc/modules
* Get rid of silly configure target
* decrease priority to force ddetect before netcfg-*
-- Tollef Fog Heen <tfheen@debian.org> Mon, 16 Sep 2002 16:34:31 +0200
ddetect (0.15) unstable; urgency=low
* Add Brazilian Portuguese debconf template.
* Add Danish debconf template.
* Generate minimized discover data file at build time.
* Remove unused detection programs.
* Keep each language template in a separate file.
* remove broken ISA detection code.
-- David Kimdon <dwhedon@debian.org> Fri, 30 Aug 2002 16:41:55 -0700
ddetect (0.14) unstable; urgency=low
* Rebuild for new cdebconf
-- Tollef Fog Heen <tfheen@debian.org> Wed, 21 Aug 2002 19:02:16 +0200
ddetect (0.13) unstable; urgency=low
* patch from Thomas Poindessous <thomas@poindessous.com>
- corrects TEST compiling in ethdetect.c
- corrects path for -L
- cosmetic change for lst2header help
* build depend on cdebconf-dev
* switch to discover from libdetect
* cleanup
* Switch maintainer name in control file to debian-boot, put David
Kimdon and Tollef Fog Heen into Uploaders field.
* Change build-deps from cdebconf-dev to libcdebconf-dev
* Colin Watson:
- Correct dpkg-gencontrol call so it picks up ${shlibs:Depends}.
- Name menutest as such in the control area rather than as
ethdetect.menutest.
-- Tollef Fog Heen <tfheen@debian.org> Sat, 17 Aug 2002 15:04:48 +0200
ddetect (0.12) unstable; urgency=low
* Switch to discover instead of detect.
* Remove obsolete emacs variables block at end of changelog.
-- Tollef Fog Heen <tfheen@debian.org> Sun, 5 May 2002 15:28:56 +0200
ddetect (0.11) unstable; urgency=low
* German translations contributed by
Sebastian Feltel <sebastian@feltel.de>
* German translation update thanks to
Joerg.Rieger@informatik.med.uni-giessen.de
(closes: #84986)
* Dutch template thanks to "Thomas J. Zeeman" <tjzeeman@cs.vu.nl>
(closes: #95727)
* Spanish template thanks to Carlos Valdivia <valyag@teleline.es>
(closes: #103216)
* Brazilian portuguese template thanks to Andre Luis Lopes
<andrelop@ig.com.br> (closes: #108539)
* Danish translations contributed by
Claus Hindsgaul <claus_h@image.dk>
-- David Whedon <dwhedon@debian.org> Tue, 8 May 2001 17:41:45 -0700
ddetect (0.10) unstable; urgency=low
* use new dpkg features so build is less cludgy
* don't depend on libdetect0-udeb, not needed (closes: #96258)
-- David Whedon <dwhedon@debian.org> Mon, 7 May 2001 23:49:43 -0700
ddetect (0.09) unstable; urgency=low
* turn on ISA detection.
-- David Whedon <dwhedon@debian.org> Wed, 31 Jan 2001 21:20:23 -0800
ddetect (0.08) unstable; urgency=low
* use modprobe instead of insmod
-- David Whedon <dwhedon@debian.org> Tue, 30 Jan 2001 01:17:16 -0800
ddetect (0.07) unstable; urgency=low
* debconf support added, isa detection still not working
-- David Whedon <dwhedon@gordian.com> Tue, 2 Jan 2001 22:50:32 -0800
ddetect (0.06) unstable; urgency=low
* remove vendor and model information, still using libdetect
structure, resulting size reductions:
ethdetect 32k -> 26k, mdmdetect 30k -> 27k,
snddetect 28k -> 25k
-- David Whedon <dwhedon@gordian.com> Wed, 29 Nov 2000 19:53:54 -0800
ddetect (0.05) unstable; urgency=low
* now we build separate .udeb's and they have a 'Provides' field
-- David Whedon <dwhedon@gordian.com> Tue, 14 Nov 2000 20:37:41 -0800
ddetect (0.04) unstable; urgency=low
* added snddetect, cleanup
-- David Whedon <dwhedon@gordian.com> Tue, 14 Nov 2000 20:37:11 -0800
ddetect (0.03) unstable; urgency=low
* Initial Release.
-- David Whedon <dwhedon@gordian.com> Mon, 13 Nov 2000 23:46:39 -0800
|