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
|
grub-installer (1.181) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Finnish (fi.po) by Kimmo Kujansuu
-- Holger Wansing <hwansing@mailbox.org> Fri, 23 Jul 2021 19:08:20 +0200
grub-installer (1.180) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Lithuanian (lt.po) by Gediminas Murauskas
* Spanish (es.po) by Javier Fernández-Sanguino (Closes: #990720)
* Turkish (tr.po) by Fatih Altun
-- Holger Wansing <hwansing@mailbox.org> Thu, 08 Jul 2021 23:24:36 +0200
grub-installer (1.179) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Romanian (ro.po) by Christian Eichert
-- Holger Wansing <hwansing@mailbox.org> Wed, 23 Jun 2021 21:19:54 +0200
grub-installer (1.178) unstable; urgency=medium
[ John Paul Adrian Glaubitz ]
* Add support for Apple PowerMacintosh (New World)
[ James Addison ]
* Add conditional tests around mount cleanup logic. Closes: #988826
-- Steve McIntyre <93sam@debian.org> Tue, 15 May 2021 01:20:31 +0100
grub-installer (1.177) unstable; urgency=medium
* Team upload
[ Updated translations ]
* German (de.po) by Holger Wansing
* Dutch (nl.po) by Frans Spiesschaert
* Traditional Chinese (zh_TW.po) by louies0623
-- Holger Wansing <hwansing@mailbox.org> Sat, 20 Mar 2021 22:15:42 +0100
grub-installer (1.176) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Arabic (ar.po) by zer0-x
* Catalan (ca.po) by d
* Danish (da.po) by Michael Millet
* Hindi (hi.po) by KushagraKarira
* kab (kab.po) by Selyan Sliman Amiri
* Latvian (lv.po) by Tranzistors
* Tamil (ta.po) by Vasudevan Tirumurti
* Thai (th.po) by Theppitak Karoonboonyanan
-- Holger Wansing <hwansing@mailbox.org> Sun, 14 Feb 2021 19:08:17 +0100
grub-installer (1.175) unstable; urgency=medium
* Make sure that efivarfs is loaded and the efivars pseudofs is
mounted when needed.
-- Steve McIntyre <93sam@debian.org> Sun, 17 Jan 2021 00:29:09 +0000
grub-installer (1.174) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Greek (el.po) by EG
* Occitan (oc.po) by Quentin PAGÈS
* Romanian (ro.po) by Sergiu
* Russian (ru.po) by Yuri Kozlov
-- Holger Wansing <hwansing@mailbox.org> Wed, 30 Dec 2020 23:13:46 +0100
grub-installer (1.173) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Greek (el.po) by Vangelis Skarmoutsos
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* Persian (fa.po) by سهیل خانعلیپور
* Italian (it.po) by Milo Casagrande
* Marathi (mr.po) by Prachi Joshi
* Punjabi (Gurmukhi) (pa.po) by Aman ALam
* Traditional Chinese (zh_TW.po) by Walter Cheuk
[ 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:19:11 +0100
grub-installer (1.172) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Greek (el.po) by root
* Spanish (es.po) by Javier Fernández-Sanguino
* Estonian (et.po) by Kristjan Räts
* French (fr.po) by Baptiste Jammet
* Hebrew (he.po) by Yaron Shahrabani
* Punjabi (Gurmukhi) (pa.po) by Aman ALam
* Polish (pl.po) by Bartosz Feński
* Serbian (sr.po) by Filipovic Dragan
* Swedish (sv.po) by Anders Jonsson
-- Holger Wansing <hwansing@mailbox.org> Sun, 20 Sep 2020 22:18:57 +0200
grub-installer (1.171) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Hindi (hi.po) by Sanket Pardhi
* Lithuanian (lt.po) by Andrius Majauskas
* Simplified Chinese (zh_CN.po) by Boyuan Yang
-- Holger Wansing <hwansing@mailbox.org> Sun, 05 Jul 2020 21:40:55 +0200
grub-installer (1.170) unstable; urgency=medium
* Team upload
* Update templates, to make them fit for UEFI systems and new kind of
system storage media. Closes: #954718
[ Updated translations ]
* Czech (cs.po) by Miroslav Kure
* German (de.po) by Holger Wansing
* Esperanto (eo.po) by Felipe Castro
* Estonian (et.po) by Kristjan Räts
* Persian (fa.po) by Seyed Hany Hosseini
* Hebrew (he.po) by Yaron Shahrabani
* Croatian (hr.po) by gogogogi
* Indonesian (id.po) by Andika Triwidada
* Icelandic (is.po) by Sveinn í Felli
* Korean (ko.po) by Changwoo Ryu
* Lithuanian (lt.po) by Andrius Ulrikas
* Malayalam (ml.po) by Fahad Shihab
* Norwegian Bokmal (nb.po) by Petter Reinholdtsen
* Dutch (nl.po) by Frans Spiesschaert
* Portuguese (pt.po) by Miguel Figueiredo
* Portuguese (Brazil) (pt_BR.po) by Adriano Rafael Gomes
* Romanian (ro.po) by Andrei POPESCU
* Serbian (sr.po) by Filipovic Dragan
* Tamil (ta.po) by Jeyanthinath MuthuRam
* Simplified Chinese (zh_CN.po) by Boyuan Yang
-- Holger Wansing <hwansing@mailbox.org> Sat, 09 May 2020 23:12:49 +0200
grub-installer (1.169) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Lithuanian (lt.po) by Tautvydas Zukauskas
-- Holger Wansing <hwansing@mailbox.org> Sat, 07 Mar 2020 20:55:15 +0100
grub-installer (1.168) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Czech (cs.po) by Miroslav Kure
* Esperanto (eo.po) by Felipe Castro
* Hebrew (he.po) by Yaron Shahrabani
* Croatian (hr.po) by Milo Ivir
* Swedish (sv.po) by Anders Jonsson
* Simplified Chinese (zh_CN.po) by 玉堂白鹤
-- Holger Wansing <hwansing@mailbox.org> Wed, 29 Jan 2020 19:16:14 +0100
grub-installer (1.167) unstable; urgency=medium
* Team upload
[ Holger Wansing ]
* Change template, to clarify definition of the just installed Debian
system. Includes updating all po|pot files.
[ Updated translations ]
* German (de.po) by Holger Wansing
* French (fr.po) by Baptiste Jammet
* Hebrew (he.po) by Yaron Shahrabani
* Indonesian (id.po) by Andika Triwidada
* Icelandic (is.po) by Sveinn í Felli
* Norwegian Bokmal (nb.po) by Petter Reinholdtsen
* Dutch (nl.po) by Frans Spiesschaert
* Punjabi (Gurmukhi) (pa.po) by Aman ALam
* Portuguese (pt.po) by Miguel Figueiredo
* Serbian (sr.po) by Filipovic Dragan
* Simplified Chinese (zh_CN.po) by Boyuan Yang
-- Holger Wansing <hwansing@mailbox.org> Sat, 21 Dec 2019 22:43:52 +0100
grub-installer (1.166) unstable; urgency=medium
* Team upload
[ Cyril Brulebois ]
* Remove Christian Perrier from Uploaders, with many thanks for all
his contributions over the years! (Closes: #927491)
[ John Paul Adrian Glaubitz ]
* Add ia64 support
* Sort architecture list in debian/control
[ 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
* Hebrew (he.po) by Yaron Shahrabani
* Croatian (hr.po) by gogogogi
* Portuguese (pt.po) by Miguel Figueiredo
-- Holger Wansing <hwansing@mailbox.org> Sat, 12 Oct 2019 23:09:39 +0200
grub-installer (1.165) unstable; urgency=medium
[ Colin Watson ]
* On Linux, mount/unmount /run to work around #918590.
-- Cyril Brulebois <kibi@debian.org> Sat, 30 Mar 2019 12:21:19 +0100
grub-installer (1.164) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Indonesian (id.po) by Muhammad Rifqi Priyo Susanto
* Ukrainian (uk.po) by Anton Gladky
-- Holger Wansing <hwansing@mailbox.org> Sat, 23 Mar 2019 21:38:45 +0100
grub-installer (1.163) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Arabic (ar.po) by Yaron Shahrabani
* Hebrew (he.po) by Yaron Shahrabani
* Vietnamese (vi.po) by Trần Ngọc Quân
-- Holger Wansing <hwansing@mailbox.org> Sun, 03 Mar 2019 12:42:25 +0100
grub-installer (1.162) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Finnish (fi.po) by Juhani Numminen
* Hebrew (he.po) by Yaron Shahrabani
-- Holger Wansing <hwansing@mailbox.org> Sun, 10 Feb 2019 11:12:12 +0100
grub-installer (1.161) unstable; urgency=medium
[ Steve McIntyre ]
* Tweak the installation of shim-signed a little. Tell apt-install that
it's allowed to remove other packages (e.g. dkms) if necessary.
-- Steve McIntyre <93sam@debian.org> Tue, 15 Jan 2019 15:12:13 +0000
grub-installer (1.160) unstable; urgency=medium
* Team upload
[ Steve McIntyre ]
* Add support for installing/removing shim-signed and
grub-efi-amd64-signed when desired. If we're installing on amd64, this
will make us install signed packages by default.
[ Updated translations ]
* Gujarati (gu.po) by Kartik Mistry
* Persian (fa.po) by Nima Sahraneshin
-- Steve McIntyre <93sam@debian.org> Sun, 13 Jan 2019 18:55:48 +0000
grub-installer (1.159) unstable; urgency=medium
* Team upload
[ Colin Watson ]
* Use /usr/share/dpkg/default.mk rather than setting DEB_HOST_ARCH
directly.
[ Holger Wansing ]
* Remove trailing whitespaces from changelog file, to fix lintian tag.
[ Updated translations ]
* Arabic (ar.po) by ButterflyOfFire
* German (de.po) by Holger Wansing
* Finnish (fi.po) by Juhani Numminen
-- Holger Wansing <hwansing@mailbox.org> Sun, 23 Dec 2018 17:58:18 +0100
grub-installer (1.158) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Asturian (ast.po) by Xuacu Saturio
* Galician (gl.po) by mantinan
* Hindi (hi.po) by Himanshu Awasthi
* Croatian (hr.po) by Valentin Vidic
* Latvian (lv.po) by Tranzistors
* Marathi (mr.po) by Nayan Nakhare
-- Holger Wansing <hwansing@mailbox.org> Mon, 29 Oct 2018 23:08:52 +0100
grub-installer (1.157) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Finnish (fi.po) by Juhani Numminen
* Gujarati (gu.po) by Kartik Mistry
* Traditional Chinese (zh_TW.po) by ButterflyOfFire
-- Holger Wansing <hwansing@mailbox.org> Fri, 21 Sep 2018 23:23:35 +0200
grub-installer (1.156) unstable; urgency=medium
* Team upload
[ Updated translations ]
* Finnish (fi.po) by Arto Keiski
-- Holger Wansing <hwansing@mailbox.org> Mon, 13 Aug 2018 21:46:22 +0200
grub-installer (1.155) unstable; urgency=medium
[ Cyril Brulebois ]
* Update Vcs-{Browser,Git} to point to salsa (alioth's replacement).
[ Frank Scheiner ]
* Add support for GPT disk labels on sparc/sparc64.
[ John Paul Adrian Glaubitz ]
* Add myself to Uploaders
[ Updated translations ]
* Finnish (fi.po) by Juhani Numminen
* Hebrew (he.po) by Yaron Shahrabani
* Telugu (te.po) by Praveen Illa
-- John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Sat, 28 Jul 2018 18:13:50 +0200
grub-installer (1.154) unstable; urgency=medium
[ Updated translations ]
* Welsh (cy.po) by Huw Waters
* Hebrew (he.po) by Yaron Shahrabani
* Indonesian (id.po) by Andika Triwidada
-- Christian Perrier <bubulle@debian.org> Wed, 28 Mar 2018 06:49:45 +0200
grub-installer (1.153) unstable; urgency=medium
[ Updated translations ]
* Arabic (ar.po) by ButterflyOfFire
* Hebrew (he.po) by Yaron Shahrabani
* Indonesian (id.po) by Al Qalit
* Norwegian Nynorsk (nn.po) by Alexander Jansen
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Wed, 14 Feb 2018 07:35:38 +0100
grub-installer (1.152) unstable; urgency=medium
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Sun, 21 Jan 2018 16:30:05 +0100
grub-installer (1.151) unstable; urgency=medium
[ Updated translations ]
* Panjabi (pa.po) by Aman ALam
-- Christian Perrier <bubulle@debian.org> Fri, 12 Jan 2018 15:31:26 +0100
grub-installer (1.150) unstable; urgency=medium
[ Updated translations ]
* Nepali (ne.po) by Jeewal Kunwar
-- Christian Perrier <bubulle@debian.org> Sat, 30 Dec 2017 09:55:13 +0100
grub-installer (1.149) unstable; urgency=medium
[ Updated translations ]
* Esperanto (eo.po) by Felipe Castro
-- Christian Perrier <bubulle@debian.org> Sun, 10 Dec 2017 19:00:31 +0100
grub-installer (1.148) unstable; urgency=medium
[ Updated translations ]
* Hungarian (hu.po) by Dr. Nagy Elemér Károly
* Lithuanian (lt.po) by Rimas Kudelis
* Norwegian Nynorsk (nn.po) by Allan Nordhøy
-- Christian Perrier <bubulle@debian.org> Thu, 30 Nov 2017 06:51:10 +0100
grub-installer (1.147) unstable; urgency=medium
[ Updated translations ]
* Greek (el.po) by Sotirios Vrachas
* Estonian (et.po) by Kristjan Räts
-- Christian Perrier <bubulle@debian.org> Fri, 24 Nov 2017 07:27:06 +0100
grub-installer (1.146) unstable; urgency=medium
[ Updated translations ]
* Panjabi (pa.po) by A S Alam
-- Christian Perrier <bubulle@debian.org> Tue, 31 Oct 2017 09:44:10 +0100
grub-installer (1.145) unstable; urgency=medium
[ Updated translations ]
* Latvian (lv.po) by Rūdolfs Mazurs
-- Christian Perrier <bubulle@debian.org> Sat, 14 Oct 2017 08:48:47 +0200
grub-installer (1.144) unstable; urgency=medium
[ John Paul Adrian Glaubitz ]
* Remove installability checks on powerpc and ppc64.
* Use hack to wipe and find prep partition on powerpc and ppc64.
-- Christian Perrier <bubulle@debian.org> Thu, 12 Oct 2017 07:28:24 +0200
grub-installer (1.143) unstable; urgency=medium
[ John Paul Adrian Glaubitz ]
* Add ppc64 support.
* Add sparc/sparc64 support.
* Fix subarchitecture matching on sparc/sparc64.
* Pass "--skip-fs-probe" to grub-install on sparc/sparc64.
* Add missing invocation of grub-install on powerpc/* and ppc64/*.
* Remove "experimental_arch" flag on powerpc/* and ppc64/*.
-- Christian Perrier <bubulle@debian.org> Sat, 30 Sep 2017 06:23:20 +0200
grub-installer (1.142) unstable; urgency=medium
[ Updated translations ]
* Greek (el.po) by Sotirios Vrachas
* Hebrew (he.po) by Lior Kaplan
* Albanian (sq.po) by Silva Arapi
-- Christian Perrier <bubulle@debian.org> Sun, 17 Sep 2017 08:01:16 +0200
grub-installer (1.141) unstable; urgency=medium
[ Cyril Brulebois ]
* Apply another patch by Hideki Yamane to fix support for systems with a
large number of disks, since the regression fix in the previous upload
was incomplete (Closes: #839894).
[ Updated translations ]
* Simplified Chinese (zh_CN.po) by Yangfl
* Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)
-- Cyril Brulebois <kibi@debian.org> Wed, 14 Jun 2017 09:07:51 +0200
grub-installer (1.140) unstable; urgency=medium
* Fix regression in the last upload, which should have added an extra
letter as optional instead of adding it as mandatory (/dev/[hsv]d*
case).
-- Cyril Brulebois <kibi@debian.org> Sun, 04 Jun 2017 02:44:04 +0200
grub-installer (1.139) unstable; urgency=medium
[ Roger Shimizu ]
* Fix installation to system that has many disks (>= 27).
(Closes: #839894)
-- Cyril Brulebois <kibi@debian.org> Sat, 03 Jun 2017 13:47:22 +0200
grub-installer (1.138) unstable; urgency=medium
[ Mauricio Faria de Oliveira ]
* grub-installer: Use 'p' (not '-part') as multipath disk-partition
separator. This fixes the check of whether the boot file system is on
multipath (i.e., $disc_offered is a multipath partition).
* Better handle PReP partitions on ppc64el:
- prep-bootdev: add '-l' option to list all PReP partitions. With this,
it's possible to do more things to select a PReP partition.
- grub-installer [ppc64el]: bootdev/wipe_bootdev: prefer PReP partition on
the same disk as the boot file system partition ($disc_offered).
-- Cyril Brulebois <kibi@debian.org> Sat, 01 Apr 2017 01:57:06 +0200
grub-installer (1.137) unstable; urgency=medium
* Fix grub-xen installation in Xen environments: the architecture-based
match was missing the “/subarch” part. Thanks to Sergio Gelato for the
report and the suggested fix (Closes: #854082).
-- Cyril Brulebois <kibi@debian.org> Sat, 04 Feb 2017 23:47:42 +0100
grub-installer (1.136) unstable; urgency=medium
* Really drop Otavio. Sigh...
-- Christian Perrier <bubulle@debian.org> Wed, 07 Dec 2016 07:43:28 +0100
grub-installer (1.135) unstable; urgency=medium
* Drop Otavio Salvador from Uploaders. Thank you for your work
within the D-I team. Closes: #847256
-- Christian Perrier <bubulle@debian.org> Wed, 07 Dec 2016 07:07:21 +0100
grub-installer (1.134) unstable; urgency=medium
[ Updated translations ]
* Danish (da.po) by Joe Hansen
-- Christian Perrier <bubulle@debian.org> Thu, 22 Sep 2016 07:18:53 +0200
grub-installer (1.133) unstable; urgency=medium
[ Steve McIntyre ]
* Add support for armhf EFI systems
-- Steve McIntyre <93sam@debian.org> Wed, 10 Aug 2016 18:30:11 +0100
grub-installer (1.132) unstable; urgency=medium
[ Updated translations ]
* Serbian (sr.po) by Dragan Filipović
-- Christian Perrier <bubulle@debian.org> Sun, 24 Apr 2016 09:35:06 +0200
grub-installer (1.131) unstable; urgency=medium
[ Samuel Thibault ]
* Fix mounting /proc on hurd.
-- Christian Perrier <bubulle@debian.org> Fri, 19 Feb 2016 07:01:52 +0100
grub-installer (1.130) unstable; urgency=medium
[ Colin Watson ]
* Install grub-xen when installing in a Xen PV guest.
* Use HTTPS for Vcs-* URLs, and link to cgit rather than gitweb.
-- Christian Perrier <bubulle@debian.org> Tue, 02 Feb 2016 06:55:10 +0100
grub-installer (1.129) unstable; urgency=medium
[ Updated translations ]
* Swedish (sv.po) by Martin Bagge / brother
-- Christian Perrier <bubulle@debian.org> Thu, 28 Jan 2016 07:22:26 +0100
grub-installer (1.128) unstable; urgency=high
* Fix buggy /dev/nvme matching in the case statement to determine
disc_offered_devfs (Closes: #799119). Thanks, Mario Limonciello!
-- Cyril Brulebois <kibi@debian.org> Thu, 03 Dec 2015 00:26:42 +0100
grub-installer (1.127) unstable; urgency=medium
[ Updated translations ]
* Thai (th.po) by Theppitak Karoonboonyanan
-- Christian Perrier <bubulle@debian.org> Fri, 02 Oct 2015 11:21:43 +0200
grub-installer (1.126) unstable; urgency=medium
[ Updated translations ]
* Hebrew (he.po) by Lior Kaplan
-- Christian Perrier <bubulle@debian.org> Fri, 21 Aug 2015 06:17:47 +0200
grub-installer (1.125) unstable; urgency=medium
[ Ian Campbell ]
* Correctly propagate grub-installer/force-efi-extra-removable to installed
system. (Closes: #792247).
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Ian Campbell <ijc@debian.org> Sat, 25 Jul 2015 17:15:17 +0100
grub-installer (1.124) unstable; urgency=medium
[ Updated translations ]
* Portuguese (Brazil) (pt_BR.po) by Adriano Rafael Gomes
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Sun, 21 Jun 2015 14:09:40 +0200
grub-installer (1.123) unstable; urgency=medium
[ Updated translations ]
* Portuguese (Brazil) (pt_BR.po) by Adriano Rafael Gomes
-- Christian Perrier <bubulle@debian.org> Mon, 18 May 2015 18:59:08 +0200
grub-installer (1.122) unstable; urgency=medium
[ Cyril Brulebois ]
* Add support for /dev/nvme* devices (NVMe SSD Add-in-Card devices),
by mimicking what is already done in the /dev/mmcblk* case. Thanks to
Steve Rowe for the report and the initial patch! (Closes: #785149)
-- Christian Perrier <bubulle@debian.org> Wed, 13 May 2015 06:57:05 +0200
grub-installer (1.121) unstable; urgency=medium
[ Updated translations ]
* Tamil (ta.po) by Dr.T.Vasudevan
-- Christian Perrier <bubulle@debian.org> Tue, 12 May 2015 07:29:58 +0200
grub-installer (1.120) unstable; urgency=low
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Marathi (mr.po) by Sampada
-- Christian Perrier <bubulle@debian.org> Tue, 05 May 2015 08:23:19 +0200
grub-installer (1.119) unstable; urgency=medium
[ Steven Chamberlain ]
* Enable detection of kfreebsd disk types vtbd (virtio) and xbd (Xen).
-- Christian Perrier <bubulle@debian.org> Fri, 01 May 2015 08:50:59 +0200
grub-installer (1.118) unstable; urgency=low
[ Updated translations ]
* Japanese (ja.po) by Kenshi Muto. Closes: #783367
-- Christian Perrier <bubulle@debian.org> Mon, 27 Apr 2015 07:08:58 +0200
grub-installer (1.117) unstable; urgency=low
[ Updated translations ]
* Slovenian (sl.po) by Vanja Cvelbar
-- Christian Perrier <bubulle@debian.org> Mon, 27 Apr 2015 07:05:05 +0200
grub-installer (1.116) unstable; urgency=low
[ Updated translations ]
* Romanian (ro.po) by Ioan Eugen Stan
-- Christian Perrier <bubulle@debian.org> Thu, 09 Apr 2015 19:50:12 +0200
grub-installer (1.115) unstable; urgency=low
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
-- Christian Perrier <bubulle@debian.org> Sun, 05 Apr 2015 08:55:31 +0200
grub-installer (1.114) unstable; urgency=low
[ Updated translations ]
* Romanian (ro.po) by Bradut Boghita
-- Christian Perrier <bubulle@debian.org> Wed, 25 Mar 2015 06:56:09 +0100
grub-installer (1.113) unstable; urgency=low
[ Updated translations ]
* Spanish (es.po) by Javier Fernández-Sanguino
-- Christian Perrier <bubulle@debian.org> Wed, 18 Mar 2015 07:01:16 +0100
grub-installer (1.112) unstable; urgency=low
[ Updated translations ]
* Danish (da.po) by Joe Hansen
* Ukrainian (uk.po) by Anton Gladky
* Vietnamese (vi.po) by Hai-Nam Nguyen
-- Christian Perrier <bubulle@debian.org> Sun, 08 Mar 2015 08:00:53 +0100
grub-installer (1.111) unstable; urgency=low
[ Updated translations ]
* Japanese (ja.po) by Kenshi Muto
-- Christian Perrier <bubulle@debian.org> Sat, 21 Feb 2015 08:30:08 +0100
grub-installer (1.110) unstable; urgency=low
[ Updated translations ]
* Polish (pl.po) by Michał Kułach
-- Christian Perrier <bubulle@debian.org> Wed, 11 Feb 2015 06:50:00 +0100
grub-installer (1.109) unstable; urgency=low
[ Updated translations ]
* Korean (ko.po) by Changwoo Ryu
-- Christian Perrier <bubulle@debian.org> Tue, 10 Feb 2015 06:56:31 +0100
grub-installer (1.108) unstable; urgency=low
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
-- Christian Perrier <bubulle@debian.org> Thu, 05 Feb 2015 07:15:18 +0100
grub-installer (1.107) unstable; urgency=low
[ Updated translations ]
* Galician (gl.po) by Jorge Barreiro
-- Christian Perrier <bubulle@debian.org> Sat, 31 Jan 2015 08:04:08 +0100
grub-installer (1.106) unstable; urgency=low
[ Updated translations ]
* Russian (ru.po) by Yuri Kozlov
-- Christian Perrier <bubulle@debian.org> Mon, 26 Jan 2015 08:18:52 +0100
grub-installer (1.105) unstable; urgency=medium
[ Steve McIntyre ]
* Add support for mixed EFI systems: 64-bit Linux running on top of
32-bit UEFI.
[ Updated translations ]
* Czech (cs.po) by Miroslav Kure
* Italian (it.po) by Milo Casagrande
-- Christian Perrier <bubulle@debian.org> Wed, 14 Jan 2015 06:55:38 +0100
grub-installer (1.104) unstable; urgency=low
[ Updated translations ]
* Belarusian (be.po) by Viktar Siarheichyk
* German (de.po) by Holger Wansing
* French (fr.po) by Christian Perrier
* Croatian (hr.po) by Tomislav Krznar
* Bokmål, Norwegian (nb.po) by Hans Fredrik Nordhaug
* Portuguese (pt.po) by Miguel Figueiredo
* Slovak (sk.po) by Ivan Masár
* Thai (th.po) by Theppitak Karoonboonyanan
-- Christian Perrier <bubulle@debian.org> Wed, 07 Jan 2015 07:07:28 +0100
grub-installer (1.103) unstable; urgency=medium
* Apply patch by Andrew Patterson (many thanks!) to support setting
grub-installer/bootdev=default so that the default boot device that
was determined is used automatically, skipping the prompt
(Closes: #759737).
-- Cyril Brulebois <kibi@debian.org> Mon, 29 Dec 2014 23:20:16 +0100
grub-installer (1.102) unstable; urgency=medium
[ Steve McIntyre ]
* Add extra support for forcing installation to the EFI
removable media path, either during installation (low priority or
preseeding), or as an extra rescue-mode option to help people fix
their systems post-install once they realise they need to. (#767037)
-- Steve McIntyre <93sam@debian.org> Mon, 01 Dec 2014 02:49:36 +0000
grub-installer (1.101) unstable; urgency=medium
[ Steve McIntyre ]
* Recognise the new ignore_uefi flag from partman-efi.
-- Steve McIntyre <93sam@debian.org> Mon, 03 Nov 2014 23:31:39 +0000
grub-installer (1.100) unstable; urgency=medium
[ Colin Watson ]
* On ppc64el, wipe the PReP partition before installing grub-ieee1275,
otherwise installations where the PReP partition is not empty and does
not contain a previous boot loader installation will fail now that
grub-ieee1275.postinst runs grub-install (LP: #1376973).
-- Christian Perrier <bubulle@debian.org> Thu, 09 Oct 2014 07:26:34 +0200
grub-installer (1.99) unstable; urgency=medium
* Revert using default_bootdev as the default when bootdev is unset (see
1.98 upload) since it brings back the infamous default-to-/dev/sda
issue (Closes: #763580). Always asking seems safer until someone does
the needed work to improve detection.
-- Cyril Brulebois <kibi@debian.org> Fri, 03 Oct 2014 05:06:47 +0200
grub-installer (1.98) unstable; urgency=medium
[ Philip Hands ]
* use default_bootdev as the default when bootdev is unset,
with the side-effect of enabling auto-installs to use the
default without prompting. Probably closes: #712907
* move repeated $DEBCONF_DEBUG tests into a debug() function
-- Christian Perrier <bubulle@debian.org> Tue, 23 Sep 2014 06:45:22 +0200
grub-installer (1.97) unstable; urgency=medium
[ Debian Install System Team ]
[ Steven Chamberlain]
* In device_to_disk, recognise /dev/ada[0-9] disk naming on kfreebsd
-- Christian Perrier <bubulle@debian.org> Mon, 15 Sep 2014 11:32:43 +0200
grub-installer (1.96) unstable; urgency=medium
* Install grub-arm64-efi on arm64/efi platforms.
-- Ian Campbell <ijc@debian.org> Fri, 05 Sep 2014 07:40:00 +0100
grub-installer (1.95) unstable; urgency=medium
* Add ${shlibs:Depends}, and replace dependency on cdebconf-udeb with
${misc:Depends}.
* Use --set=root rather than --set in GRUB 2 configuration emitted by
otheros.sh (closes: #650414).
* Add ppc64el support (closes: #753718).
-- Colin Watson <cjwatson@debian.org> Sat, 12 Jul 2014 09:45:43 +0100
grub-installer (1.94) unstable; urgency=medium
[ Updated translations ]
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Cyril Brulebois <kibi@debian.org> Fri, 14 Mar 2014 15:19:44 +0100
grub-installer (1.93) unstable; urgency=medium
* Revert 1.92 changes, as unattended installations which do not preseed
grub-installer/bootdev now fail to install unattended. This thus
reopens #666974, LP#1012629.
* Instead check if grub-installer/bootdev was seen, and only then query
for it's value. Also do so, ahead of the loop that processes
only_debian and with_other_os, such that grub-installer/bootdev takes
precedence. Closes: #666974. LP: #1012629.
* Jenkins which regressed with previous upload, are now back to normal.
-- Dimitri John Ledkov <xnox@ubuntu.com> Fri, 28 Feb 2014 13:41:56 +0000
grub-installer (1.92) unstable; urgency=medium
* Adapt patch from Guilhem Moulin to always honor
grub-installer/bootdev, when it was preseeded, instead of insisting on
automatic detection which may lead to unpredictable results (e.g. use
a different device, or fail unattended installation). Closes:
#666974. LP: #1012629.
-- Dimitri John Ledkov <xnox@ubuntu.com> Tue, 25 Feb 2014 14:08:07 +0000
grub-installer (1.91) unstable; urgency=low
[ Updated translations ]
* Bosnian (bs.po) by Amila Valjevčić
* Hungarian (hu.po) by Judit Gyimesi
-- Christian Perrier <bubulle@debian.org> Sat, 14 Dec 2013 18:56:23 +0100
grub-installer (1.90) unstable; urgency=low
[ Updated translations ]
* Turkish (tr.po) by Mert Dirik
* Ukrainian (uk.po) by Yuri Chornoivan
-- Christian Perrier <bubulle@debian.org> Sat, 09 Nov 2013 16:03:05 +0100
grub-installer (1.89) unstable; urgency=low
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Sat, 07 Sep 2013 07:35:21 +0200
grub-installer (1.88) unstable; urgency=low
[ Updated translations ]
* Tajik (tg.po) by Victor Ibragimov
-- Christian Perrier <bubulle@debian.org> Fri, 16 Aug 2013 12:24:39 +0200
grub-installer (1.87) unstable; urgency=low
[ Wouter Verhelst ]
* Remove $SELF from uploaders
[ Dmitrijs Ledkovs ]
* Set debian source format to '3.0 (native)'.
* Bump debhelper compat level to 9.
* Set Vcs-* to canonical format.
* Remove obsolete DM-Upload-allowed field.
-- Christian Perrier <bubulle@debian.org> Sat, 13 Jul 2013 12:15:52 +0200
grub-installer (1.86) unstable; urgency=low
[ Vincent McIntyre ]
* Support menu selection of GRUB boot disk. Closes: #706112
-- Cyril Brulebois <kibi@debian.org> Mon, 29 Apr 2013 13:53:27 +0200
grub-installer (1.85) unstable; urgency=low
[ Steven Chamberlain ]
* Revert workaround for #681227, which was actually not a valid bug.
Closes: #696903, #696942 (regressions introduced by said workaround)
-- Julien Cristau <jcristau@debian.org> Thu, 31 Jan 2013 19:54:06 +0100
grub-installer (1.84) unstable; urgency=low
* Add workaround for #681227. Won't mark it as closed, since I didn't
find the root cause, but with this at least we can downgrade the
severity.
* Apply patch from Arno Töll to fix / on ZFS where /boot isn't.
Closes: #651720.
* Add $SELF to uploaders
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
-- Wouter Verhelst <wouter@debian.org> Sun, 16 Dec 2012 17:28:47 +0100
grub-installer (1.83) unstable; urgency=low
[ Milan Kupcevic ]
* Allow grub installation on PowerPC machines if /boot/grub partition
is present. Closes: #664128
* Allow grub installation on IBM Power machines. Closes: #691264
-- Christian Perrier <bubulle@debian.org> Sat, 27 Oct 2012 08:07:35 +0200
grub-installer (1.82) unstable; urgency=low
[ Updated translations ]
* Malayalam (ml.po) by Hrishikesh K B
-- Christian Perrier <bubulle@debian.org> Sat, 20 Oct 2012 16:55:53 +0200
grub-installer (1.81) unstable; urgency=low
[ Updated translations ]
* Asturian (ast.po) by ivarela
* Galician (gl.po) by Jorge Barreiro
* Ukrainian (uk.po) by Yuri Chornoivan
-- Christian Perrier <bubulle@debian.org> Wed, 17 Oct 2012 18:59:27 +0200
grub-installer (1.80) unstable; urgency=low
[ Updated translations ]
* Translations of the debconf template added in 1.79 copied
from nobootloader for all languages.
-- Christian Perrier <bubulle@debian.org> Sun, 30 Sep 2012 08:35:59 +0200
grub-installer (1.79) unstable; urgency=low
[ Colin Watson ]
* Don't try to use local outside a function.
[ Steve McIntyre ]
* Allow grub for amd64/efi and i386/efi, installing grub-efi instead of
grub-pc.
* Make sure that we have /sys and /proc mounted in /target in the
postinst, so that efibootmgr will work ok.
* Add myself to Uploaders
-- Steve McIntyre <93sam@debian.org> Fri, 21 Sep 2012 21:10:46 +0100
grub-installer (1.78) unstable; urgency=low
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Sat, 25 Aug 2012 08:33:09 +0200
grub-installer (1.77) unstable; urgency=low
[ Cyril Brulebois ]
* Apply patch from Mike Miller to fix the syntax error in the
linprocfs/kFreeBSD code (Closes: #683867). Many thanks for the
tested patch!
[ Christian Perrier ]
* Add myself to Uploaders
-- Christian Perrier <bubulle@debian.org> Sun, 05 Aug 2012 10:59:40 +0200
grub-installer (1.76) unstable; urgency=low
[ Joey Hess ]
* Fix /proc mounting code to use linprocfs on kFreeBSD. Closes: #613430
* Remove code that relies on target fstab containing /proc, which it no
longer does. Closes: #637684
[ Updated translations ]
* Irish (ga.po) by Kevin Patrick Scannell
-- Julien Cristau <jcristau@debian.org> Fri, 03 Aug 2012 09:43:34 +0200
grub-installer (1.75) unstable; urgency=high
* Team upload.
* Make sure /proc is mounted in $ROOT (usually: /target) so that grub
can find all needed bits, like RAID and LVM stuff through /proc/devices
(Closes: #662086).
-- Cyril Brulebois <kibi@debian.org> Wed, 11 Jul 2012 15:28:45 +0200
grub-installer (1.74) unstable; urgency=low
* Team upload
[ Updated translations ]
* Croatian (hr.po) by Tomislav Krznar
-- Christian Perrier <bubulle@debian.org> Wed, 20 Jun 2012 00:41:26 +0200
grub-installer (1.73) unstable; urgency=low
* Team upload
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
-- Christian Perrier <bubulle@debian.org> Mon, 18 Jun 2012 18:45:34 +0200
grub-installer (1.72) unstable; urgency=low
* Team upload
[ Updated translations ]
* Galician (gl.po) by Jorge Barreiro
-- Christian Perrier <bubulle@debian.org> Sun, 17 Jun 2012 11:25:29 +0200
grub-installer (1.71) unstable; urgency=low
* Team upload
* Replace XC-package-Type by Package-Type
[ Jeremie Koenig ]
* Work around the unavailability of /proc/mounts on Hurd.
[ Updated translations ]
* Tibetan (bo.po) by Tennom
* Welsh (cy.po) by Dafydd Tomos
* Danish (da.po) by Joe Hansen
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Timo Jyrinki
* Galician (gl.po) by Jorge Barreiro
* Hungarian (hu.po) by SZERVÁC Attila
* Icelandic (is.po) by Sveinn í Felli
* Lao (lo.po) by Anousak Souphavanh
* Lithuanian (lt.po) by Rimas Kudelis
* Latvian (lv.po) by Rūdolfs Mazurs
* Macedonian (mk.po) by Arangel Angov
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Slovenian (sl.po) by Vanja Cvelbar
* Vietnamese (vi.po) by Hai-Nam Nguyen
* Traditional Chinese (zh_TW.po) by Yao Wei (魏銘廷)
-- Christian Perrier <bubulle@debian.org> Fri, 15 Jun 2012 19:04:26 +0200
grub-installer (1.70) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama Khayat
* Asturian (ast.po) by Mikel González
* Bulgarian (bg.po) by Damyan Ivanov
* Bengali (bn.po) by Ayesha Akhtar
* Catalan (ca.po) by Jordi Mallach
* Danish (da.po) by Joe Hansen
* Greek (el.po) by galaxico
* Estonian (et.po) by Mattias Põldaru
* Indonesian (id.po) by Mahyuddin Susanto
* Icelandic (is.po) by Sveinn í Felli
* Italian (it.po) by Milo Casagrande
* Khmer (km.po) by Khoem Sokhem
* Kannada (kn.po) by Prabodh C P
* Norwegian Bokmal (nb.po) by Hans Fredrik Nordhaug
* Polish (pl.po) by Marcin Owsiany
* Romanian (ro.po) by Ioan Eugen Stan
* Serbian (sr.po) by Karolina Kalic
* Turkish (tr.po) by Mert Dirik
-- Otavio Salvador <otavio@debian.org> Thu, 15 Mar 2012 14:44:37 -0300
grub-installer (1.69) unstable; urgency=low
[ Joey Hess ]
* Simplify grub package selection code.
* Don't allow using GRUB legacy when booting from btrfs.
[ Updated translations ]
* Arabic (ar.po) by Ossama Khayat
* Bosnian (bs.po) by Armin Besirovic
* Dzongkha (dz.po) by Jurmey Rabgay
* Persian (fa.po) by Behrad Eslamifar
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Kumar Appaiah
* Khmer (km.po) by Chan Sambathratanak
* Kannada (kn.po) by vignesh prabhu
* Marathi (mr.po) by sampada
* Polish (pl.po) by Marcin Owsiany
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Martin Bagge / brother
* Telugu (te.po) by Arjuna Rao Chavala
-- Otavio Salvador <otavio@debian.org> Sat, 19 Nov 2011 16:33:12 -0200
grub-installer (1.68) unstable; urgency=low
[ Matt Kraai ]
* Write boot.cfg to /boot if using a separate /boot partition (closes:
#637792).
[ Colin Watson ]
* Restore the ability to choose to install GRUB Legacy by preseeding
(grub-installer/grub2_instead_of_grub_legacy=false), removed in 1.60 as
a side-effect of removing a warning message. This is still useful e.g.
when installing inside Xen.
[ Updated translations ]
* Belarusian (be.po) by Viktar Siarheichyk
* Bulgarian (bg.po) by Damyan Ivanov
* Bosnian (bs.po) by Armin Besirovic
* German (de.po) by Holger Wansing
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino
* Hindi (hi.po) by Kumar Appaiah
* Italian (it.po) by Milo Casagrande
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Changwoo Ryu
* Dutch (nl.po) by Jeroen Schot
* Panjabi (pa.po) by A S Alam
* Polish (pl.po) by Marcin Owsiany
* Portuguese (pt.po) by Miguel Figueiredo
* Romanian (ro.po) by Ioan Eugen Stan
* Russian (ru.po) by Yuri Kozlov
* Sinhala (si.po) by Danishka Navin
* Tamil (ta.po) by Dr.T.Vasudevan
* 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
-- Colin Watson <cjwatson@debian.org> Fri, 23 Sep 2011 10:19:09 +0100
grub-installer (1.67) unstable; urgency=low
* Team upload
[ Updated translations ]
* Czech (cs.po) by Miroslav Kure
* Basque (eu.po)
* French (fr.po) by Christian Perrier
-- Christian Perrier <bubulle@debian.org> Fri, 05 Aug 2011 09:49:45 +0200
grub-installer (1.66) unstable; urgency=low
[ Colin Watson ]
* Update grub-installer/bootdev text to avoid GRUB device naming that
changed between GRUB Legacy and GRUB 2, and to use libata-style device
naming since that is more accurate for most people (closes: #576309).
* Unless grub-installer/make_active is preseeded to false, mark the
partition to which GRUB is being installed as bootable, or failing that
the first available primary partition on the disk to which GRUB is being
installed (closes: #635968).
[ Otavio Salvador ]
* debian/control: build-depends on libparted-dev
[ Updated translations ]
* Basque (eu.po)
* Hebrew (he.po) by Lior Kaplan
* Macedonian (mk.po) by Arangel Angov
* Sinhala (si.po) by Danishka Navin
-- Otavio Salvador <otavio@debian.org> Sun, 31 Jul 2011 01:42:48 +0200
grub-installer (1.65) unstable; urgency=low
* Add mipsel/loongson-2f support, covering the Lemote YeeLoong (closes:
#622704).
-- Colin Watson <cjwatson@debian.org> Fri, 03 Jun 2011 23:13:40 +0100
grub-installer (1.64) unstable; urgency=low
* Ensure that /boot/zfs exists in the target before copying zpool.cache to
it.
* Purge grub-pc-bin as well as grub-pc if GRUB Legacy is to be used,
anticipating changes to the grub2 source package.
[ Updated translations ]
* Asturian (ast.po) by MAAC
* Italian (it.po) by Milo Casagrande
-- Colin Watson <cjwatson@debian.org> Mon, 16 May 2011 23:53:15 +0100
grub-installer (1.63) unstable; urgency=low
* Team Upload
[ Samuel Thibault ]
* grub-installer: Handle Mach serial device name.
[ Updated translations ]
* Belarusian (be.po) by Pavel Piatruk
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* German (de.po) by Holger Wansing
* Esperanto (eo.po) by Felipe Castro
* Estonian (et.po) by Mattias Põldaru
* Georgian (ka.po) by Aiet Kolkhi
* Korean (ko.po) by Changwoo Ryu
* Marathi (mr.po) by sampada
* Nepali (ne.po)
* Romanian (ro.po) by Eddy Petrișor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Uyghur (ug.po) by Sahran
* Simplified Chinese (zh_CN.po) by YunQiang Su
-- Christian Perrier <bubulle@debian.org> Sun, 24 Apr 2011 09:26:39 +0200
grub-installer (1.62) unstable; urgency=low
* Team upload
* Upload to resync translations
-- Christian Perrier <bubulle@debian.org> Thu, 17 Feb 2011 20:24:57 +0100
grub-installer (1.61) unstable; urgency=low
[ Jeremie Koenig ]
* Add the Hurd hard disk devices to the $disc_offered_devfs regexp and
switch cases.
* Add grub_package="grub-pc" on Hurd, and add a default case for the
sake of future porters.
[ Christian Perrier ]
* Make "grub-installer/grub_not_mature_on_this_platform" translatable
[ Colin Watson ]
* If the first disk has neither a partition table nor a filesystem, don't
try to install to it as grub-setup will refuse (LP: #711830).
[ Otavio Salvador ]
* Set debconf title to avoid reusing a previous one.
[ Updated translations ]
* Telugu (te.po) by Arjuna Rao Chavala
-- Otavio Salvador <otavio@debian.org> Mon, 14 Feb 2011 09:51:11 -0200
grub-installer (1.60) unstable; urgency=low
* Drop warning about GRUB 2 being experimental. Closes: #610365.
-- Otavio Salvador <otavio@debian.org> Mon, 17 Jan 2011 21:41:47 -0200
grub-installer (1.59) unstable; urgency=low
[ Julien Cristau ]
* Amend changes from 1.57: call device_to_disk on the device mounted as
cdrom. Booting from a disk or usb device, that may end up being
/dev/sda1 instead of /dev/sda, defeating the "we shouldn't install GRUB to
the installation media" test. In addition, avoid installing GRUB to the
device mounted on /hd-media. Closes: #605562.
[ Updated translations ]
* Northern Sami (se.po) by Børre Gaup
-- Otavio Salvador <otavio@ossystems.com.br> Sat, 15 Jan 2011 16:49:51 -0200
grub-installer (1.58) unstable; urgency=low
[ Christian Perrier ]
* Change text of examples in debconf templates to fit the new
partition numbering scheme in GRUB 2. Closes: #581687
[ Updated translations ]
* Hindi (hi.po) by Kumar Appaiah
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Central Khmer (km.po) by Khoem Sokhem
* Lao (lo.po) by Anousak Souphavanh
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel
* Northern Sami (se.po) by Børre Gaup
* Slovak (sk.po) by Ivan Masár
* Telugu (te.po) by Arjuna Rao Chavala
-- Otavio Salvador <otavio@debian.org> Fri, 24 Dec 2010 19:01:42 -0200
grub-installer (1.57) unstable; urgency=low
* Merge changes from Ubuntu by Evan Dandrea and myself:
- Set a sensible default boot device, so that we aren't installing GRUB
to installation media which may be removed later. The disk containing
/cdrom is very unlikely to be a sensible default. If we had to fall
back to (hd0), then we can't tell exactly which disk that is, but if
/cdrom seems to be a USB stick then (hd0) may not be safe. If we hit
either of those checks, then try the disk containing /boot instead
(closes: #568529).
[ Updated translations ]
* Sinhala (si.po) by Danishka Navin
* Slovenian (sl.po) by Vanja Cvelbar
-- Colin Watson <cjwatson@debian.org> Fri, 19 Nov 2010 15:27:33 +0000
grub-installer (1.56) unstable; urgency=low
[ Otavio Salvador ]
* Use '$grub_version' instead of '$grub_package' to choose the chain
writting code.
[ Colin Watson ]
* Run update-grub within in-target so that /target/proc and /target/sys
are mounted, fixing OS detection (closes: #560027, #567980, #593460).
[ Robert Millan ]
* ZFS support (Closes: #595152).
[ Updated translations ]
* Catalan (ca.po) by Jordi Mallach
* Danish (da.po) by Anders Jenbo
* Persian (fa.po) by Behrad Eslamifar
* Icelandic (is.po) by Sveinn í Felli
-- Robert Millan <rmh@debian.org> Wed, 10 Nov 2010 01:04:15 +0100
grub-installer (1.55) unstable; urgency=low
[ Aurelien Jarno ]
* Allow booting on ext2fs or xfs partition using grub-pc (for
GNU/kFreeBSD).
[ Updated translations ]
* Asturian (ast.po) by maacub
* Bulgarian (bg.po) by Damyan Ivanov
* Danish (da.po) by Jacob Sparre Andersen
* Persian (fa.po) by Behrad Eslamifar
* Serbian (sr.po) by Karolina Kalic
-- Aurelien Jarno <aurel32@debian.org> Mon, 23 Aug 2010 00:30:49 +0200
grub-installer (1.54) unstable; urgency=low
* Only set postinst_hook and postrm_hook in /etc/kernel-img.conf if
/etc/kernel/postinst.d/zz-update-grub does not exist.
[ Updated translations ]
* Persian (fa.po) by Ebrahim Byagowi
* Finnish (fi.po) by Esko Arajärvi
* Kurdish (ku.po) by Erdal Ronahi
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Serbian (sr.po) by Janos Guljas
* Serbian Latin (sr@latin.po) by Karolina Kalic
-- Colin Watson <cjwatson@debian.org> Wed, 04 Aug 2010 06:59:23 +0100
grub-installer (1.53) unstable; urgency=low
[ Updated translations ]
* Kurdish (ku.po) by Erdal Ronahi
-- Christian Perrier <bubulle@debian.org> Sun, 11 Jul 2010 18:20:11 +0200
grub-installer (1.52) unstable; urgency=low
* Merge from Ubuntu:
- Resolve symlinks in default boot device.
[ Updated translations ]
* Belarusian (be.po) by Viktar Siarheichyk
* Kazakh (kk.po) by Baurzhan Muftakhidinov
* Macedonian (mk.po) by Arangel Angov
* Ukrainian (uk.po) by Borys Yanovych
-- Colin Watson <cjwatson@debian.org> Thu, 08 Jul 2010 13:17:03 +0100
grub-installer (1.51) unstable; urgency=low
* Merge from Ubuntu:
- Use grub-probe to convert device names rather than relying on
device.map.
- Use an appropriate OS device name rather than (hd0) if possible.
- Convert device names to by-id form before preseeding
grub-pc/install_devices. This is important now that grub-pc migrates
to this on upgrades to 1.98+20100702-1, but not after that.
- Preseed grub-pc/install_devices_empty while installing grub-pc, since
we deliberately defer calling grub-install until a later point.
[ Updated translations ]
* Asturian (ast.po) by astur
* Danish (da.po) by Jacob Sparre Andersen
* German (de.po) by Holger Wansing
* Persian (fa.po) by acathur
* French (fr.po) by Christian Perrier
* Hebrew (he.po) by Omer Zak
* Central Khmer (km.po) by Khoem Sokhem
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Latvian (lv.po) by Aigars Mahinovs
* Romanian (ro.po) by ioan-eugen stan
* Slovenian (sl.po) by Vanja Cvelbar
-- Colin Watson <cjwatson@debian.org> Fri, 02 Jul 2010 23:10:54 +0100
grub-installer (1.50) unstable; urgency=low
[ Frans Pop ]
* Drop support for the discontinued lpia architecture.
[ Colin Watson ]
* Fix serial console handling for grub2.
* Fix a hardcoded use of /target.
[ Frans Pop ]
* Don't install Recommends with grub-legacy to avoid pulling in os-prober
(through grub-common) as D-I takes care of creating entries for other
operating systems.
* Don't explicitly install os-prober with grub-pc. Leave it to be pulled
in automatically based on the global setting for installing Recommends.
* Fix incorrect call to dpkg --compare-versions when grub-legacy is installed.
[ Updated translations ]
* Asturian (ast.po) by astur
* Belarusian (be.po) by Pavel Piatruk
* Bengali (bn.po) by Israt Jahan
* German (de.po) by Holger Wansing
* Italian (it.po) by Milo Casagrande
* Slovenian (sl.po) by Vanja Cvelbar
* Simplified Chinese (zh_CN.po) by 苏运强
-- Otavio Salvador <otavio@debian.org> Mon, 22 Feb 2010 00:04:48 -0300
grub-installer (1.49) unstable; urgency=low
* Merge from Ubuntu:
- Preseed grub-pc/install_devices based on grub-installer/bootdev.
(Closes: 556738)
-- Felix Zielcke <fzielcke@z-51.de> Mon, 23 Nov 2009 23:44:19 +0100
grub-installer (1.48) unstable; urgency=low
[ Felix Zielcke ]
* Fix the generated GNU/Hurd menuentry in case os-prober doestn't get
installed. Patch by Samuel Thibault <sthibault@debian.org>
(Closes: #552409)
[ Frans Pop ]
* Make <back up> work from legacy and maturity dialogs.
[ Colin Watson ]
* Check for $ROOT/etc/mtab in update_mtab, not /etc/mtab (LP: #484832).
* Use GRUB Legacy on multipath disks for now (works around #442382 et al).
[ Updated translations ]
* Galician (gl.po) by Marce Villarino
-- Colin Watson <cjwatson@debian.org> Mon, 23 Nov 2009 21:12:00 +0000
grub-installer (1.47) unstable; urgency=low
[ Colin Watson ]
* By request of grub2's Debian maintainers, pass --force to grub-install
when using GRUB 2, in order to override the warning about using
blocklists in the event that the user selected an installation location
that requires them.
* Fix typo in fallback case when computing $disc_offered_devfs.
-- Felix Zielcke <fzielcke@z-51.de> Fri, 16 Oct 2009 21:37:43 +0200
grub-installer (1.46) unstable; urgency=low
[ Colin Watson ]
* grub_write_divider is specific to GRUB Legacy; don't call it for GRUB 2.
[ Felix Zielcke ]
* Merge from Ubuntu:
- Explicitly install os-prober when using GRUB 2, since it does a better
job than the otheros script.
-- Felix Zielcke <fzielcke@z-51.de> Tue, 29 Sep 2009 19:24:39 +0200
grub-installer (1.45) unstable; urgency=low
[ Colin Watson ]
* Fix some hardcoded uses of /target.
[ Felix Zielcke ]
* Install GRUB 2 by default.
-- Felix Zielcke <fzielcke@z-51.de> Mon, 21 Sep 2009 23:21:05 +0200
grub-installer (1.44) unstable; urgency=low
* Try installing `grub-legacy' first before `grub' in case GRUB Legacy
has to be installed.
* Remove Robert Millan from Uploaders with his permission.
-- Felix Zielcke <fzielcke@z-51.de> Mon, 21 Sep 2009 11:20:05 +0200
grub-installer (1.43) unstable; urgency=low
[ Felix Zielcke ]
* Also purge grub-legacy when switching from grub-pc to grub.
[ Colin Watson ]
* Cope with Windows 7 in os-prober output.
[ Updated translations ]
* Estonian (et.po) by Mattias Põldaru
-- Colin Watson <cjwatson@debian.org> Mon, 14 Sep 2009 14:02:40 +0100
grub-installer (1.42) unstable; urgency=low
[ Felix Zielcke ]
* Check that /etc/kernel-img.conf exists before running sed over it.
[ Colin Watson ]
* Don't create /etc/grub.d/30_otheros if os-prober is already installed
for grub2 to use (LP: #419044).
* Pass user parameters to grub2 (closes: #470894).
* Add myself to Uploaders.
[ Updated translations ]
* Korean (ko.po) by Changwoo Ryu
-- Colin Watson <cjwatson@debian.org> Tue, 01 Sep 2009 13:03:09 +0100
grub-installer (1.41) unstable; urgency=low
[ Colin Watson ]
* Merge from Ubuntu:
- Add support for Ubuntu's lpia architecture ("Low-Power Intel
Architecture").
* Upgrade to debhelper v7.
[ Felix Zielcke ]
* Add support for /dev/rs/c[0-9]d[0-9] style devices.
[ Luca Favatella ]
* Add support for /dev/ad[0-9] and /dev/da[0-9] style devices (for
GNU/kFreeBSD).
* Use grub-pc on GNU/kFreeBSD.
[ Aurelien Jarno ]
* Use grub-pc on UFS root filesystem, and don't display the not-mature
debconf warning in that case.
* Don't try to update /target/etc/mtab if it is already a symlink.
[ Updated translations ]
* Asturian (ast.po) by Marcos Antonio Alvarez Costales
* Esperanto (eo.po) by Felipe Castro
* Estonian (et.po) by Mattias Põldaru
* Italian (it.po) by Milo Casagrande
-- Aurelien Jarno <aurel32@debian.org> Sat, 22 Aug 2009 22:32:20 +0200
grub-installer (1.40) unstable; urgency=low
* Don't add map/drivemap commands for Windows Vista/7. It breaks
Windows 7 (LP: #402154).
-- Felix Zielcke <fzielcke@z-51.de> Fri, 24 Jul 2009 17:40:08 +0200
grub-installer (1.39) unstable; urgency=low
* Merge from Ubuntu:
- Use rootnoverify rather than root when chain-loading Microsoft
operating systems using GRUB Legacy, since we may not be able to mount
the partition (LP: #10661). From my reading of its code, this doesn't
seem to be necessary with GRUB 2.
* Extend rescue mode plugin to cope with GRUB 2.
* Allow /boot on LVM; this forces use of GRUB 2 (LP: #393432).
* Adjust partition offsets for GRUB 2. Moving to grub-probe would probably
be better in the long run, but this works for now. See #473401, #502446.
* Use search --fs-uuid rather than --fs_uuid in otheros.sh (LP: #396587).
-- Colin Watson <cjwatson@debian.org> Wed, 08 Jul 2009 15:30:14 +0100
grub-installer (1.38) unstable; urgency=low
[ Colin Watson ]
* Make findfs use the last of any mounts found, in case there's more than
one due to pilot error in the partitioner (LP: #289101).
* Use grub-ieee1275 on powerpc, not grub-of which no longer exists.
[ Max Vozeler ]
* Use grub2 when ext4 is chosen (closes: #529363).
[ Felix Zielcke ]
* Change the debhelper compat level to 7 and bump the build
dependency.
* Replace deprecated `dh_clean -k' with `dh_prep'.
* Remove the lintian overrides, they're no longer needed.
* Use UUIDs in the grub2 generated menuentrys. (Closes: #473401)
* Add drivemap in the grub2 generated menuentry for DOS/Windows in
case a recent grub2 gets installed.
* Don't pass -y to update-grub. grub-legacy in lenny just prints out a
warning.
[ Otavio Salvador ]
* Add Felix Zielcke in uploads field and set DM-Upload-allowed to
allow him to upload.
-- Otavio Salvador <otavio@debian.org> Fri, 12 Jun 2009 16:04:27 -0300
grub-installer (1.37) unstable; urgency=low
[ Colin Watson ]
* Merge from Ubuntu:
- Check dmraid's exit code rather than parsing its output.
- cciss and ida logical drive numbers may go up to 15, not just 9.
- Only check for the boot partition being on dmraid if the user allowed
us to activate dmraid, to cope with cases where dmraid is misdetected
(LP: #346001).
* Don't pass the -y option to update-grub if installing grub2 (closes:
#526089).
[ Frans Pop ]
* Remove myself as uploader.
[ Updated translations ]
* Bengali (bn.po) by Md. Rezwan Shahid
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Estonian (et.po) by Mattias Põldaru
* French (fr.po) by Christian Perrier
* Galician (gl.po) by marce villarino
* Hindi (hi.po) by Kumar Appaiah
* Italian (it.po) by Milo Casagrande
* Kazakh (kk.po) by Dauren Sarsenov
* Malayalam (ml.po) by Praveen Arimbrathodiyil
* Norwegian Bokmal (nb.po) by Hans Fredrik Nordhaug
* Slovak (sk.po) by Ivan Masár
* Tagalog (tl.po) by Eric Pareja
* Vietnamese (vi.po) by Clytie Siddall
-- Colin Watson <cjwatson@debian.org> Wed, 29 Apr 2009 13:22:34 +0100
grub-installer (1.36) unstable; urgency=low
* Allow to install grub when /boot is on XFS. Since version 0.97-47lenny2
grub supports XFS so it can be installed without hanging grub-installer.
-- Frans Pop <fjp@debian.org> Fri, 23 Jan 2009 02:59:03 +0100
grub-installer (1.35) unstable; urgency=low
* Add support for MMC/SD card devices (mmcblkX).
-- Frans Pop <fjp@debian.org> Mon, 29 Sep 2008 20:31:10 +0200
grub-installer (1.34) unstable; urgency=low
[ Frans Pop ]
* Fix up the grub root (groot) in menu.lst for dmraid if it is incorrect.
[ Updated translations ]
* Belarusian (be.po) by Pavel Piatruk
* Bengali (bn.po) by Mahay Alam Khan (মাহে আলম খান)
* Bosnian (bs.po) by Armin Besirovic
* Catalan (ca.po) by Jordi Mallach
* Welsh (cy.po) by Jonathan Price
* Danish (da.po)
* Greek, Modern (1453-) (el.po)
* Esperanto (eo.po) by Felipe Castro
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* French (fr.po) by Christian Perrier
* Hebrew (he.po) by Omer Zak
* Hindi (hi.po) by Kumar Appaiah
* Croatian (hr.po) by Josip Rodin
* Italian (it.po) by Milo Casagrande
* Georgian (ka.po) by Aiet Kolkhi
* Central Khmer (km.po) by KHOEM Sokhem
* Korean (ko.po) by Changwoo Ryu
* Kurdish (ku.po) by Amed Çeko Jiyan
* Latvian (lv.po) by Aigars Mahinovs
* Macedonian (mk.po) by Arangel Angov
* Marathi (mr.po) by Sampada
* Nepali (ne.po) by Shiva Prasad Pokharel
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Romanian (ro.po) by Eddy Petrișor
* Slovenian (sl.po) by Vanja Cvelbar
* Serbian (sr.po) by Veselin Mijušković
* Swedish (sv.po) by Daniel Nylander
* Tagalog (tl.po) by Eric Pareja
* Turkish (tr.po) by Mert Dirik
* Ukrainian (uk.po) by Євгеній Мещеряков
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Simplified Chinese (zh_CN.po) by Deng Xiyue
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Sun, 21 Sep 2008 21:47:51 -0300
grub-installer (1.32) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* German (de.po) by Jens Seidel
* Dzongkha (dz.po) by Jurmey Rabgay(Bongop) (DIT,BHUTAN)
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Iñaki Larrañaga Murgoitio
* Hebrew (he.po) by Lior Kaplan
* Indonesian (id.po) by Arief S Fitrianto
* Marathi (mr.po) by Sampada
* Norwegian Bokmal (nb.po) by Hans Fredrik Nordhaug
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Punjabi (Gurmukhi) (pa.po) by Amanpreet Singh Alam
* Tamil (ta.po) by Dr.T.Vasudevan
* Vietnamese (vi.po) by Clytie Siddall
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Thu, 08 May 2008 00:00:05 -0300
grub-installer (1.31) unstable; urgency=low
[ Colin Watson ]
* Run grub in the chroot for password encryption.
* Make grub-installer executable again.
[ Frans Pop ]
* Apply patch from Ian Campbell to add support for Xen virtual disks.
Closes: #456784.
[ James Westby ]
* Confirm the GRUB password after entry (LP: #42019, closes: #321109).
Based on earlier patches by Julian Graham and Frans Pop.
Note that grub-installer/password-again must now be preseeded in addition
to grub-installer/password, and that grub-installer/password-crypted now
takes an MD5-crypted password rather than a boolean.
[ Soren Hansen ]
* Teach grub-installer about virtio devices (/dev/vd*).
[ Updated translations ]
* Amharic (am.po) by tegegne tefera
* Arabic (ar.po) by Ossama M. Khayat
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* 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 Esko Arajärvi
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Gujarati (gu.po) by Kartik Mistry
* Hebrew (he.po) by Lior Kaplan
* Hungarian (hu.po) by SZERVÁC Attila
* Japanese (ja.po) by Kenshi Muto
* 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|എ
* Marathi (mr.po)
* Dutch (nl.po) by Frans Pop
* Panjabi (pa.po) by Amanpreet Singh Brar
* 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 Eddy Petrișor
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
* 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> Thu, 01 May 2008 10:34:23 +0200
grub-installer (1.30) unstable; urgency=low
[ Frans Pop ]
* Correct off-by-one error in SATA RAID sanity checks. Thanks Guido Günther.
* Add the "quiet" boot parameter only to 'defoptions' and not to 'kopt' so
that it is not included for "single user" mode. The same could be done for
other parameters.
[ Guido Guenther ]
* Add multipath support modelled after dmraid. Closes: #468832.
[ Max Vozeler ]
* Fix serial console setup for console= options that include either a
word size != 8 or a flow control parameter. Closes: #470951
[ Updated translations ]
* Amharic (am.po) by Tegegne Tefera
* Arabic (ar.po) by Ossama M. Khayat
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* Esperanto (eo.po) by Serge Leblanc
* 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
* Indonesian (id.po) by Arief S Fitrianto
* Japanese (ja.po) by Kenshi Muto
* Korean (ko.po) by Changwoo Ryu
* Dutch (nl.po) by Frans Pop
* Panjabi (pa.po) by Amanpreet Singh 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
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Ivan Masár
* Swedish (sv.po) by Daniel Nylander
* Thai (th.po) by Theppitak Karoonboonyanan
-- Frans Pop <fjp@debian.org> Wed, 19 Mar 2008 20:59:41 +0100
grub-installer (1.29) unstable; urgency=low
[ Luke Yelavich ]
* Pass the correct number of arguments to db_input for
grub-installer/sataraid-error.
[ Updated translations ]
* Finnish (fi.po) by Esko Arajärvi
* Hindi (hi.po) by Kumar Appaiah
* Indonesian (id.po) by Arief S Fitrianto
* Central Khmer (km.po) by Khoem Sokhem
* Nepali (ne.po) by Shyam Krishna Bal
* Panjabi (pa.po) by Amanpreet Singh Alam
* Polish (pl.po) by Bartosz Fenski
* Slovenian (sl.po) by Matej Kovacic
* Turkish (tr.po) by Recai Oktaş
* Ukrainian (uk.po)
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Fri, 15 Feb 2008 10:18:11 -0200
grub-installer (1.28) unstable; urgency=low
[ Colin Watson ]
* Fix some hardcoding of /target.
[ Robert Millan ]
* Replace update-grub with update_grub in a pair of places.
* Stop aborting on reiserfs/gpt (supported now).
* Change menu item from 7300 to 7400 so that for PowerPC grub is offered
after the yaboot bootloader; for x86 it will still be the default as
lilo and elilo already have higher numbers. Closes: #463765.
* Set grub-installer as uninstallable for PowerPC subarchitectures other
than chrp_pegasos.
[ Updated translations ]
* Amharic (am.po) by tegegne tefera
* Bulgarian (bg.po) by Damyan Ivanov
* Dzongkha (dz.po) by Jurmey Rabgay
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Hungarian (hu.po) by SZERVÁC Attila
* Korean (ko.po) by Changwoo Ryu
* Kurdish (ku.po) by Amed Çeko Jiyan
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Latvian (lv.po) by Viesturs Zarins
* Malayalam (ml.po) by Praveen|പ്രവീണണ് A|എ
* Norwegian Bokmål (nb.po) by Hans Fredrik Nordhaug
* Panjabi (pa.po) by A S Alam
* Polish (pl.po) by Bartosz Fenski
* Slovak (sk.po) by Ivan Masár
-- Robert Millan <rmh@aybabtu.com> Mon, 4 Feb 2008 15:31:06 +0100
grub-installer (1.27) unstable; urgency=low
[ Romain Perier ]
* Password was sent in clear-text into menu.lst; use 'grub --batch'
with md5crypt alternative to correct it. Closes: #442443.
[ Otavio Salvador ]
* Add maintainer-script-lacks-debhelper-token to
source.lintian-overrides.
* Change grub-installer.install to avoid .svn files on rescue.d dir.
[ Updated translations ]
* Belarusian (be.po) by Hleb Rubanau
* Bulgarian (bg.po) by Damyan Ivanov
* Czech (cs.po) by Miroslav Kure
* German (de.po) by Jens Seidel
* Esperanto (eo.po) by Serge Leblanc
* Galician (gl.po) by Jacobo Tarrio
* Hebrew (he.po) by Lior Kaplan
* Korean (ko.po) by Sunjae Park
* Dutch (nl.po) by Bart Cornelis
* Norwegian Nynorsk (nn.po) by Håvard Korsvoll
* Polish (pl.po) by Bartosz Fenski
* Romanian (ro.po) by Eddy Petrișor
* Albanian (sq.po) by Elian Myftiu
* Tamil (ta.po) by Dr.T.Vasudevan
* Thai (th.po) by Theppitak Karoonboonyanan
-- Otavio Salvador <otavio@debian.org> Sat, 27 Oct 2007 11:58:04 -0200
grub-installer (1.26) unstable; urgency=low
[ Joey Hess ]
* If grub fails to install, display an error message, rather than letting
the user choose to continue running grub-install, which will then fail
strangely later.
* Substitute the name of grub/grub2 into the error message and progress bar
message.
[ Frans Pop ]
* Support multiple disks when devfs device names are used (see #432314).
[ Christian Perrier ]
* Fix the consistency of "Serial ATA RAID" vs. "SATA RAID"
[ Robert Millan ]
* Misc cleanup improvements that will make it easier for grub-installer to
be used on non-PC architectures.
* Add myself to Uploaders.
* Add initial support for powerpc. Only pegasos/efika are expected to
work at this point.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Bengali (bn.po) by Jamil Ahmed
* Catalan (ca.po) by Jordi Mallach
* Czech (cs.po) by Miroslav Kure
* German (de.po) by Jens Seidel
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* French (fr.po) by Christian Perrier
* Hebrew (he.po) by Lior Kaplan
* Hungarian (hu.po) by SZERVÁC Attila
* Italian (it.po) by Stefano Canepa
* Japanese (ja.po) by Kenshi Muto
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Nepali (ne.po) by Nabin Gautam
* Dutch (nl.po) by Frans Pop
* 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
* Russian (ru.po) by Yuri Kozlov
* Slovak (sk.po) by Peter Mann
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Dr.T.Vasudevan
* Thai (th.po) by Theppitak Karoonboonyanan
* Vietnamese (vi.po) by Clytie Siddall
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Robert Millan <rmh@aybabtu.com> Sun, 9 Sep 2007 16:28:41 +0200
grub-installer (1.25) unstable; urgency=low
[ Colin Watson ]
* Only purge the package from grub and grub2 that we aren't using, not both.
[ Robert Millan ]
* Switch to grub2 when using GPT. (Closes: #422370)
* When installing with GRUB 2, adjust otheros entry writing to the interface
provided by new update-grub. (Closes: #423393)
* When setting up a serial port with GRUB 2, adjust output to the interface
provided by new update-grub.
[ Frans Pop ]
* Fix incorrect detection of SATA RAID devices (dmraid) as LVM volumes.
* Add support for installing GRUB to a Serial ATA RAID disk. Currently this
is only possible by using a semi-manual procedure that executes commands
in the grub command environment (grub-install cannot be used).
The current implementation assumes that teh SATA RAID disk will be listed
as the first boot device in the BIOS.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* 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) by Tshewang Norbu
* 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
* Hebrew (he.po) by Lior Kaplan
* Hungarian (hu.po) by SZERVÁC Attila
* Japanese (ja.po) by Kenshi Muto
* Norwegian Bokmal (nb.po) by Bjørn Steensrud
* Dutch (nl.po) by Frans Pop
* Punjabi (Gurmukhi) (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Portuguese (pt.po) by Miguel Figueiredo
* Romanian (ro.po) by Eddy Petrișor
* Russian (ru.po) by Yuri Kozlov
* Albanian (sq.po) by Elian Myftiu
* Swedish (sv.po) by Daniel Nylander
* Tamil (ta.po) by Dr.T.Vasudevan
* Thai (th.po) by Theppitak Karoonboonyanan
* Tagalog (tl.po) by Eric Pareja
* Ukrainian (uk.po)
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Frans Pop <fjp@debian.org> Fri, 06 Jul 2007 00:08:48 +0200
grub-installer (1.24) unstable; urgency=low
* Fix syntax error in grub-installer script.
-- Frans Pop <fjp@debian.org> Thu, 12 Apr 2007 16:45:34 +0200
grub-installer (1.23) unstable; urgency=low
[ Colin Watson ]
* Drop dependency on dmidecode-udeb and rely on new archdetect support for
Intel Macs (closes: #413855). Requires libdebian-installer4-udeb 0.51.
[ Frans Pop ]
* Enable the option to select grub2 again.
* Improve code that sets serial console parameters. Closes: #416310.
Changes based on a patch by Alex Owen.
[ Joey Hess ]
* Multiply menu-item-numbers by 100
[ Updated translations ]
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
-- Joey Hess <joeyh@debian.org> Tue, 10 Apr 2007 14:47:50 -0400
grub-installer (1.22) unstable; urgency=low
[ Updated translations ]
* German (de.po) by Jens Seidel
* French (fr.po) by Christian Perrier
* Japanese (ja.po) by Kenshi Muto
* Malayalam (ml.po) by Praveen A
* Dutch (nl.po) by Bart Cornelis
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Frans Pop <fjp@debian.org> Tue, 27 Feb 2007 17:53:22 +0100
grub-installer (1.21) unstable; urgency=low
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Belarusian (be.po) by Pavel Piatruk
* Danish (da.po) by Claus Hindsgaul
* Hebrew (he.po) by Lior Kaplan
* Kurdish (ku.po) by Amed Çeko Jiyan
* Latvian (lv.po) by Aigars Mahinovs
* Malayalam (ml.po) by Praveen A
* Panjabi (pa.po) by A S Alam
* Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
* Romanian (ro.po) by Eddy Petrișor
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Matej Kovačič
-- Frans Pop <fjp@debian.org> Wed, 31 Jan 2007 17:43:58 +0100
grub-installer (1.20) unstable; urgency=low
* Fix serial console support in the grub configuration. Closes: #224641.
Thanks to Alex Owen for the patch and testing.
* Some syntax changes to remove the need for temporary files.
* Fix default for grub-installer/apt-install-failed template.
* Add myself as uploader.
[ Petter Reinholdtsen ]
* Remove myself as uploader.
[ Updated translations ]
* Bulgarian (bg.po) by Damyan Ivanov
* Catalan (ca.po) by Jordi Mallach
* Esperanto (eo.po) by Serge Leblanc
* Kurdish (ku.po) by rizoye-xerzi
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
* Panjabi (pa.po) by A S Alam
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
-- Frans Pop <fjp@debian.org> Thu, 30 Nov 2006 15:21:33 +0100
grub-installer (1.19) unstable; urgency=low
[ Otavio Salvador ]
* Remove Standards-Version field from control file.
* Add Lintian override for standards-version.
[ Frans Pop ]
* Split out functions to write the grub menu files from grub-installer as
it was getting too long and too complicated with support of both grub and
grub2. grub and grub2 now use separate functions.
* Disable the option to select grub2 for the Etch release as it was only
experimental.
[ Updated translations ]
* Belarusian (be.po) by Andrei Darashenka
* Esperanto (eo.po) by Serge Leblanc
* Estonian (et.po) by Siim Põder
* Basque (eu.po) by Piarres Beobide
* Galician (gl.po) by Jacobo Tarrio
* Hebrew (he.po) by Lior Kaplan
* Hindi (hi.po) by Nishant Sharma
* Croatian (hr.po) by Josip Rodin
* Italian (it.po) by Stefano Canepa
* Japanese (ja.po) by Kenshi Muto
* Kurdish (ku.po) by Erdal Ronahi
* Latvian (lv.po) by Aigars Mahinovs
* Malayalam (ml.po) by Praveen A
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
* Romanian (ro.po) by Eddy Petrișor
* Tamil (ta.po) by Damodharan Rajalingam
* Vietnamese (vi.po) by Clytie Siddall
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
-- Frans Pop <fjp@debian.org> Thu, 26 Oct 2006 17:07:04 +0200
grub-installer (1.18) unstable; urgency=low
[ Joey Hess ]
* Fix mistake in displaying failure message if grub-install run in rescue
mode fails.
[ Simon Huggins ]
* Allow installation to more than one disk if preseeding.
[ Otavio Salvador ]
* Apply patch from Robert Millan <rmh@aybabtu.com> to remove hardcoded
paths from grub-install and update-grub. Closes: #380351
* Apply patch from Robert Millan <rmh@aybabtu.com> to allow use of grub2
instead of grub legacy. Closes: 385180
[ 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) by Jurmey Rabgay
* 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
* Basque (eu.po) by Piarres Beobide
* Finnish (fi.po) by Tapio Lehtonen
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Gujarati (gu.po) by Kartik Mistry
* Hebrew (he.po) by Lior Kaplan
* Hungarian (hu.po) by SZERVÁC Attila
* Italian (it.po) by Giuseppe Sacco
* Japanese (ja.po) by Kenshi Muto
* Khmer (km.po) by Khoem Sokhem
* Korean (ko.po) by Sunjae park
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Macedonian (mk.po) by Georgi Stanojevski
* Norwegian Bokmål (nb.po) by Bjørn Steensrud
* Dutch (nl.po) by Bart Cornelis
* Panjabi (pa.po) by A S Alam
* Polish (pl.po) by Bartosz Fenski
* Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
* Portuguese (pt.po) by Miguel Figueiredo
* 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ş
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Vietnamese (vi.po) by Clytie Siddall
* Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
* Traditional Chinese (zh_TW.po) by Tetralet
-- Otavio Salvador <otavio@debian.org> Thu, 31 Aug 2006 19:10:57 -0300
grub-installer (1.17) unstable; urgency=low
[ Otavio Salvador ]
* Implemented solution discussed with Matthew Garrett
<mjg59@srcf.ucam.org> in IRC to detect if the boot was made by BIOS in
Apple Intel based machines and then allow installation using GRUB.
[ Updated translations ]
* Estonian (et.po) by Siim Põder
-- Frans Pop <fjp@debian.org> Wed, 21 Jun 2006 14:20:16 +0200
grub-installer (1.16) unstable; urgency=low
[ Colin Watson ]
* Don't fall over if installing to an XFS root filesystem in
noninteractive mode.
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Catalan (ca.po) by Jordi Mallach
* Esperanto (eo.po) by Serge Leblanc
* Georgian (ka.po) by Aiet Kolkhi
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Northern Sami (se.po) by Børre Gaup
-- Joey Hess <joeyh@debian.org> Wed, 7 Jun 2006 22:15:24 -0400
grub-installer (1.15) unstable; urgency=low
[ Colin Watson ]
* Disable grub-installer on Intel-based Macs.
[ Joey Hess ]
* Add kfreebsd to arch list. Closes: #363661
[ Frans Pop ]
* Remove blockquotes used with tr commands; new busybox no longer supports
them.
-- Joey Hess <joeyh@debian.org> Fri, 19 May 2006 13:31:58 -0400
grub-installer (1.14) unstable; urgency=low
* Make sure no .svn directories get included in the package.
[ Updated translations ]
* Spanish (es.po) by Javier Fernández-Sanguino Peña
-- Frans Pop <fjp@debian.org> Sat, 28 Jan 2006 17:13:42 +0100
grub-installer (1.13) unstable; urgency=low
[ Updated translations ]
* Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Basque (eu.po) by Piarres Beobide
* Lithuanian (lt.po) by Kęstutis Biliūnas
* Polish (pl.po) by Bartosz Fenski
* Romanian (ro.po) by Eddy Petrişor
* Slovenian (sl.po) by Jure Cuhalev
* Albanian (sq.po) by Elian Myftiu
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Vietnamese (vi.po) by Clytie Siddall
* Traditional Chinese (zh_TW.po) by Tetralet
-- Frans Pop <fjp@debian.org> Wed, 25 Jan 2006 12:38:06 +0100
grub-installer (1.12) unstable; urgency=low
[ Christian Perrier ]
* Shorten some hard-formatted lines for a better display
Closes: #286122
[ Colin Watson ]
* Move the bulk of the postinst to /usr/bin/grub-installer and
parameterise all its uses of /target. This makes life easier for
potential future users of grub-installer in contexts such as live CDs.
* Remove now-incorrect README, which wasn't exactly very useful to start
with.
* Split update_mtab and is_floppy functions out to functions.sh so that
they can be reused by rescue scripts.
* Add a rescue script to reinstall grub (requires rescue-mode 0.8).
[ Updated translations ]
* Arabic (ar.po) by Ossama M. Khayat
* Bulgarian (bg.po) by Ognyan Kulev
* Bengali (bn.po) by Baishampayan Ghose
* 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
* Finnish (fi.po) by Tapio Lehtonen
* French (fr.po) by Christian Perrier
* Galician (gl.po) by Jacobo Tarrio
* Indonesian (id.po) by Parlin Imanuel Toh
* Icelandic (is.po) by David Steinn Geirsson
* 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
* Malagasy (mg.po) by Jaonary Rabarisoa
* Macedonian (mk.po) by Georgi Stanojevski
* Bokmål, Norwegian (nb.po) by Bjørn Steensrud
* Dutch (nl.po) by Bart Cornelis
* Norwegian Nynorsk (nn.po)
* Norwegian Nynorsk (pa_IN.po) by Amanpreet Singh Alam
* 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
* Slovak (sk.po) by Peter Mann
* Slovenian (sl.po) by Jure Čuhalev
* Swedish (sv.po) by Daniel Nylander
* 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
* Simplified Chinese (zh_CN.po) by Ming Hua
-- Colin Watson <cjwatson@debian.org> Wed, 18 Jan 2006 10:10:07 +0000
grub-installer (1.11) unstable; urgency=low
* Use grub-setup -y option. This is present in sarge, but not woody so we
loose woody grub install support now.
* Use log-output.
[ Updated translations ]
* Catalan (ca.po) by Guillem Jover
* German (de.po) by Holger Wansing
* Greek, Modern (1453-) (el.po) by Greek Translation Team
* Esperanto (eo.po) by Serge Leblanc
* Spanish (es.po) by Javier Fernández-Sanguino Peña
* Italian (it.po) by Giuseppe Sacco
* Japanese (ja.po) by Kenshi Muto
* 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
* Dutch (nl.po) by Bart Cornelis
* 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
* Slovenian (sl.po) by Jure Čuhalev
* Ukrainian (uk.po) by Eugeniy Meshcheryakov
* Wolof (wo.po) by Mouhamadou Mamoune Mbacke
-- Joey Hess <joeyh@debian.org> Mon, 26 Sep 2005 17:24:36 +0200
grub-installer (1.10) unstable; urgency=low
* Colin Watson
- Change "new Debian system" to "new system", and "installation of
Debian" to "new installation", to reduce branding problems for
derivatives.
* Matt Kraai
- Fix the spelling of "boot loader".
* 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
- Spanish (es.po) by Javier Fernández-Sanguino Peña
- Estonian (et.po) by Siim Põder
- Basque (eu.po) by Piarres Beobide
- French (fr.po) by Christian Perrier
- Gallegan (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
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Portuguese (pt.po) by Miguel Figueiredo
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Romanian (ro.po) by Eddy Petrişor
- Slovak (sk.po) by Peter Mann
- Albanian (sq.po) by Elian Myftiu
- Tagalog (tl.po) by Eric Pareja
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Vietnamese (vi.po) by Clytie Siddall
- Wolof (wo.po) by Mouhamadou Mamoune Mbacke
- Xhosa (xh.po) by Canonical Ltd
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Fri, 15 Jul 2005 17:13:09 +0300
grub-installer (1.09) unstable; urgency=low
* Timo Aaltonen, Colin Watson
- In expert mode, ask for a GRUB password (if left blank, no password is
set). Provide a grub-installer/password-crypted question which is
never asked but allows the password to be kept encrypted in preseed
files. If a password is set, make sure menu.lst isn't world-readable.
* Christian Perrier
- Style consistency changes on the GRUB password template
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Bulgarian (bg.po) by Ognyan Kulev
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Dennis Stampfer
- Greek (el.po) by Greek Translation Team
- Spanish (es.po) by Javier Fernández-Sanguino Peña
- Basque (eu.po)
- French (fr.po) by Christian Perrier
- Italian (it.po) by Giuseppe Sacco
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Portuguese (pt.po) by Miguel Figueiredo
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Russian (ru.po) by Yuri Kozlov
- Albanian (sq.po) by Elian Myftiu
- Turkish (tr.po) by Recai Oktaş
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Colin Watson <cjwatson@debian.org> Wed, 1 Jun 2005 01:16:10 +0000
grub-installer (1.08) unstable; urgency=low
* Joey Hess
- Since lvdisplay may exit 0 even if run with a non-lvm device (such as
/dev/discs/disc0/part0, which it knows isn't a lvm device name and
aborts with an error message, but no failure code due to bug #250906),
try to make the isinstallable check for /boot on lvm more robust by
grepping the lvdisplay output for strings that indicate it really found
a lvm volume.
- Note that above fix is only needed for lvm1, not the lvm2 used by
default in d-i.
* Matt Kraai
- Fix the spelling of "file system".
* Colin Watson
- DOS/Windows can't deal with booting from a non-first hard drive, so,
if we're asked to install to hd* other than hd0, include suitable
'map' commands when chain-loading DOS or Windows (closes: #269351).
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Bosnian (bs.po) by Safir Šećerović
- Welsh (cy.po) by Dafydd Harries
- Greek (el.po) by Kostas Papadimas
- Spanish (es.po) by Enrique Matias Sanchez
- Basque (eu.po) by Piarres Beobide
- Gallegan (gl.po) by Jacobo Tarrio
- Hebrew (he.po) by Lior Kaplan
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Dutch (nl.po) by Bart Cornelis
- Polish (pl.po) by Dominik Zablotny
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Portuguese (pt.po) by Miguel Figueiredo
- Romanian (ro.po) by Ovidiu Damian
- Russian (ru.po) by Yuri Kozlov
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Traditional Chinese (zh_TW.po) by Tetralet
-- Colin Watson <cjwatson@debian.org> Fri, 20 May 2005 11:31:43 +0000
grub-installer (1.07.1) unstable; urgency=low
* Includes substitution variable fixes in translated templates.
* Updated translations:
- Bosnian (bs.po) by Safir Šećerović
- German (de.po) by Dennis Stampfer
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Dutch (nl.po) by Bart Cornelis
- Polish (pl.po) by Bartosz Fenski
- Romanian (ro.po) by Eddy Petrisor
-- Joey Hess <joeyh@debian.org> Wed, 2 Feb 2005 18:06:47 -0500
grub-installer (1.07) unstable; urgency=low
* Frans Pop
- Use proper quoting in get_serial_console function in postinst
Closes: #279134
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by French Team
- Hebrew (he.po) by Lior Kaplan
- Hungarian (hu.po) by VEROK Istvan
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Yuri Kozlov
- Slovenian (sl.po) by Jure Čuhalev
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Tue, 2 Nov 2004 10:00:50 -0500
grub-installer (1.06) unstable; urgency=low
* Updated translations:
- Welsh (cy.po) by Dafydd Harries
- Hebrew (he.po) by Lior Kaplan
- Hungarian (hu.po) by VEROK Istvan
- Latvian (lv.po) by Aigars Mahinovs
- Polish (pl.po) by Bartosz Fenski
- Romanian (ro.po) by Eddy Petrisor
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Wed, 6 Oct 2004 15:12:42 -0400
grub-installer (1.05) unstable; urgency=low
* Joey Hess
- Call grub-install with --recheck to ensure that it scans for devices
anew when, for example, it's run a second time and told to install to a
floppy this time. Closes: #265949
- Support device notation for floppy drive, not just grub notation.
Closes: #224636, #252562, #260486
* Updated translations:
- Czech (cs.po) by Miroslav Kure
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Hebrew (he.po) by Lior Kaplan
- Indonesian (id.po) by Debian Indonesia Team
- Italian (it.po) by Stefano Melchior
- Lithuanian (lt.po) by Kęstutis Biliūnasn
- Latvian (lv.po) by Aigars Mahinovs
- Bøkmal, Norwegian (nb.po) by Bjorn Steensrud
- Dutch (nl.po) by Bart Cornelis
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Russian L10N Team
- Slovak (sk.po) by Peter KLFMANiK Mann
- Slovenian (sl.po) by Jure Čuhalev
- Albanian (sq.po) by Elian Myftiu
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Sun, 3 Oct 2004 18:34:50 -0400
grub-installer (1.04) unstable; urgency=low
* Joey Hess
- Added a grub-installer/skip template, to let automated installs force
use of lilo-installer.
* Christian Perrier
- reworded the warning about installing GRUB on XFS
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- 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 Dennis Stampfer
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Spanish (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
- Basque (eu.po) by Piarres Beobide Egaña
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by French Team
- Gallegan (gl.po) by Héctor Fenández López
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- 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ūnasn
- Bøkmal, Norwegian (nb.po) by Axel Bojer
- 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
- Russian (ru.po) by Russian L10N Team
- Slovak (sk.po) by Peter KLFMANiK Mann
- Slovenian (sl.po) by Jure Čuhalev
- Swedish (sv.po) by Per Olofsson
- Turkish (tr.po) by Recai Oktaş
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Mon, 27 Sep 2004 20:56:48 -0400
grub-installer (1.03) unstable; urgency=low
* Joey Hess
- grub on xfs still only works sometimes. Make isinstallable script
reove grub from the menu so lilo will be used, unless the menu is
displayed, then it is left on the menu for experts to choose.
Closes: #251526
- Add a warning message about xfs to let the experts know it may not work.
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Bulgarian (bg.po) by Ognyan Kulev
- Bosnian (bs.po) by Safir Šećerović
- Catalan (ca.po) by Jordi Mallach
- 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 (Castilian) (es.po) by Javier Fernandez-Sanguino Peña
- Basque (eu.po) by Piarres Beobide Egaña
- Finnish (fi.po) by Tapio Lehtonen
- French (fr.po) by French Team
- Hebrew (he.po) by Lior Kaplan
- Croatian (hr.po) by Krunoslav Gernhard
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Latvian (lv.po) by Aigars Mahinovs
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Polish (pl.po) by Bartosz Fenski
- Slovak (sk.po) by Peter KLFMANiK Mann
- Slovenian (sl.po) by Jure Čuhalev
- Turkish (tr.po) by Recai Oktaş
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joey Hess <joeyh@debian.org> Thu, 9 Sep 2004 15:18:22 -0400
grub-installer (1.02) unstable; urgency=low
* Colin Watson
- grub-installer/bootdev must be asked (i.e. critical priority) on the
code path where unsupported operating systems were found, otherwise if
you're running at critical priority then bootdev ends up empty and
grub-installer fails.
* Christian Perrier
- rename templates file to grub-installer.templates
- typo fixed in French translation. Closes: #266307
* Joey Hess
- Use the user-params command to get parameters the user manually
entered on the command line, and add these into the grub config file.
- Add an isinstallable script that checks whether /boot is on lvm.
If so, grub will not be installed, and the installer can skip on to
lilo.
* Updated translations:
- Arabic (ar.po) by Christian Perrier
- Bulgarian (bg.po) by Ognyan Kulev
- Catalan (ca.po) by Jordi Mallach
- Danish (da.po) by Claus Hindsgaul
- Greek, Modern (1453-) (el.po) by Greek Translation Team
- Basque (eu.po) by
- French (fr.po) by French Team
- Hebrew (he.po) by Lior Kaplan
- Japanese (ja.po) by Kenshi Muto
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Latvian (lv.po) by
- Bøkmal, Norwegian (nb.po) by Debian L10n Norwegian Bokml
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Polish (pl.po) by Bartosz Fenski
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Yuri Kozlov
- Turkish (tr.po) by Recai Oktaş
-- Joey Hess <joeyh@debian.org> Fri, 27 Aug 2004 20:26:23 -0400
grub-installer (1.01) unstable; urgency=low
* Updated translations:
- Persian (fa.po) by Arash Bijanzadeh
-- Joey Hess <joeyh@debian.org> Mon, 26 Jul 2004 13:31:21 -0400
grub-installer (1.00) unstable; urgency=low
* Updated translations:
- Arabic (ar.po) by Abdulaziz Al-Arfaj
- German (de.po) by Dennis Stampfer
- Spanish (Castilian) (es.po) by Javier Fernández-Sanguino
- Persian (fa.po) by Arash Bijanzadeh
- Italian (it.po) by Stefano Melchior
- Swedish (sv.po) by Per Olofsson
- Traditional Chinese (zh_TW.po) by Tetralet
- Persian (fa.po) by Arash Bijanzadeh
-- Joey Hess <joeyh@debian.org> Sun, 25 Jul 2004 19:17:09 -0400
grub-installer (0.52) unstable; urgency=low
* Don't call shell functions before there are defined. Was this tested at
all, Josh? Closes: #260136
-- Joey Hess <joeyh@debian.org> Sun, 18 Jul 2004 16:04:05 -0400
grub-installer (0.51) unstable; urgency=low
* Joshua Kwan
- Add ripped-off serial console support from lilo-installer.
(Closes: #251291)
* Christian Perrier
- Rewite the template which was recently rewritten inan attempt to make
it less messy. Uses and enumeration.
* Updated translations:
- Arabic (ar.po) by Ossama M. Khayat
- Bulgarian (bg.po) by Ognyan Kulev
- Bosnian (bs.po) by Safir Šećerović
- Catalan (ca.po) by Jordi Mallach
- Czech (cs.po) by Miroslav Kure
- Welsh (cy.po) by Dafydd Harries
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Dennis Stampfer
- Greek, Modern (1453-) (el.po) by George Papamichelakis
- Spanish (Castilian) (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
- 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
- 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
- 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
- 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 Ming Hua
-- Joey Hess <joeyh@debian.org> Sat, 17 Jul 2004 14:24:42 -0400
grub-installer (0.50) unstable; urgency=low
* Re-upload sans changes.
-- Joey Hess <joeyh@debian.org> Tue, 25 May 2004 15:27:13 -0300
grub-installer (0.49) unstable; urgency=low
* Christian Perrier
- Corrected typo in templates. Unfuzzied translations
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Catalan (ca.po) by Jordi Mallach
- German (de.po) by Dennis Stampfer
- Greek, Modern (1453-) (el.po) by George Papamichelakis
- Basque (eu.po) by Piarres Beobide Egaña
- Finnish (fi.po) by Tapio Lehtonen
- Gallegan (gl.po) by Héctor Fernández López
- Indonesian (id.po) by Parlin Imanuel Toh
- Italian (it.po) by Stefano Melchior
- Bøkmal, Norwegian (nb.po) by Knut Yrvin
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Polish (pl.po) by Bartosz Fenski
- Romanian (ro.po) by Eddy Petrisor
- Slovenian (sl.po) by Jure Čuhalev
- Albanian (sq.po) by Elian Myftiu
- Turkish (tr.po) by Osman Yüksel
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Tue, 25 May 2004 12:27:19 -0300
grub-installer (0.48) unstable; urgency=low
* Joshua Kwan
- Add amd64 to arch list. Closes: #249360
-- Joey Hess <joeyh@debian.org> Mon, 17 May 2004 11:34:36 -0300
grub-installer (0.47) unstable; urgency=low
* Joey Hess
- Add a warning about failing to find an existing OS.
- Add some examples of device specifications.
- Do not default grub-installer/bootdev to anything; (hd0) is not a good
default since the user has just chosen NOT to install to the mbr in the
previous question.
* Joshua Kwan
- Add amd64 to Architecture: list. (Closes: #249360)
* Christian Perrier
- Added quotes around "/dev/hda2" as well as a missing space in templates
* Updated translations:
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- Basque (eu.po) by Piarres Beobide Egaña
- French (fr.po) by Christian Perrier
- Hungarian (hu.po) by VERÓK István
- Japanese (ja.po) by Kenshi Muto
- Korean (ko.po) by Changwoo Ryu
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Polish (pl.po) by Bartosz Fenski
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- Russian (ru.po) by Yuri Kozlov
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Simplified Chinese (zh_CN.po) by Carlos Z.F. Liu
-- Joshua Kwan <joshk@triplehelix.org> Sun, 16 May 2004 23:41:52 -0700
grub-installer (0.46) unstable; urgency=low
* Joey Hess
- If grub is not installed to the MBR, do not use the makeactive
command for chain-loaded OSes, as that would likely make grub
inaccessible. Closes: #248509
* Updated translations:
- Spanish (Castilian) (es.po) by Carlos Alberto Martín Edo
- Basque (eu.po) by Piarres Beobide Egaña
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
-- Joey Hess <joeyh@debian.org> Thu, 13 May 2004 10:05:10 -0300
grub-installer (0.45) unstable; urgency=low
* Updated translations:
- Bulgarian (bg.po) by Ognyan Kulev
- Spanish (Castilian) (es.po) by Carlos Alberto Martín Edo
- Japanese (ja.po) by Kenshi Muto
- Bokmal, Norwegian (nb.po) by Bjørn Steensrud
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
-- Joey Hess <joeyh@debian.org> Fri, 23 Apr 2004 13:07:58 -0400
grub-installer (0.44) unstable; urgency=low
* Joey Hess
- Don't assume a kernel in /boot is on a different partiton, unless
the mapped boot partitoin differs from the mapped root partition.
-- Joey Hess <joeyh@debian.org> Tue, 20 Apr 2004 17:28:18 -0400
grub-installer (0.43) unstable; urgency=low
* Updated translations:
- Gallegan (gl.po) by Héctor Fernández López
- Hebrew (he.po) by Lior Kaplan
- Indonesian (id.po) by Parlin Imanuel Toh
- Bokmal, Norwegian (nb.po) by Axel Bojer
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Romanian (ro.po) by Eddy Petrisor
- Russian (ru.po) by Nikolai Prokoschenko
- 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, 20 Apr 2004 10:58:04 -0400
grub-installer (0.42) unstable; urgency=low
* Joey Hess
- Went back to two passes, the grub drives can only be determined after
grub is installed. Calls linux-os-prober in first pass to detect
unbootable linux systems.
-- Joey Hess <joeyh@debian.org> Wed, 14 Apr 2004 16:45:03 -0400
grub-installer (0.41) unstable; urgency=low
* Joey Hess
- Do linux-os-probe and menu.lst addition creation in a single pass
before the list is shown to the user Simplifies code and does not
offer what will not be delivered. Closes: #243765
* Updated translations:
- Catalan (ca.po) by Jordi Mallach
- Greek, Modern (1453-) (el.po) by Konstantinos Margaritis
- 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
- Hebrew (he.po) by Lior Kaplan
- Indonesian (id.po) by Parlin Imanuel Toh
- Korean (ko.po) by Changwoo Ryu
- Dutch (nl.po) by Bart Cornelis
- Polish (pl.po) by Bartosz Fenski
- Slovak (sk.po) by Peter KLFMANiK Mann
-- Joey Hess <joeyh@debian.org> Wed, 14 Apr 2004 16:31:22 -0400
grub-installer (0.40) unstable; urgency=low
* Joey Hess
- Use result of os-prober to display one of two boolean questions,
and only prompt for a boot device if the user chooses not to use the
default.
- Add support for the Hurd.
- Fix path in menu.lst to kernel that is on a separate /boot partition.
- Initrds too, though currently they must be on the same partition as the
kernel.
- Clear menu.lst between runs to prevent re-appending detected OSes to it.
- Allow /dev device names to be specified along with grub style names.
Devfs or non-devfs, it's all converted.
- Add sanity check for a bad boot device.
* Updated translations:
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Dennis Stampfer
- 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
- Lithuanian (lt.po) by Kęstutis Biliūnas
- Portuguese (pt.po) by Miguel Figueiredo
- Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
- 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> Sun, 11 Apr 2004 21:30:06 -0400
grub-installer (0.39) unstable; urgency=low
* Petter Reinholdtsen
- Call dh_fixperms in rules to get package buildable even
if the source directory is setgid.
- Add some debug logging trying to find out why it fail in Woody.
* Joey Hess
- Fix rules file, this package is not arch indep though it contains
no compiled files.
- Use debhelper's udeb support.
- Depend on os-prober, and add stanzas to menu.lst for chainloaded
operating systems.
Closes: #229212, #237185, #238293, #240228, #233897, #237185
Closes: #238293, #240228
- Use linux-boot-prober to find out how to boot existing linux
installs, and add them as well.
- Add a divider in the menu before other linux and other OS entries.
- Fix a bad grep call in is_floppy.
* Updated translations:
- Catalan (ca.po) by Jordi Mallach
- Czech (cs.po) by Miroslav Kure
- Danish (da.po) by Claus Hindsgaul
- German (de.po) by Dennis Stampfer
- 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
- 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
- Polish (pl.po) by Bartosz Feński
- 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
- 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
-- Joey Hess <joeyh@debian.org> Wed, 7 Apr 2004 21:43:29 -0400
grub-installer (0.38) unstable; urgency=low
* Joey Hess
- Test to make sure grub-install supports --no-floppy before using it.
It does not in stable or Skolelinux.
* Updated translations:
- Hebrew (he.po) by Lior Kaplan
- Ukrainian (uk.po) by Eugeniy Meshcheryakov
- Albanian (sq.po) by Elian Myftiu
-- Joey Hess <joeyh@debian.org> Tue, 30 Mar 2004 13:09:58 -0500
grub-installer (0.37) unstable; urgency=low
* Joey Hess
- Pass --no-floppy to grub-install, to avoid long delays/hangs
probing for floppy disks on some floppy-less systems.
Closes: #220130, #238449, #239019
- Add a is_floppy check, which turns off the --no-floppy, in case someone
types (fd0).
* Updated translations:
- Bosnian (bs.po) by Safir Šećerović
- German (de.po) by Dennis Stampfer
- Indonesian (id.po) by Parlin Imanuel Toh
- Norwegian Nynorsk (nn.po) by Håvard Korsvoll
- Turkish (tr.po) by Osman Yüksel
- Traditional Chinese (zh_TW.po) by Tetralet
-- Joey Hess <joeyh@debian.org> Sun, 28 Mar 2004 15:38:32 -0500
grub-installer (0.36) unstable; urgency=low
* Translations:
- Dennis Stampfer
- Update German translation (de.po)
- Russian by Nikolai Prokoschenko
- Giuseppe Sacco
- Updated italian translation and notified translator (it.po)
-- Petter Reinholdtsen <pere@debian.org> Sun, 14 Mar 2004 19:26:04 +0100
grub-installer (0.35) unstable; urgency=low
* Petter Reinholdtsen
- Remove Moshe Zadka and Tollef Fog Heen as uploaders. Neither
have uploaded this package for months
- Add Joey Hess as uploader, as he has been doing the upload the
last few times.
* Translations:
- Ognyan Kulev
- Updated Bulgarian translation (bg.po).
- Andre Dahlqvist
- Update Swedish translation (sv.po).
- Dafydd Harries : Added Welsh translation (cy.po)
- Jordi Mallach
- Updated Catalan translation (ca.po)
-- Joey Hess <joeyh@debian.org> Sat, 13 Mar 2004 00:03:50 -0500
grub-installer (0.34) unstable; urgency=low
* Translations:
- Bartosz Fenski
- Updated Polish translation (pl.po)
- Håvard Korsvoll
- Updated Norwegian, nynorsk (nn.po) translation.
- Changwoo Ryu
- Updated Korean translation (ko.po)
- Ming Hua
- Initial Traditional Chinese translation (zh_TW.po), by Tetralet
- Updated Traditional Chinese translation (zh_TW.po), by Tetralet
- Jure Cuhalev
- Added Slovenian translation (sl.po)
- Håvard Korsvoll
- Updated Norwegian, bokmål translation, (nb.po). From Axel Bojer
-- Joey Hess <joeyh@debian.org> Tue, 2 Mar 2004 13:29:51 -0500
grub-installer (0.33) unstable; urgency=low
* Translations
- Andre Dahlqvist
- Update Swedish translation (sv.po)
- Dennis Stampfer
- Update German translation (de.po)
- Bart Cornelis
- Added corrections send by Bastiaan Eeckhoudt (nl.po)
- Kęstutis Biliūnas
- Updated Lithuanian translation (lt.po)
- Javier Fernandez-Sanguino
- Updated Spanish translation (es.po)
* Eugen Meshcheryakov : added Ukrainian translation (uk.po)
* Matt Kraai
- Kill the progress bar before exiting.
* Joey Hess
- Add a dependency on di-utils-mapdevfs.
-- Joey Hess <joeyh@debian.org> Sun, 22 Feb 2004 22:08:42 -0500
grub-installer (0.32) unstable; urgency=low
* Joey Hess
- Add support for backing up to the main menu.
- Reword the bootdev question to use less jargon, and to emphasize that
it overwrites the MBR by default.
- Ask the bootdev question at high priority, as lilo does with its
question. This along with the wording clarification should prevent
accidental unavoidable MBR destruction. Closes: #230502
- Remove dead defaultbootdev code.
* Translations
- Bartosz Fenski
- Updated Polish (pl) translation.
- Giuseppe Sacco
- applied patch for normalizing menus and some italian translation (it.po)
- h3lios
- Added Albanian translation (sq.po)
- Jordi Mallach
- Update Catalan translation (ca.po).
- Christian Perrier
- Update French translation (fr.po).
- Carlos Z.F. Liu
- update Simplifed Chinese translation (zh_CN.po)
- Miroslav Kure
- Update Czech translation
- Claus Hindsgaul
- Update Danish translation.
- Konstantinos Margaritis
- Update Greek translation.
- Kenshi Muto
- Updated Japanese translation (ja.po)
- Miguel Figueiredo
- Updated Portuguese translation (pt.po)
- Bart Cornelis
- Updated Dutch (nl.po) translation
- André Luís Lopes
- Updated Brazilian Portuguese (pt_BR) translation.
-- Joey Hess <joeyh@debian.org> Thu, 5 Feb 2004 14:41:54 -0500
grub-installer (0.31) unstable; urgency=low
* Matt Kraai
- If mapdevfs cannot resolve the device name, use the unresolved
version.
* Miguel Figueiredo
- Updated Portuguese translation (pt.po)
-- Joey Hess <joeyh@debian.org> Tue, 27 Jan 2004 13:07:39 -0500
grub-installer (0.30) unstable; urgency=low
* Petter Reinholdtsen
- Reorder grub and lilo, switching menu item value and making grub
the default boot loader on i386.
-- Petter Reinholdtsen <pere@debian.org> Sat, 24 Jan 2004 19:45:52 +0100
grub-installer (0.29) unstable; urgency=low
* Bartosz Fenski
- Updated Polish (pl) translation.
* Nikolai Prokoschenko
- updated russian translation
* Christian Perrier
- Added ellipses to progress texts. Sorry, cannot unfuzzy
translations, so again work for translators.
- French translation update
* Bart Cornelis
- Updated Dutch (nl.po) translation
* André Luís Lopes
- Updated Brazilian Portuguese (pt_BR) translation.
* Konstantinos Margaritis
- Updated Greek translation
* Claus Hindsgaul
- Update Danish translation.
* Kenshi Muto
- Update Japanese translation (ja.po)
* Miroslav Kure
- Updated Czech translation
* Dennis Stampfer
- Update German translation (de.po)
* Ming Hua
- Updated Simplified Chinese translation (zh_CN.po)
* Andre Dahlqvist
- Update Swedish translation (sv.po)
* Peter Mann
- Update Slovak translation
* Safir Secerovic
- Update Bosnian translation (bs.po).
-- Joey Hess <joeyh@debian.org> Thu, 22 Jan 2004 20:01:47 -0500
grub-installer (0.28) unstable; urgency=low
* Miguel Figueiredo
- Updated Portuguese tranalation (pt.po)
* Ming Hua
- Initial Simplified Chinese translation (zh_CN.po)
* Bart Cornelis
- Merged Norwegian Nynorsk (nn.po) translation from skolelinux-cvs
* Kęstutis Biliūnas
- Updated Lithuanian translation (lt.po).
* Teófilo Ruiz Suárez
- Fixed some inconsistencies in Spanish Translation (es.po)
* Andre Dahlqvist
- Update Swedish translation (sv.po).
* Peter Mann
- Update Slovak translation (sk.po)
* Ognyan Kulev
- Updated bulgarian translation (bg.po).
* Anmar Oueja
- created and translated to Arabic (ar.po)
-- Joey Hess <joeyh@debian.org> Thu, 1 Jan 2004 14:44:19 -0500
grub-installer (0.27) unstable; urgency=low
* Bart Cornelis
- Merged Norwegian Bokmael (nb.po) from skolelinux-cvs
* Dennis Stampfer
- Merged some strings in German translation de.po
* Giuseppe Sacco
- Updated the italian translation by Stefano Melchior (it.po)
* André Luís Lopes
- Fixed the translation of "Device for boot loader installation:" to
be consistent between all the udebs it is being used within
debian-installer.
* Peter Mann
- Update Slovak translation
* André Dahlqvist
- Added Swedish translation
* Claus Hindsgaul
- Update Danish translation.
* Daniel Costa
- Initial Portuguese translation (pt.po)
-- Joey Hess <joeyh@debian.org> Thu, 25 Dec 2003 19:56:42 -0500
grub-installer (0.26) unstable; urgency=low
* Bartosz Fenski
- Updated Polish (pl) translation.
* Christian Perrier
- Update French translation.
* Kenshi Muto
- Update Japanese translation (ja.po)
- Apply kernel-img.conf configuration patch. (See Bug#223679)
* André Luís Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* Verok Istvan
- Initial Hungarian translation
* Kęstutis Biliūnas
- Updated Lithuanian translation.
* Changwoo Ryu
- Initial Korean translation (ko.po).
* Claus Hindsgaul
- Update Danish translation.
* 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)
* Miroslav Kure
- Updated Czech translation (cs.po)
* Bart Cornelis
- Updated Dutch translation (nl.po)
- Incorporated debian-l10n-dutch review comments into nl.po
* Steinar H. Gunderson
- Updated Norwegian translation (nb.po).
* Ognyan Kulev
- Added/updated bulgarian translation (bg.po).
* Giuseppe Sacco
- Added italian translation (it.po)
* Jure Cuhalev
- Added/updated slovenian translation (sl.po).
-- Bart Cornelis <cobaco@linux.be> Tue, 23 Dec 2003 17:01:16 +0100
grub-installer (0.25) unstable; urgency=low
* Peter Mann
- Initial Slovak translation (sk.po).
* Claus Hindsgaul
- Update da (Danish) translation.
* Ilgiz Kalmetev
- Initial Russian translation.
* Konstantinos Margaritis
- Updated Greek translation (el,po)
* Safir Šećerović
- Update Bosnian translation (bs.po)
* Christian Perrier
- Improve French translation.
* Jordi Mallach
- Update Catalan translation.
* Kęstutis Biliūnas
- Update Lithuanian translation.
* Joey Hess
- minor template polish
* Kenshi Muto
- Update Japanese translation (ja.po)
-- Joey Hess <joeyh@debian.org> Tue, 9 Dec 2003 15:43:32 -0500
grub-installer (0.24) unstable; urgency=low
* Tommi Vainikainen
- Update Finnish (fi.po) translation.
* Petter Reinholdtsen
- Change priority from optional to standard, to make sure it show up
in the menu on i386.
- Undo grub and lilo reorder, switching menu item value. Joey
Hess did not dare to make GRUB the default boot loader after all.
-- Petter Reinholdtsen <pere@debian.org> Fri, 7 Nov 2003 10:30:49 +0100
grub-installer (0.23) unstable; urgency=low
* Jure Cuhalev
- Add Slovenian translation. Closes: #218027.
* Petter Reinholdtsen
- Update templates. Patch from Christian Perrier. (Closes: #218209)
- Reorder grub and lilo, swapping menu item value.
* Kenshi Muto
- Update Japanese translation (ja.po)
* Christian Perrier
- Update French translation (fr.po)
* Bart Cornelis
- Update Dutch translation (nl.po)
* André Luís Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* Safir Secerovic, Amila Akagic
- Add Bosnian translation (bs.po).
* Claus Hindsgaul
- Update da (Danish) translation.
* Miroslav Kure
- Update Czech (cs.po) translation.
-- Petter Reinholdtsen <pere@debian.org> Tue, 4 Nov 2003 23:32:36 +0100
grub-installer (0.22) unstable; urgency=low
* Claus Hindsgaul
- Update da (Danish) translation.
* Denis Barbier
- Add a comment in templates file to flag the main menu item
* Christian Perrier
- Improve French translation.
* Kęstutis Biliūnas
- Add Lithuanian translation (lt.po).
* Tommi Vainikainen
- Add Finnish (fi.po) translation
-- Petter Reinholdtsen <pere@debian.org> Fri, 24 Oct 2003 16:23:20 +0200
grub-installer (0.21) unstable; urgency=low
* Miroslav Kure
- Initial Czech translation.
* Petter Reinholdtsen
- Update nb.po.
-- Sebastian Ley <ley@debian.org> Sun, 12 Oct 2003 19:44:44 +0200
grub-installer (0.20) unstable; urgency=low
* Kenshi Muto
- Update Japanese po (ja.po)
* André Luís Lopes
- Update pt_BR (Brazilian Portuguese) translation.
* Bart Cornelis
- Updated dutch translation (nl.po)
-- Bart Cornelis <cobaco@linux.be> Wed, 8 Oct 2003 22:17:26 +0200
grub-installer (0.19) unstable; urgency=low
* Alastair McKinstry
- Fix UTF-8 brokenness in Changelog
- Move to Standards-Version: 3.6.1
* Petter Reinholdtsen
- Make menu item translatable.
- Add code to update /target/etc/mtab before running
grub-install. (Closes: #187135)
- Update nb.po.
* Pierre Machard
- Update French po-debconf translation.
-- Alastair McKinstry <mckinstry@debian.org> Mon, 29 Sep 2003 22:30:44 +0100
grub-installer (0.18) unstable; urgency=low
* Jordi Mallach:
- Updated Catalan (ca) translation.
* Kenshi Muto
- Update ja.po
-- Petter Reinholdtsen <pere@debian.org> Sun, 28 Sep 2003 14:58:03 +0200
grub-installer (0.17) unstable; urgency=low
* Petter Reinholdtsen
- Changed charset for el.po file, as it is invalid as UTF-8. I
am guessing that it might be ISO-8859-7, and use that in the file
header.
- Make sure to stop the progress bar when something goes wrong.
(Closes: #211076)
* Kenshi Muto
- Update Japanese translation (ja.po).
-- Petter Reinholdtsen <pere@debian.org> Mon, 15 Sep 2003 21:28:50 +0200
grub-installer (0.16) unstable; urgency=low
* Sebastian Ley
- Remove isinstallable script. It prevented the menu-entry to be shown
when grub is not installed in /target. However this will be done by
grub-installer...
* Petter Reinholdtsen
- Added Greek translation (el.po), received from
George Papamichelakis.
-- Petter Reinholdtsen <pere@debian.org> Tue, 9 Sep 2003 20:35:43 +0200
grub-installer (0.15) unstable; urgency=low
* Kenshi Muto
- Added Japanese translation (ja.po)
* Matt Kraai
- Update French translation, from Christian Perrier (closes:
#207238).
-- Petter Reinholdtsen <pere@debian.org> Fri, 5 Sep 2003 23:12:23 +0200
grub-installer (0.14) unstable; urgency=low
* Bart Cornelis
- Updated Dutch translation
* Pierre Machard
- Update French po-debconf translation
* Petter Reinholdtsen
- Change version number schema from X.Y.Z to X.Y.
-- Petter Reinholdtsen <pere@debian.org> Sun, 24 Aug 2003 16:52:21 +0200
grub-installer (0.0.13) unstable; urgency=low
* Add a 5-step progress bar to let the user know that something is
happening.
* Log some messages to syslog instead of /var/log/messages.
* Updating nb.po.
* André Luís Lopes
- Update Brazilian Portuguese (pt_BR) debconf template translation.
* Matt Kraai
- Update Spanish translation, from Carlos Valdivia Yagüe.
-- Petter Reinholdtsen <pere@debian.org> Wed, 30 Jul 2003 15:40:19 +0200
grub-installer (0.0.12) unstable; urgency=low
* Redirect all output to /var/log/messages.
-- Petter Reinholdtsen <pere@debian.org> Mon, 28 Jul 2003 15:56:18 +0200
grub-installer (0.0.11) unstable; urgency=low
* Pierre Machard
- Update French po-debconf translation [Lucien Coste]
* Tollef Fog Heen
- Update dutch translation, from Cedric Walravens
* Petter Reinholdtsen
- Depend on created-fstab, as update-grub need /target/etc/fstab.
* Alastair McKinstry
- Converted changelog to UTF-8, required by Standards-Version 3.6.0
-- Petter Reinholdtsen <pere@debian.org> Sun, 27 Jul 2003 00:01:27 +0200
grub-installer (0.0.10) unstable; urgency=low
* Petter Reinholdtsen
- Updated nb.po.
- Change 'Build-Depend-Indep' to 'Build-Depend' as this package is
arch dependend for convenience. (Closes: #194821)
- Make sure target binary-arch' do the same as 'binary-indep'.
* Thorsten Sauter
- Include german translation (de.po).
-- Petter Reinholdtsen <pere@debian.org> Sun, 1 Jun 2003 13:26:25 +0200
grub-installer (0.0.9) unstable; urgency=low
* André Luís Lopes :
- Update pt_BR debconf template translation.
* Petter Reinholdtsen
- Update es debconf template translation, thanks to Carlos Valdivia Yagüe.
- Updated nb.po.
-- Petter Reinholdtsen <pere@debian.org> Sun, 4 May 2003 14:42:50 +0200
grub-installer (0.0.8) unstable; urgency=low
* debian/po/fr.po updated by Lucien Coste
* Petter Reinholdtsen
- Upgraded Standards-Version from 3.5.6 to 3.5.8.
- Updated nn.po thanks to Gaute Hvoslef Kvalnes.
- Added es.po, thanks to Carlos Valdivia Yagüe.
- Add some logging and error reporting to make it easier to debug
if something goes wrong.
-- Petter Reinholdtsen <pere@debian.org> Sat, 19 Apr 2003 14:59:24 +0200
grub-installer (0.0.7) unstable; urgency=low
* Petter Reinholdtsen
- Added Norwegian Bokmål (nb.po) translations recieved from
Bjørn Steensrud.
- Add hurd-i386 to architecture list, as grub also compiled OK
on hurd-i386 (Closes: #177343).
- Add myself to uploaders.
-- Petter Reinholdtsen <pere@debian.org> Tue, 4 Mar 2003 16:38:35 +0100
grub-installer (0.0.6) unstable; urgency=low
* Petter Reinholdtsen
- Added Norwegian Nynorsk (nn.po) translations recieved from
Gaute Hvoslef Kvalnes.
- The boot loader installers now depend on kernel-installer, not base-
installer.
- Call 'apt-install grub' in postinst to make sure it is installed in
/target/ before it is used (Closes: #181792).
- Improve error reporting, and clean up postinst script.
* André Luís Lopes :
- Run debconf2po-update in order to update the various grub template
translations.
- Update pt_BR.po template translation.
-- Petter Reinholdtsen <pere@debian.org> Sat, 22 Feb 2003 17:33:44 +0100
grub-installer (0.0.5) unstable; urgency=low
* Petter Reinholdtsen
- Change maintainer to debian-boot@lists.debian.org, and make the old
maintainer an uploader. Added Tollef Fog Heen as uploader.
-- Petter Reinholdtsen <pere@debian.org> Thu, 16 Jan 2003 11:29:06 +0100
grub-installer (0.0.4) unstable; urgency=low
* Tollef Fog Heen
- Fix installer-menu-item
-- Tollef Fog Heen <tfheen@debian.org> Thu, 5 Dec 2002 01:11:37 +0100
grub-installer (0.0.3) unstable; urgency=low
* Tollef Fog Heen
- Don't set LD_LIBRARY_PATH.
* Martin Sjögren
- Replace XBC with XB so our special control fields don't confuse the
changes files.
* André Luís Lopes
- Set pt_BR.po control fields.
- Improve the translation a bit.
-- Tollef Fog Heen <tfheen@debian.org> Thu, 14 Nov 2002 02:11:12 +0100
grub-installer (0.0.2) unstable; urgency=low
* Add Brazilian Portuguese, Catalan and Danish debconf templates.
* Drop dependency on chroot. There is no such package.
* Avoid crashing when trying to call db_subst with an empty value.
* 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.
-- Tollef Fog Heen <tfheen@debian.org> Thu, 24 Oct 2002 12:44:56 +0200
grub-installer (0.0.1) unstable; urgency=low
* First release
* THIS IS PRETTY UNTESTED!!!!!!!!!!!!
DON'T use it unless you are interested in helping me debug.
Thank you for your consideration
-- Moshe Zadka <moshez@debian.org> Fri, 9 Aug 2002 09:17:55 +0300
|