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
|
2005-02-27 19:35 baud123
* VERSION: change to 2.1.1
2005-02-26 17:57 mcoolive
* debian/po/de.po: Deutch translation
2005-02-26 17:36 mcoolive
* debian/rules: [no log message]
2005-02-26 17:35 mcoolive
* debian/po/cs.po: - the Czech translation of debconf questions
2005-02-26 16:32 baud123
* driver/user/Makefile: install CMV*WO.txt files as well
2005-02-26 16:28 baud123
* utils/eagleconnect/: eagleconnect.tcl, reseau.tcl: correct
eagleconnect lang dir + 10 seconds instead of 1 for refresh
2005-02-24 01:09 baud123
* driver/user/: CMVei.txt, CMVeiWO.txt: remove CRLF from CMVei*.txt
files
2005-02-14 00:32 baud123
* utils/scripts/Makefile: s/0ld/Old/ to avoid w4r10rd words
2005-02-14 00:06 baud123
* utils/scripts/Makefile: put back uninst0ld to avoid existing
driver
2005-02-13 23:55 baud123
* utils/scripts/: adsl_consts.pm, isp_adsl_db.pl: correct TU01 +
format of print-config with leading 0
2005-02-06 22:21 baud123
* utils/scripts/: adsl_consts.pm, common.pm: add ISP for Egypt +
use common instead Common
2005-02-03 02:08 baud123
* VERSION, ChangeLog: release candidate 2.1.0rc1
2005-02-03 02:04 baud123
* driver/user/CMVepES.txt: fix typo s/cx/cw/
2005-01-30 02:01 Tux
* utils/scripts/eagleconfig: [no log message]
2005-01-30 02:01 Tux
* utils/scripts/uninstOld: - run "depmod" when neccessary
2005-01-30 01:58 Tux
* Makefile, driver/Makefile-2.4, driver/Makefile-2.6: - moved
"depmod"
2005-01-29 22:08 baud123
* utils/scripts/adsl_consts.pm: add ISP Mauritius Wanadoo
2005-01-28 01:32 baud123
* driver/firmware/sagem/pots/: rtbldep0.bnm, rtbldep1.bnm,
rtbldep2.bnm, rtbldep3.bnm, rtbldep4.bnm: upgrade to
RTBLD_44e2ea17 BNM files (sagem20041025)
2005-01-28 01:01 baud123
* utils/scripts/: eagleconfig, eu_config_bash: add CMV config
(misses Linetype + keep)
2005-01-27 21:25 Tux
* utils/scripts/lang/: cz, en, pl: [no log message]
2005-01-23 23:43 Tux
* utils/scripts/lang/gr: - initial revision
2005-01-23 23:41 Tux
* utils/scripts/lang/pl: - fix missing antislash
2005-01-22 12:42 mcoolive
* utils/scripts/lang/pl: - update headers
2005-01-18 01:46 baud123
* utils/scripts/adsl_consts.pm: add ISP for switzerland, tunisia,
Czech Republic
2005-01-17 21:54 sleeper
* driver/: Pipes.c, eu_eth.c, eu_main.c, eu_utils.c, macros.h:
usb_unlink_urb for synchronous unlinking is deprecated on kernel
>= 2.6.10
2005-01-16 23:08 Tux
* utils/scripts/: startadsl, stopadsl, testconnec, uninstOld,
lang/br, lang/de, lang/en, lang/es, lang/fr, lang/it, lang/mk,
lang/cz: - add license header
2005-01-16 23:06 Tux
* utils/scripts/setvars: - add license header - remove some hacks
with language files
2005-01-16 23:00 Tux
* Makefile.common.in, utils/scripts/eaglediag,
utils/scripts/eagleconfig, utils/scripts/Makefile,
utils/scripts/eu_config_bash, utils/scripts/eu_dsp,
utils/scripts/eu_init, utils/scripts/fctStartAdsl,
utils/scripts/fctStopAdsl: - add license header
2005-01-16 22:54 Tux
* autogen.sh, configure.in, makedist, Makefile: - add license
header
2005-01-12 22:49 Tux
* Makefile: - previous tests "@[ condition ] && result" were buggy
=> use "if [] ; then ; fi" structure instead - don't try to
install documentation if it doesn't exist - add "depmod"
2005-01-12 22:46 Tux
* configure.in: - fix extract_release (didn't work in configure.in)
- GCC_VERSION_KERNEL didn't contain the desired value - use
extract_release for all distribs - fix a bug with chkconfig on
SuSE - Mdk > 10.1 are now recognized as "Mandrake" too (instead
of "generic")
2005-01-09 21:18 baud123
* utils/scripts/adsl_consts.pm: correct comment + duplicate method
2005-01-08 22:33 baud123
* utils/scripts/eu_config_bash: vci in hex instead of decimal for
eu_config
2005-01-08 22:01 baud123
* utils/scripts/isp_adsl_db.pl: vci in hex instead of decimal for
eu_config
2005-01-08 21:59 baud123
* utils/scripts/eu_config_bash: correct duplicate AE01
2005-01-08 21:43 baud123
* utils/scripts/eu_config_bash: apply changes of configuration
coming from isp_adsl_db
2005-01-08 21:42 baud123
* utils/scripts/isp_adsl_db.pl: options are --print-spip
--print-config to display formats of database
2005-01-08 20:42 baud123
* utils/scripts/isp_adsl_db.pl: options are --print-spip
--print-config to display formats of database
2005-01-06 01:28 mcoolive
* utils/scripts/setvars: - fix a little bug ("$@" for args of
doInUtf8 with space...)
2005-01-04 22:14 Tux
* Makefile: - "hash -r" doesn't work in Makefile
2005-01-04 22:14 Tux
* utils/scripts/: eagleconfig, eu_dsp, eu_init, fctStartAdsl,
fctStopAdsl, setvars, startadsl, uninstOld: - switch strings to
utf-8
2005-01-04 22:05 Tux
* utils/scripts/lang/: br, cz, de, en, es, f2, fr, it, mk, p2, pl:
- switch strings to utf-8
2005-01-04 22:04 Tux
* utils/scripts/eu_config_bash: - switch messages to utf-8
2005-01-04 21:49 Tux
* utils/scripts/setvars: - added doInUtf8 function
2005-01-03 00:09 mcoolive
* Makefile: - improve the deb rule
2005-01-02 23:47 baud123
* utils/scripts/isp_adsl_db.pl: correct utf-8 pb
2005-01-02 13:41 mcoolive
* utils/scripts/eagleconfig: - fix a bug: PPPD_BIN must be
initialized before be used
2004-12-30 18:02 mcoolive
* debian/: changelog, rules.modules: - Fix the generation of
postinst of eagle-usb-modules
2004-12-30 17:39 mcoolive
* driver/firmware/Makefile, driver/user/Makefile, pppoa/Makefile: -
replace gcc by $(CC)
2004-12-29 17:32 Tux
* utils/scripts/eagleconfig: - /etc/resolv.conf => $RESOLV_conf -
only create a link "/etc/resolv.conf => /var/run/ppp/resolv.conf"
when "/etc/ppp/ip-up" doesn't update the "/etc/resolv.conf" file
itself
2004-12-18 01:14 baud123
* utils/scripts/adsl_consts.pm: correct some ISP + name of
variables
2004-12-18 01:13 baud123
* utils/scripts/isp_adsl_db.pl: spip content generation
2004-12-17 22:37 baud123
* utils/scripts/lang/cz: add czech localisation
2004-12-15 23:17 baud123
* utils/scripts/eaglediag: add copyright line + yoper distribution
2004-12-15 01:35 baud123
* utils/scripts/: common.pm, isp_adsl_consts.pm: [no log message]
2004-12-15 01:32 baud123
* utils/scripts/: Common.pm, isp_adsl_db.pl: some corrections to
make adsl_db work
2004-12-14 23:31 baud123
* utils/scripts/: Common.pm, adsl_consts.pm: first version of
adsl_consts : content of an ISP db
2004-12-12 21:38 Tux
* configure.in: - add check for gcc version - "==" => "-eq"
2004-12-06 01:52 baud123
* utils/scripts/: common.pm, isp_adsl_consts.pm, isp_adsl_db.pl:
first version of isp_adsl_db to display the content of an ISP db
2004-12-05 02:27 mcoolive
* utils/scripts/: eagleconfig, setvars: - replace flt_to_float
function by test_version anywhere
2004-12-01 21:36 Tux
* configure.in: - latest Mandrakelinux distribs use
/etc/mandrakelinux-release
2004-12-01 16:25 mcoolive
* configure.in: - improve test_version (reindent, simpler) - add
extract_release function
2004-12-01 01:03 mcoolive
* configure.in: - replace flt_to_str function by "test_version"
function.
2004-11-30 20:32 mcoolive
* eagle-usb.spec, debian/control: - remove build dependency on
xmlto - (debian only) add build dependency on xlstproc and
docbook
2004-11-30 20:28 mcoolive
* configure.in: - don't check anymore whether PATH contains
$prefix/sbin
2004-11-30 20:27 mcoolive
* Makefile: - check whether PATH contains $prefix/sbin at the end
of install - cosmetic changes
2004-11-30 19:46 mcoolive
* Makefile.common.in, configure.in, doc/Makefile: - About
documentation generation: don't use xmlto, use xlstproc (as
before but it is simpler).
2004-11-28 23:26 mcoolive
* utils/scripts/eaglediag: - improve eaglediag executed by the
simple user.
2004-11-28 02:46 Tux
* eagle-usb.spec: - disable autostart service only if the last rpm
is removed
2004-11-28 02:16 mcoolive
* eagle-usb.spec: - to fit to the last changes (add manpages, add
buildrequires, and cosmetic changes).
2004-11-28 01:54 mcoolive
* Makefile.common.in, configure.in: - replace CONFDIR by sysconfdir
- cosmetic changes
2004-11-27 19:49 mcoolive
* debian/README.Debian: [no log message]
2004-11-27 19:41 mcoolive
* configure.in: - impose autoconf>=2.50 - use AC_CONFIG_COMMANDS
instead of the manual weaving of rm -f config.cache - replace
"&&" by "-a" and "||" by "-o" in test
2004-11-27 19:14 mcoolive
* Makefile: - remove useless ``&&''
2004-11-27 15:32 mcoolive
* Makefile.common.in, configure.in: - remove unused HTML_STYLESHEET
and MAN_STYLESHEET - replace the test on xsltproc by a test on
xmlto
2004-11-27 15:27 mcoolive
* Makefile: - test the value of GEN_DOC here - remove useless
``&&'' ( ``make -n'' works only if make is the first command)
2004-11-27 15:24 mcoolive
* debian/control, doc/Makefile: - use xmlto instead of xsltproc. It
is simpler.
2004-11-25 22:16 mcoolive
* debian/eagle-usb-utils.manpages: - add eagleconfig_front.bash
manpage in debian packages
2004-11-25 16:16 mcoolive
* doc/sources/: eagleconfig.xml, eagleconfig_front.bash.xml,
eagletestconnec.xml: - fix eagleconfig manpage - add
eagleconfig_front.bash manpage - complete eagletestconnec manpage
2004-11-23 22:12 Tux
* utils/scripts/testconnec: - counter was never reinitialized
2004-11-23 03:10 mcoolive
* debian/eagle-usb-utils.manpages, doc/sources/eagletestconnec.xml:
- add eagletestconnec manpage
2004-11-23 03:08 mcoolive
* doc/sources/: eaglediag.xml, pppoa.xml, startadsl.xml,
stopadsl.xml: - improve man pages: - remove startmire reference
in startadsl and stopadsl manpages - fix eaglediag and pppoa
2004-11-22 07:53 mcoolive
* Makefile.common.in, configure.in: - remove @DESTDIR@ from
./configure, it is not relevant.
2004-11-21 18:01 mcoolive
* utils/scripts/testconnec: - simplification ( use break in for i
in $IP )
2004-11-21 17:35 mcoolive
* utils/scripts/eu_config_bash: - fix the last modification ("keep"
is not an integer)
2004-11-21 16:32 Tux
* utils/scripts/testconnec: - replaced == with -eq - modem is now
rebooted when fctStartAdsl fail 4 times
2004-11-21 16:30 Tux
* utils/scripts/setvars: - replaced == with -eq - removed
#!/bin/bash
2004-11-21 16:29 Tux
* utils/scripts/: eu_config_bash, eu_init, fctStartAdsl,
fctStopAdsl, net_cnx_up, uninstOld, Makefile: - replaced == with
-eq
2004-11-21 16:28 Tux
* utils/scripts/eagleconfig: - replaced == with -eq - testconnec =>
eagletestconnec
2004-11-21 15:38 mcoolive
* debian/eagle-usb-utils.postinst: - fix post-installation script:
eagletestconnec and eagleconfig_front.bash are renamed.
2004-11-21 15:37 mcoolive
* debian/changelog: - enter the good date
2004-11-20 18:04 mcoolive
* debian/: changelog, control, po/fr.po, po/nl.po: - change the
number version
2004-11-20 18:00 mcoolive
* debian/po/ja.po: - added japan translation for debian package
2004-11-19 00:34 mcoolive
* debian/eagle-usb-utils.preinst: - clean new obsolet files, remove
old old obsolet files
2004-11-17 22:02 Tux
* VERSION: 2.0.1
2004-11-17 22:02 Tux
* driver/user/Makefile: - change paths
2004-11-17 22:01 Tux
* doc/Makefile: - MAN_PAGE and HTML_PAGE should always be declared
because there are used by the "make clean" rule
2004-11-17 21:58 Tux
* utils/eagleconnect/Makefile: - "make uninstall" should remove
eagleconnect.tcl
2004-11-17 21:58 Tux
* utils/scripts/uninstOld: - uninstOld should not require
Makefile.common
2004-11-17 21:56 Tux
* configure.in: - wrong path in --help
2004-11-17 21:55 Tux
* eagle-usb.spec, utils/scripts/Makefile,
utils/scripts/eagleconfig, utils/scripts/setvars: - change paths
2004-11-17 21:54 Tux
* Makefile.common.in: - removed EU_SCRIPT_DIR
2004-11-17 21:54 Tux
* Makefile: - don't move *.rpm to eagle-usb.dist
2004-11-17 17:41 mcoolive
* debian/eagle-usb-utils.config, debian/eagle-usb-utils.postinst,
utils/scripts/Makefile: - (FHS compliance) move setvars in
/etc/eagle-usb and change its permissions
2004-11-15 23:44 mcoolive
* utils/scripts/eagleconfig: - one simplification (eval)
2004-11-15 23:35 mcoolive
* configure.in: - move dsp codes in /usr/share/... by default (FHS
compliance)
2004-11-15 23:20 mcoolive
* Makefile.common.in: - move translation files in /usr/share/...
(FHS compliance)
2004-11-11 17:21 mcoolive
* utils/scripts/: Makefile, eagleconfig, fctStartAdsl, testconnec:
- renaming $EU_SCRIPT_DIR/lock in
$EU_DIR/eagle-usb_must_be_configured
2004-11-11 17:18 mcoolive
* utils/scripts/lang/: br, de, en, es, f2, fr, it, mk, p2, pl: -
adapt translation files to the renaming: lock ->
eagle-usb_must_be_configured
2004-11-11 16:29 mcoolive
* utils/scripts/: fctStartAdsl, startadsl: - improve comments
2004-11-11 16:22 mcoolive
* utils/scripts/lang/: it, p2, pl: - fix traduction files
(EAGLESCRIPT_DIR -> EU_SCRIPT_DIR)
2004-11-11 11:56 mcoolive
* utils/scripts/: fctStartAdsl, setvars: - tests are simplified (
&& -> -a ; || -> -o )
2004-11-09 22:09 baud123
* utils/scripts/eu_config_bash: add ISP Libero.it
2004-11-09 15:31 mcoolive
* Makefile: - add VERSION variable, modify semantic of DEBVERSION
variable - improve calculation of ARCHNAME - in deb rule: replace
DEBVERSION by VERSION and pversion by DEBVERSION
2004-11-09 14:54 mcoolive
* makedist: - simplifications and add comments
2004-11-08 20:57 baud123
* utils/scripts/eu_config_bash: add ISP Etisalat (UAE)
2004-11-07 22:10 baud123
* ChangeLog: version 2.0.0 official
2004-11-07 22:07 Tux
* eagle-usb.spec: - wrong release date
2004-11-07 22:06 Tux
* eagle-usb.spec: - DSP were moved - add mk language
2004-11-07 21:49 Tux
* utils/scripts/eagleconfig: - eagle-usb => $MODULE_STR
2004-11-07 21:48 Tux
* utils/scripts/setvars: - add $FCTSTARTADSL and $FCTSTOPADSL -
polish language temporary use p2 (without special characters)
2004-11-07 21:40 baud123
* utils/scripts/eagleconfig: cp -f for eagle-usb.conf
2004-11-07 21:39 mcoolive
* utils/scripts/setvars: - fix bug (when user add alias or other
options in modprobe.conf)
2004-11-07 21:32 mcoolive
* utils/scripts/eagleconfig: - improve FORCE_IF section
2004-11-07 21:03 baud123
* utils/scripts/Makefile: add install for mk language
2004-11-07 21:01 mcoolive
* debian/po/: fr.po, nl.po, templates.pot: - (Debian conf) fit
traductions and add Dutch traduction.
2004-11-07 20:58 mcoolive
* debian/: eagle-usb-utils.config, eagle-usb-utils.templates: -
(Debian configuration) Add some ISPs.
2004-11-07 17:18 baud123
* driver/user/CMVepWO.txt: rename CMVep.txt to CMVepWO.txt
2004-11-07 17:17 baud123
* driver/user/CMVeiWO.txt: rename CMVei.txt to CMVeiWO.txt
2004-11-07 16:18 baud123
* utils/scripts/eagleconfig: always recreate eagle-usb.conf
2004-11-07 16:04 baud123
* utils/scripts/eu_config_bash: correction on list of ISP (again2)
2004-11-07 10:06 sleeper
* driver/: eu_main.c, eu_types.h, eu_utils.c, eu_utils.h: Fix
chipset version reporting
2004-11-07 09:45 sleeper
* driver/: eu_main.c, user/eaglectrl.c: Fix typos + add revision
2004-11-06 21:44 baud123
* driver/user/CMVei.txt: update with CMVei 2.0.31 version
2004-11-06 21:13 sleeper
* driver/: eu_main.c, eu_types.h, eu_utils.c: Cosmetic changes for
eaglestat + Add VID/PID + Chipset version (1,2 or 3)
2004-11-06 20:49 sleeper
* driver/user/eaglectrl.c: Cosmetic changes
2004-11-06 05:25 baud123
* utils/scripts/eu_config_bash: correction on list of ISP
2004-11-05 00:59 baud123
* utils/scripts/eu_config_bash: add some ISP
2004-11-05 00:54 mcoolive
* utils/scripts/: fctStartAdsl, startadsl: - shift error>=7 (exit
and comments) for the "6 = modem not operational"
2004-11-05 00:22 mcoolive
* utils/scripts/eaglediag: - fix a typo, simplify some calculations
2004-11-04 23:15 baud123
* utils/scripts/eaglediag: permit log for normal user (using sudo)
& correct some comments for newbies
2004-11-04 22:42 Tux
* configure.in: - reactivate check for tck and tk binaries
2004-11-04 21:06 Tux
* utils/scripts/startadsl: - moved error message here (prevent non
pppd users to use startadsl -m)
2004-11-04 21:03 Tux
* utils/scripts/fctStartAdsl: - only allow users using pppd to
connect to the mire
2004-11-04 18:07 mcoolive
* Makefile: - fix "deb" target
2004-11-04 15:25 mcoolive
* utils/scripts/startmire: - remove obsolet and unused script
2004-11-03 22:14 sleeper
* driver/user/eaglectrl.c: Fix a bug that prevent to have the max.
nb of CMVs
2004-11-03 15:39 mcoolive
* debian/: changelog, control: - replace ppp by pppoe in Recommends
section
2004-11-02 23:32 baud123
* driver/user/Makefile: correct directory for CMV files
2004-11-02 22:46 Tux
* utils/scripts/eagleconfig: - remove modem mac address from
/etc/iftab
2004-11-02 22:39 baud123
* driver/user/Makefile: add make uninstall CMV...txt
2004-11-01 11:33 sleeper
* driver/eu_msg.c: Remove useless array
2004-11-01 00:59 mcoolive
* Makefile: - fix the last modifications (rename orig.tar.gz file
and clean the build)
2004-10-31 23:35 sleeper
* driver/user/eaglectrl.c: Fix a buffer overflow when reading CMVs
2004-10-31 21:04 mcoolive
* Makefile: - improve the debian targets
2004-10-31 18:15 mcoolive
* makedist: - some simplifications
2004-10-31 18:11 mcoolive
* utils/scripts/eu_dsp: [no log message]
2004-10-29 19:29 sleeper
* driver/: macros.h, eu_eth.c, eu_main.c: Make it compile again on
2.4
2004-10-29 03:43 baud123
* driver/user/Makefile: add install for CMV.txt files
2004-10-29 03:39 baud123
* driver/user/: CMVepES.txt, CMVepFR.txt, CMVepIT.txt: add CMV.txt
files
2004-10-27 19:16 sleeper
* driver/eu_boot_sm.c: No need to continue booting if modem is no
more there
2004-10-26 19:16 mcoolive
* driver/user/eaglectrl.c: - fix a typo
2004-10-25 21:48 Tux
* utils/scripts/eagleconfig: - "x" char was missing, autostart
should now works on slack
2004-10-25 00:44 baud123
* driver/user/: CMVei.txt, CMVep.txt: update latest files versions
CMV from ADI
2004-10-25 00:17 mcoolive
* debian/eagle-usb-utils.postinst: - fix: eu_config_bash is renamed
eagleconfig_bash
2004-10-24 23:58 mcoolive
* utils/scripts/eaglediag: - remove key word "function" (remove
bashisme -> more sh) - fix one typo - don't use colors if
eaglediag is used in a pipeline
2004-10-24 19:41 sleeper
* driver/: eu_boot_sm.c, eu_utils.c: Fix more "no device" case ...
2004-10-24 02:42 baud123
* utils/scripts/eaglediag: add color to eaglediag OK/KO
2004-10-23 16:50 mcoolive
* debian/: control.modules, postinst.modules: - files are renamed
(suffix ".in" is added)
2004-10-23 16:36 mcoolive
* debian/: control.in.modules, postinst.in.modules, rules.modules:
- clean and simplify the build of the module package
2004-10-23 16:33 mcoolive
* debian/rules: - clean and simplify Makefile
2004-10-23 15:55 mcoolive
* debian/: control, control.modules: - improve the short
description of module package eagle-usb
2004-10-23 12:59 mcoolive
* doc/sources/eaglectrl.xml: - supplement description - fix a typo
2004-10-23 12:57 mcoolive
* driver/user/eaglectrl.c: - fix the option conversion - verify
option overflow
2004-10-23 12:54 mcoolive
* driver/user/eaglectrl.c: - cosmetic changes - enhance the help
message
2004-10-22 07:34 sleeper
* driver/eu_msg.c: Fix a warning
2004-10-22 01:14 sleeper
* driver/eu_msg.c: Fix a bug that prevent ADDMSG_FROM_TEXTFILE from
working (src == dst case in eu_build_msg) / remove check on
symbolic address to reflect ADI philosophie ;)
2004-10-20 00:45 sleeper
* driver/user/eaglectrl.c: Fix a minor discrepency
2004-10-19 23:01 sleeper
* driver/: eu_eth.c, eu_main.c: Fix a bug in the release of the
netdevice .. Thanks to Laurent Riffard <laurent.riffard at
free.fr>
2004-10-19 22:36 mcoolive
* debian/control: [no log message]
2004-10-18 23:31 Tux
* Makefile: - as /usr is the default path, simplify rpmbuild
command
2004-10-18 23:30 Tux
* eagle-usb.spec: - use absolute path - force %preun to return 0
2004-10-18 23:29 Tux
* configure.in: - return an error when build path contains a space
2004-10-17 22:37 sleeper
* driver/user/eaglectrl.c: remove hex_to_digit / use CONF_DIR to
find CMVep.txt file
2004-10-17 22:37 sleeper
* driver/eu_utils.c: Do not reschedule ctrl urb in case of missing
device
2004-10-17 22:36 sleeper
* driver/eu_types.h: Fix packed attribute for last versions of gcc
2004-10-17 22:35 sleeper
* driver/: Pipes.c, eu_main.c: Try to handle late coming disconnect
2004-10-17 22:34 sleeper
* driver/: Makefile, Makefile-2.6: Allow compilation of driver with
CMVS support without having to explicity compiles it with
USE_CMVS=1 set
2004-10-17 21:13 mcoolive
* utils/scripts/setvars: - simplifications (factorize code with
readConfFile function)
2004-10-17 02:13 mcoolive
* utils/scripts/setvars: - remove unused variables - "en" is the
default language
2004-10-17 02:08 mcoolive
* utils/scripts/eagleconfig: - eu_config_bash => eagleconfig_bash
(in comments)
2004-10-15 00:11 mcoolive
* debian/: changelog, eagle-usb-utils.lintian,
eagle-usb-utils.postinst, rules: - use overrides to mute lintian
(it's the clean solution)
2004-10-12 23:51 sleeper
* driver/eu_msg.c: Do not cry on unhandled message
2004-10-12 22:31 sleeper
* driver/user/eaglectrl.c: Fix a bug that lead to error if user
specified a 0x before the hexa value of LineType
2004-10-12 22:14 sleeper
* driver/eu_main.c: Add #ifdef's to allow compilation on 2.4.X
2004-10-10 22:33 Tux
* eagle-usb.spec: - hotplug and init.d scripts are now removed by
Makefile
2004-10-10 19:31 emmanuel
* utils/eagleconnect/parameagleconnect.tcl: Parameagleconnect.tcl
updated : bug corrected, and eagleconnect.conf file path modified
2004-10-10 17:03 baud123
* ChangeLog: Changelog for 2.0.0
2004-10-10 16:53 baud123
* ChangeLog: Changelog for 2.0.0
2004-10-10 16:51 Tux
* eagle-usb.spec: - removed usb.usermap - eu_config_bash =>
eagleconfig_bash
2004-10-10 16:50 mcoolive
* debian/eagle-usb-utils.postinst: delete ref to startmire
2004-10-10 16:47 mcoolive
* debian/eagle-usb-utils.manpages: Delete manpage of startmire
2004-10-10 16:39 Tux
* utils/scripts/Makefile: [no log message]
2004-10-10 16:01 Tux
* utils/scripts/Makefile: - removed unused usb.usermap
2004-10-10 15:54 Tux
* utils/scripts/uninstOld: - remove startmire
2004-10-10 15:53 Tux
* utils/scripts/Makefile: - removed startmire - eu_config_bash =>
eagleconfig_bash
2004-10-10 15:52 Tux
* utils/scripts/eagleconfig: - eu_config_bash => eagleconfig_bash -
when changing ISP, DSP is not sent anymore
2004-10-10 15:48 Tux
* VERSION: - version 2.0.0
2004-10-10 15:48 Tux
* Makefile.common.in: [no log message]
2004-10-10 15:48 Tux
* Makefile: - removed unused string
2004-10-10 15:47 Tux
* eagle-usb.spec: - removed startmire and its manpage
2004-10-10 15:44 Tux
* configure.in: - with_cmvs => enable_cmvs - use /usr as default
path for all distribs
2004-10-10 15:35 baud123
* driver/user/eagle-usb.conf: include OPTNxx values from CMVep.txt
of 2.0.31 sagem driver
2004-10-10 14:54 Tux
* utils/scripts/rc.eagle-usb: - rc.eagle-usb (slackware) is
replaced by eu_init (common script for all distribs)
2004-10-10 14:51 Tux
* doc/sources/startmire.xml: - startmire was useless (same as
startadsl -m), removed
2004-10-10 10:24 sleeper
* driver/: Makefile, Makefile-2.6, eu_main.c: Fix compil bug for
CMVs support / allow compilation with CMVS by issuing USE_CMV=1
make
2004-10-10 03:10 mcoolive
* driver/user/eaglectrl.c: [no log message]
2004-10-09 13:59 sleeper
* Makefile.common.in, configure.in, driver/Makefile-2.4,
driver/Makefile-2.6, driver/eagle-usb.h, driver/eu_firmware.h,
driver/eu_main.c, driver/eu_msg.c, driver/eu_types.h,
driver/eu_utils.c, driver/user/Makefile, driver/user/eaglectrl.c:
Added eagle III support + preliminary CMVs support
2004-10-07 22:35 Tux
* utils/scripts/lang/p2: [no log message]
2004-10-05 20:22 Tux
* eagle-usb.spec: - Fedora doesn't use bzipped manpages - forgot
/etc => ${sysconfdir}
2004-10-04 22:46 Tux
* VERSION: - update needed to build rpm
2004-10-04 22:45 Tux
* Makefile: - "make rpm" now check if .rpmrc and .rpmmacros are
present
2004-10-04 22:44 Tux
* eagle-usb.spec: - update with last changes (paths updated, images
added)
2004-10-04 22:43 Tux
* configure.in: - force predefined $PATH
2004-09-29 13:54 mcoolive
* utils/scripts/setvars: - (POSIX) commands are typed "int main..."
=> replace "$? ==" by "$? -eq"... - fix typo - cosmetic changes
2004-09-29 13:44 mcoolive
* debian/: eagle-usb-utils.config, eagle-usb-utils.templates,
po/fr.po, po/templates.pot: - fix names of ISP and the french
traduction
2004-09-28 22:26 emmanuel
* utils/eagleconnect/Makefile: Images directory and pictures
associated added
2004-09-28 22:20 emmanuel
* utils/eagleconnect/eagleconnect.tcl: Font of connection state
field modified, some corrections added
2004-09-28 21:45 Tux
* utils/scripts/: Makefile, setvars: - add $BOOT_METHOD
2004-09-28 21:43 Tux
* utils/scripts/eu_init: - prevent PATH from being modified by
"/etc/rc.d/init.d/functions" on Aurox
2004-09-28 12:45 mcoolive
* utils/scripts/eu_dsp: - cosmetic changes
2004-09-28 12:27 mcoolive
* utils/scripts/testconnec: - (POSIX) commands are typed "int
main..." => replace "$? ==" by "$? -eq"
2004-09-28 12:11 mcoolive
* utils/scripts/fctStopAdsl: - (POSIX) commands are typed "int
main..." => replace "$? ==" by "$? -eq"
2004-09-28 12:06 mcoolive
* utils/scripts/fctStartAdsl: - to respect POSIX: commands are
typed "int main..." => replace "$? !=" by "$? -ne"
2004-09-28 11:55 mcoolive
* utils/scripts/eagleconfig: - to respect POSIX: command are typed
"int main..." => replacer "$? ==" by "$? -eq" - to decrease
the number of pipes (`cat fic | sed` => `sed <fic`) - cosmetic
changes
2004-09-27 23:59 mcoolive
* driver/Sm.c: - fix typo
2004-09-27 00:21 mcoolive
* configure.in: - fix a PATH problem (we can be not root to
construct packet)
2004-09-26 23:41 mcoolive
* debian/changelog: [no log message]
2004-09-26 23:26 mcoolive
* utils/scripts/eagleconfig: - i ensure myself of the access
permissions of /etc/eagle-usb/eagle-usb.conf
2004-09-26 22:37 mcoolive
* debian/: eagle-usb-utils.config, eagle-usb-utils.templates,
po/fr.po, po/templates.pot: - add new ISP.
2004-09-26 21:43 Tux
* utils/scripts/lang/: br, de, en, es, f2, fr, it, p2, pl: - added
localization for testconnec
2004-09-26 21:39 Tux
* utils/scripts/testconnec: - improved lock file management -
better log messages - localization
2004-09-26 21:36 Tux
* utils/scripts/setvars: - add comments
2004-09-26 21:36 Tux
* utils/scripts/eu_config_bash: - only ask "update DNS?" in expert
mode
2004-09-26 21:30 Tux
* utils/eagleconnect/Makefile: - add $EU_DIR path - install
eagleconnect documentation
2004-09-26 21:29 Tux
* utils/eagleconnect/lang/doc_fr.txt: - Initial revision
2004-09-26 21:29 Tux
* utils/eagleconnect/eagleconnect.tcl: - changed config file path
2004-09-26 20:51 mcoolive
* utils/scripts/eagleconfig: - little simplifications
2004-09-26 20:35 mcoolive
* configure.in: - cosmetic changes (attempt to divide and regroup
code)
2004-09-26 01:00 mcoolive
* utils/scripts/eu_config_bash: [no log message]
2004-09-25 17:27 baud123
* utils/scripts/eu_config_bash: add argentina, belgium, lithuania,
morocco, thailand ISP (41 in DB now !)
2004-09-23 22:39 Tux
* utils/scripts/Makefile: - use generic boot method detection -
remove slackware specific init script (use generic one)
2004-09-23 22:37 Tux
* utils/scripts/eu_init: - add support for slackware (we do not use
rc.eagle-usb anymore)
2004-09-23 22:35 Tux
* configure.in, Makefile.common.in, utils/scripts/eagleconfig: -
use generic boot method detection
2004-09-23 20:50 baud123
* utils/scripts/eaglediag: replace == with = for string comparison
2004-09-22 21:30 mcoolive
* debian/: rules, rules.modules: Change directory of DSP codes.
2004-09-20 15:19 mcoolive
* configure.in: - rewrite the tests to fit to the new sources of
the driver and pppoa
2004-09-20 14:00 mcoolive
* configure.in: - Some simplifications : go up "rm -f
config.cache", rename variables
2004-09-19 23:55 mcoolive
* configure.in: - add comments - use obsolet macros (for the
moment). The news are commented.
2004-09-19 23:35 mcoolive
* debian/po/: fr.po, templates.pot: Update traduction : add
update_dns question and small changes
2004-09-19 23:28 mcoolive
* debian/: eagle-usb-utils.config, eagle-usb-utils.postinst,
eagle-usb-utils.templates: Add option update_dns in debconf
questionnaire.
2004-09-19 18:34 sleeper
* utils/eagleconnect/images/: fichierssysteme.ppm, fonts.ppm: First
version
2004-09-19 16:35 emmanuel
* utils/eagleconnect/parameagleconnect.tcl: Parameagleconnect.tcl
rewriten : icons added, many bugs corrected (frame resizing whith
new fonts size)
2004-09-16 23:28 mcoolive
* configure.in: removed useless $SYSCONF_DIR variable (bis)
2004-09-16 22:48 Tux
* configure.in, utils/scripts/Makefile, utils/scripts/eu_init,
utils/scripts/setvars, utils/scripts/startadsl,
Makefile.common.in: - removed useless $SYSCONF_DIR variable
2004-09-16 22:13 Tux
* utils/scripts/: eagleconfig, eu_config_bash, setvars, lang/de,
lang/en, lang/es, lang/f2, lang/fr, lang/it, lang/p2, lang/pl: -
"eagleconfig -e" now ask whether resolv.conf should be
automatically updated
2004-09-15 21:25 Tux
* Makefile.common.in, configure.in, utils/scripts/Makefile,
utils/scripts/eu_init, utils/scripts/setvars,
utils/scripts/startadsl: - make sure that parent folders of the
lock file exist
2004-09-14 23:00 Tux
* utils/scripts/fctStartAdsl: - redirect debug mode (-d) output to
syslog instead of /dev/null !
2004-09-14 22:59 Tux
* utils/scripts/eu_init: [no log message]
2004-09-14 22:44 Tux
* utils/scripts/Makefile: - Mandrakelinux >=10.1 now uses eagle-usb
service too
2004-09-14 22:44 Tux
* utils/scripts/fctStopAdsl: - hide ifdown errors (prevent messages
such as "RTNETLINK answers...")
2004-09-14 22:42 Tux
* utils/scripts/eu_init: - useless to create lock file's parents
folders (should be done before) - echo_success/echo_failure sould
not be called asynchronously
2004-09-14 22:38 Tux
* utils/scripts/eagleconfig: - on Mdk10.1, give up "network"
service => use "eagle-usb" service instead
2004-09-12 22:00 sleeper
* driver/: Me.c, Oam.c, eu_msg.c, eu_utils.c, macros.h,
firmware/builddsp.c, user/eaglectrl.c: Fix jiffies computation
plus error/dbg string for AMD64 portation
2004-09-12 21:52 sleeper
* pppoa/pppoa.c: Fix display of MAC address (sent by Gilles
Espinasse <g.esp@free.fr>)
2004-09-08 22:39 sleeper
* driver/Pipes.c: Fix a bug that prevent compilation in BULK mode
2004-09-08 21:16 mcoolive
* debian/control: The version of autoconf must be >= 2.52 to
construct Debian package.
2004-09-06 12:00 mcoolive
* debian/: eagle-usb-utils.preinst, eagle-usb-utils.postrm,
eagle-usb-utils.postinst: - remove unused /etc/modutils/eagle-usb
configuration file (thk J-P Pourrez)
2004-09-05 23:12 mcoolive
* debian/changelog: [no log message]
2004-09-05 23:02 mcoolive
* debian/: eagle-usb-utils.templates, po/fr.po, po/templates.pot:
[no log message]
2004-09-05 22:34 mcoolive
* Makefile: Improve the deb rule
2004-09-05 01:07 mcoolive
* debian/po/fr.po: Fix two grammatical mistakes
2004-09-04 15:45 mcoolive
* debian/eagle-usb-utils.postinst: Always keep dsl password in
debconf database
2004-09-04 15:43 mcoolive
* debian/eagle-usb-utils.config: Don't get anymore "eagle-usb/ISP"
template from setvars (pb with space)
2004-09-04 15:41 mcoolive
* debian/eagle-usb-utils.templates: Fix last modifications
2004-09-04 15:40 mcoolive
* debian/po/fr.po: Fix last modifications in debconf templates
2004-09-04 15:39 mcoolive
* debian/po/templates.pot: Fix last modifications in templates
2004-09-04 11:35 mcoolive
* debian/eagle-usb-utils.postinst: [no log message]
2004-09-04 01:13 mcoolive
* configure.in: Disable autodetection of hotplug (for
cross-compiling), maybe an option enable-hotplug is better.
2004-09-03 00:50 mcoolive
* debian/po/fr.po: adapt fr.pot with improvements of
eagle-usb-utils.templates
2004-09-03 00:49 mcoolive
* debian/po/templates.pot: adapt templates.pot with improvements of
eagle-usb-utils.templates
2004-09-03 00:45 mcoolive
* debian/eagle-usb-utils.templates: Questionnaire corrected by
Christian Perrier <bubulle@debian.org> Remove "remember_password"
template
2004-09-03 00:39 mcoolive
* debian/eagle-usb-utils.postinst: The password is always remove
from debconf database. We can find it dynamically in ppp
configuration files.
2004-09-03 00:37 mcoolive
* debian/eagle-usb-utils.config: Don't ask anymore if Debconf must
remember the password. The password is always remove because we
can find it dynamically in ppp configuration files.
2004-09-02 21:11 baud123
* utils/scripts/rc.eagle-usb: 2nd correctinon for asynchronous
start
2004-09-02 21:10 baud123
* utils/scripts/rc.eagle-usb: correct asynchronous start
2004-08-30 01:59 mcoolive
* debian/rules: - remove null and void lines about init.d/eagle-usb
2004-08-30 01:54 Tux
* utils/scripts/Makefile: - create directory /etc/init.d
2004-08-30 01:51 mcoolive
* debian/changelog: [no log message]
2004-08-30 00:35 baud123
* README: installation notes
2004-08-30 00:21 baud123
* ChangeLog: version 1.9.9
2004-08-30 00:04 Tux
* configure.in: - removed bc dependancy
2004-08-29 23:49 Tux
* driver/user/eaglectrl.c: [no log message]
2004-08-29 23:41 baud123
* utils/scripts/eaglediag: add CR at end of dpkg-query
2004-08-29 23:36 Tux
* utils/scripts/eu_dsp: - add a small delay to prevent a bug with
"eaglectrl -d"
2004-08-29 23:33 mcoolive
* debian/control: eagle-usb-utils debian packet does not depend any
more of gawk
2004-08-29 23:29 Tux
* utils/scripts/eagleconfig: [no log message]
2004-08-29 23:29 baud123
* utils/scripts/lang/it: backslash must be near double quote, no
space...
2004-08-29 23:29 baud123
* utils/scripts/lang/it: backslash must be near double quote, no
space...
2004-08-29 23:25 baud123
* utils/scripts/lang/it: missing double quote
2004-08-29 23:20 Tux
* utils/scripts/setvars: - add function flt_to_str (used to compare
floats)
2004-08-29 23:19 Tux
* utils/scripts/rc.eagle-usb: - add asynchronous start
2004-08-29 23:18 Tux
* utils/scripts/Makefile: - install eu_init itself (instead of
eagleconfig)
2004-08-29 23:16 Tux
* utils/scripts/eagleconfig: - removed bc dependancy - let Makefile
install eu_init script
2004-08-29 22:59 baud123
* utils/scripts/eaglediag: many improvements, removal of gawk use,
more generic test than free degroupe
2004-08-29 22:51 sleeper
* driver/user/eaglectrl.c: Add an error message in case we can't
open DEVICE path
2004-08-29 21:29 sleeper
* driver/user/eaglectrl.c: EXIT_SUCCESS is the only real way.
2004-08-29 21:28 sleeper
* driver/eu_msg.c: code beautification
2004-08-28 22:25 mcoolive
* debian/eagle-usb-utils.config: - Delete wrong lines (reading of
old parameters). Some parameters need to be converted.
2004-08-28 21:44 mcoolive
* debian/rules: - change permissions of /etc/init.d/eagle-usb
2004-08-28 18:53 baud123
* README: minimal documentation
2004-08-28 17:47 baud123
* ChangeLog: update for coming 1.9.9rc2
2004-08-28 14:35 mcoolive
* debian/po/fr.po: - corrected by the language team
<debian-l10n-french@lists@debian.org>
2004-08-28 02:06 baud123
* utils/scripts/lang/it: missing backslash causing errors
2004-08-28 00:50 mcoolive
* debian/changelog: [no log message]
2004-08-28 00:49 mcoolive
* debian/control: Fix the version of automake in Build-Depends
2004-08-27 23:44 mcoolive
* debian/eagle-usb-utils.postrm: - fix the last modification
2004-08-27 20:02 mcoolive
* configure.in: - support ifupdown is not written for Debian
2004-08-27 19:51 mcoolive
* debian/control.modules: Add Depends on module-init-tools |
modutils
2004-08-27 19:36 mcoolive
* debian/eagle-usb-utils.postinst: - add peers/provider -> adsl
link to permit a simple ``pon'' (ppp config) - fix the written of
config files used by modutils
2004-08-27 19:25 mcoolive
* debian/eagle-usb-utils.postrm: - maybe remove peers/provider
2004-08-27 19:23 mcoolive
* debian/control: - add Depends on modutils | module-init-tools
2004-08-27 16:29 mcoolive
* utils/scripts/eagleconfig: - fix last modifications
2004-08-27 11:34 mcoolive
* debian/rules: - eu_dsp isn't copied in good place, the normal
installation make this now.
2004-08-27 11:31 mcoolive
* utils/scripts/setvars: - remove substring expansion (setvars is
executed with source, so it can be executed by another shel
than bash)
2004-08-27 11:16 mcoolive
* utils/scripts/Makefile: - create hotplug/usb directory if it is
needed
2004-08-26 23:43 Tux
* utils/scripts/testconnec: [no log message]
2004-08-26 23:42 Tux
* utils/scripts/Makefile: - install eu_dsp script (previously
eagleconfig did that)
2004-08-26 23:40 Tux
* utils/scripts/fctStartAdsl: - add exec to avoid an unuseful
process
2004-08-26 23:39 Tux
* utils/scripts/eagleconfig: - removed generation of the link to
eu_dsp - moved ifcfg-ppp0 generation (Mdk10.1)
2004-08-26 23:36 Tux
* Makefile: - "make clean" does not remove manpages anymore
2004-08-26 23:35 Tux
* configure.in: - detect whether manpages are already generated
(prebuilt)
2004-08-26 22:47 sleeper
* driver/Mpoa.c, driver/eu_eth.c, pppoa/if.c, pppoa/ppp.c,
pppoa/pppoa.c, pppoa/pppoa.h: Add patch from Robert Siemer
<Robert.Siemer@backsla.sh> to remove artificial limit on PPPoA
2004-08-26 22:06 sleeper
* driver/eu_main.c: Fix a typo in a comment
2004-08-26 17:56 mcoolive
* utils/scripts/eagleconfig: - if the symbolic link
/etc/resolv.conf is erased then one tries to restore his old
contents - don't filter and don't add the new login if it is the
empty word
2004-08-26 17:01 mcoolive
* debian/control: add Build-Depends on net-tools
2004-08-26 16:59 mcoolive
* debian/eagle-usb-utils.postinst: Fix: startadsl doesn't wait
synchro
2004-08-26 16:57 mcoolive
* debian/changelog: [no log message]
2004-08-26 16:50 mcoolive
* debian/eagle-usb-utils.postrm: - bug: postrm failed when
pap-secret (or chap-secret) is empty or contains only the line
"adsl@adsl".
2004-08-25 23:10 Tux
* utils/eagleconnect/Makefile: - changed eagleconnect.conf path
2004-08-25 23:08 Tux
* eagle-usb.spec: - update description
2004-08-25 15:55 mcoolive
* Makefile: - fix deb rule: there was a bug when the name of the
directory was "eagle-usb-version" instead of "eagleusb"
(tarball versus cvs)
2004-08-25 14:46 mcoolive
* debian/changelog: [no log message]
2004-08-25 14:44 mcoolive
* debian/eagle-usb-utils.config: - look setvars to take manual
modifications (or modifications performed by eagleconfig)
during debconf configuration.
2004-08-25 14:41 mcoolive
* debian/eagle-usb-utils.postinst: - look error code of eagleconfig
to decide if install fail - cosmetic changes
2004-08-25 14:37 mcoolive
* debian/rules: - don't failed if hotplug is not installed
2004-08-23 11:07 mcoolive
* debian/control: - docbook is needed to build the package
(xsltproc).
2004-08-23 11:01 mcoolive
* doc/Makefile: - --nonet option to force the use of local entities
2004-08-23 00:00 baud123
* ChangeLog: - 1.9.9rc1
2004-08-22 16:10 mcoolive
* debian/changelog: [no log message]
2004-08-22 13:37 mcoolive
* debian/rules.modules: - use $confflags parameters (debian policy)
in the call of ./configure
2004-08-22 12:46 mcoolive
* debian/eagle-usb-utils.postrm: - remove duplicated call to
`update-rc.d' (`postrm remove' is always called before `postrm
purge')
2004-08-22 11:03 mcoolive
* debian/rules: - use confflags in parameters of `./configure'
(Debian Policy)
2004-08-21 23:43 mcoolive
* utils/scripts/setvars: - Fix to read ISP_PWD between simple quote
(and not only double quote)
2004-08-21 01:36 mcoolive
* debian/eagle-usb-utils.postinst: - if postinst isn't called with
the `configure' parameter, we do nothing (debian policy).
2004-08-21 01:27 mcoolive
* debian/eagle-usb-utils.preinst: In case of `abort-upgrade', do
nothing (Debian policy).
2004-08-21 00:46 mcoolive
* debian/eagle-usb-utils.postrm: If package disappear, the package
is purged.
2004-08-21 00:42 mcoolive
* debian/postinst.modules: - add #DEBHELPER comment (code is
inserted by debconf)
2004-08-20 20:46 mcoolive
* debian/eagle-usb-utils.postrm: - changes to respect the Debian
policy
2004-08-20 15:06 mcoolive
* debian/eagle-usb-utils.postinst: - we don't want the installation
of the package fail because bad parameters
2004-08-20 01:00 mcoolive
* utils/scripts/testconnec: - use $SYSCONF_FILE instead of its
potential values
2004-08-19 01:50 mcoolive
* utils/scripts/setvars: - move the `source' of french messages so
that it is made only once.
2004-08-18 13:54 mcoolive
* utils/scripts/eaglediag: - fix last modifications (delete a
forget `}' and add a space after one cmd)
2004-08-18 00:10 baud123
* utils/scripts/eaglediag: remove TMP_FILE + CMDECHO (not used any
more)
2004-08-16 23:42 Tux
* Makefile: - rpm generation : use /usr as default prefix (instead
of /usr/local)
2004-08-16 23:41 Tux
* eagle-usb.spec: - add eagleconnect & man pages
2004-08-16 22:56 mcoolive
* utils/scripts/eu_config_bash: - call to `setStrings' only when
necessary
2004-08-15 13:48 mcoolive
* configure.in: - pidof is in /bin with Debian System
2004-08-15 13:27 mcoolive
* debian/rules: - remove useless command - add commands here to
mute lintian (more close to the good solution)
2004-08-15 13:20 mcoolive
* debian/eagle-usb-utils.postinst: - fix the calculation of
autostart
2004-08-15 12:44 mcoolive
* debian/eagle-usb-utils.postrm: - remove the trick that mute
lintian (and add code in rules ?temporarily?)
2004-08-15 12:22 Tux
* configure.in: - add check for pidof
2004-08-15 03:32 mcoolive
* utils/scripts/eagleconfig: - cancel the "add protections around
ISP_LOGIN" (badly made)
2004-08-15 03:21 mcoolive
* utils/scripts/eagleconfig: - add protection around ISP_LOGIN and
mend a bad grep
2004-08-15 01:41 mcoolive
* utils/scripts/Makefile: - to ensure of the access permissions of
lock file
2004-08-15 01:22 Tux
* utils/scripts/Makefile: - removed unuseful&dangerous umask
2004-08-14 20:00 mcoolive
* utils/scripts/fctStopAdsl: - mend the parameters processing
2004-08-13 00:27 mcoolive
* Makefile: - fix deb rule : fix the generation of the files
`changes'
2004-08-12 00:44 mcoolive
* utils/scripts/setvars: - simplify the calculation of ISP_LOGIN
ans ISP_PWD and prevent an error in case where ISP_LOGIN is
between double quotes
2004-08-12 00:21 mcoolive
* debian/eagle-usb-utils.postrm:
- adapt the code which remove login and password in
(pap|chap)-secret files
Initial revision - this script is called after the
eagle-usb-utils package is removed - erase the dynamically
generated configuration files
2004-08-12 00:16 mcoolive
* debian/eagle-usb-utils.preinst: - we delete the OLD sections
'DEBCONF SECTION: EAGLE' (used in chap-secret and pap-secret
files).
Initial revision - this script is called before the installation
of eagle-usb package - old links are removed
2004-08-10 23:01 Tux
* utils/scripts/eagleconfig: - do a mix between old & new methods
to parse pppd config files
2004-08-10 18:51 Tux
* utils/scripts/fctStartAdsl: - removed an unuseful condition
2004-08-10 00:46 baud123
* utils/scripts/eaglediag: many cosmetic fixes from mcoolive +
echoLog/Newbie
2004-08-10 00:08 mcoolive
* doc/Makefile: - add definitions of install and uninstall rules -
if (GEN_DOC != yes) we do anything
2004-08-09 23:29 Tux
* utils/scripts/options: - add "updetach"
2004-08-09 23:28 mcoolive
* Makefile: - correct the generation of *.orig.tar.gz (by default
tar dump symlinks)
2004-08-09 23:28 Tux
* doc/Makefile: - remove "html" rule in "all"
2004-08-09 23:26 Tux
* utils/scripts/fctStartAdsl: - add pppoe support for "fctStartAdsl
-i"
2004-08-09 23:25 Tux
* utils/scripts/eagleconfig: - use pty "...fctStartAdsl -i" for all
distributions
2004-08-09 21:27 sleeper
* driver/user/eaglectrl.c: eaglectrl -v now outputs gcc version it
has been compiled with
2004-08-09 18:38 mcoolive
* debian/control: - eagle-usb-utils depends on gawk (because
eaglediag) - eagle-usb-utils depands on net-tools (route,
ifconfig, etc)
2004-08-08 22:59 Tux
* utils/scripts/eagleconfig: [no log message]
2004-08-08 18:05 emmanuel
* utils/eagleconnect/diagnostic.tcl: Diagnostic.tcl rewriten : now,
you can resize it without any problem, fonts are smaller and
saveas procedure has been corrected so that cancel button doesn't
make appear a mistake message
2004-08-07 14:33 Tux
* doc/Makefile: - removed stylesheets paths (moved to
Makefile.common)
2004-08-07 14:32 Tux
* Makefile.common.in: - add vars to generate docs (boolean +
stylesheets paths)
2004-08-07 14:31 Tux
* Makefile: - add rules to generate docs
2004-08-07 14:30 Tux
* configure.in: - add check for xsltproc & stylesheets to generate
docs - remove unused dialog check
2004-08-07 11:26 mcoolive
* utils/scripts/eagleconfig: - i ensure myself of the access
permissions of /etc/resolv.conf - fix the writing of pap-secret
and chap-secret, marks are posed to delimit what is written for
the configuration of eagle-usb
2004-08-07 11:21 mcoolive
* debian/eagle-usb-utils.postinst: - I ensure myself of the access
permissions of /etc/modprobe.d/eagle-usb - remove the attempt to
short circuit eagleconfig in configuration of ppp, and
remove the writing of ppp configuration files
Initial revision This script is executed after the installation
of the package eagle-usb-utils.
2004-08-06 21:32 Tux
* configure.in: - bug : dhclient detection on summary - disable
expect as it is not used yet
2004-08-06 18:32 emmanuel
* utils/eagleconnect/reseau.tcl: mise jour (mineure) de
reseau.tcl
2004-08-06 18:32 emmanuel
* utils/eagleconnect/diagnostic.tcl: mise jour (mineure) de
diagnostic.tcl
2004-08-06 18:30 emmanuel
* utils/eagleconnect/eagleconnect.tcl: mise jour
d'eagleconnect.tcl
2004-08-06 11:59 mcoolive
* Makefile: - edit "deb" rule to remove warnings
2004-08-06 00:54 mcoolive
* debian/: postinst.modules, rules.modules, control.modules: - fix
the substitution of kernel version
2004-08-06 00:52 mcoolive
* utils/scripts/eagleconfig: - replace forgotten ${MODULE} by
${MODULE_STR}
2004-08-05 18:08 mcoolive
* debian/changelog: - remove a wrong comment - rechange the version
number: "cvs" and the date appear in the version number
2004-08-05 17:44 mcoolive
* doc/Makefile: - addition of a filter in the calculation of
SOURCES to be unaware of sub-directory "CVS".
2004-08-05 17:36 mcoolive
* Makefile: The "clean" rule is propagated in "doc" subdirectory.
Add rule "deb" to construct debian packages.
2004-08-05 00:42 mcoolive
* debian/rules.modules: Delete one useless line.
Initial revision Files match *.modules are copied in
eagle-usb-modules-source package. `rules.modules' is the
Makefile to construct eagle-usb-modules package.
2004-08-04 23:55 mcoolive
* debian/changelog: Change the version of the packages, 1.9.9-1 to
1.9.8-4 to distribute them now.
2004-08-04 23:46 mcoolive
* utils/scripts/eagleconfig: change file access permissions of
/etc/cron.d/eagle-usb (755 => 644)
2004-08-04 21:58 Tux
* utils/eagleconnect/lang/fr.msg: - initial revision
2004-08-04 21:58 Tux
* utils/eagleconnect/: diagnostic.tcl, eagleconnect.tcl,
reseau.tcl: [no log message]
2004-08-04 21:57 Tux
* utils/eagleconnect/Makefile: - paths have been moved directly
into .tcl scripts - (temporary?) removed expect script
2004-08-04 21:56 Tux
* utils/eagleconnect/eagleconnect.conf: - paths have been moved
directly into .tcl scripts
2004-08-04 21:54 Tux
* utils/scripts/setvars: - SEND_DSP => SEND_DSP_STR, $MODULE =>
$MODULE_STR
2004-08-04 21:53 Tux
* utils/scripts/eu_dsp: - fix conflict between two vars named
$SEND_DSP - use $MODULE_STR instead of "eagle-usb"
2004-08-04 21:51 Tux
* utils/scripts/eagleconfig: - $MODULE => $MODULE_STR
2004-08-04 19:52 mcoolive
* doc/sources/startadsl.xml: Initial revision This document
describes the startadsl command. Used to generate the man page
of startadsl.
2004-08-04 19:51 mcoolive
* doc/sources/startmire.xml: Initial revision This document
describes startmire command. Used to generate the man page of
startmire.
2004-08-04 19:50 mcoolive
* doc/sources/stopadsl.xml: Initial revision This document
describes the stopadsl command.
2004-08-04 13:28 mcoolive
* Makefile.common.in: $INFODIR, $MANDIR are added. They will be
used by doc/Makefile.
In the definition of HOTPLUG_SCRIPT_DIR, $(DESTDIR) is added.
2004-08-04 02:02 mcoolive
* utils/scripts/eagleconfig: Removed intermediate $OLDNAME
variable.
2004-08-04 01:33 mcoolive
* doc/sources/eaglediag.xml: Initial revision. A document which
describes the eaglediag command.
2004-08-04 00:28 mcoolive
* driver/user/eaglectrl.c: Correct a typing error: "will chose" =>
"will choose"
2004-08-04 00:26 mcoolive
* doc/sources/fctStopAdsl.xml: Initial revision. A document which
describes very briefly the fctStopAdsl command.
2004-08-04 00:25 mcoolive
* doc/sources/fctStartAdsl.xml: Initial revision. A document which
describes very briefly the fctStartAdsl command.
2004-08-04 00:04 mcoolive
* doc/sources/eaglectrl.xml: Initial revision. A document which
describes the eaglectrl command.
2004-08-03 23:26 mcoolive
* doc/sources/pppoa.xml: Initial revision. A very incomplete
document which describes the pppoa command.
2004-08-03 23:13 mcoolive
* doc/sources/eaglestat.xml: Initial revision. A document which
describes the eaglestat command.
2004-08-03 23:12 mcoolive
* doc/sources/eagleconfig.xml: Initial revision. A document which
describes the eagleconfig command.
2004-08-03 23:09 mcoolive
* doc/Makefile: Fix a mistake : replace all `source' by `sources'
2004-08-03 21:45 mcoolive
* doc/Makefile: Initial release All the documents are centralized
in the `doc' directory. Some documents are generated dynamically
starting from XML documents. This Makefile defines rules to
generate them.
2004-08-03 19:51 Tux
* utils/scripts/eagleconfig: - support for spaces in options
2004-08-03 19:47 mcoolive
* debian/rules:
Delete lines about the man pages, and replace them by a call to
the new eagleusb/doc/Makefile.
All files in debian directory is used to contruct the Debian
packages. rules is the main file, it is a Makefile.
2004-08-03 19:46 Tux
* driver/firmware/Makefile: - remove a warning when uninstalling
2004-08-03 19:42 Tux
* utils/eagleconnect/parameagleconnect.tcl: - initial revision
2004-08-03 19:40 mcoolive
* debian/eagle-usb-utils.manpages: Initial revision.
This file list man pages to be installed. It is used by
dh_installman called in rules.
2004-08-03 19:34 Tux
* utils/eagleconnect/: diagnostic.tcl, eagleconnect.tcl,
reseau.tcl, eagleconnect.conf: - initial revision
2004-08-03 19:33 Tux
* utils/eagleconnect/Makefile: - now do something
2004-08-02 23:09 mcoolive
* debian/: po/templates.pot, rules, eagle-usb-utils.postinst,
eagle-usb-utils.postrm, eagle-usb-utils.preinst: [no log message]
2004-08-02 23:00 mcoolive
* debian/po/: POTFILES.in, fr.po: [no log message]
2004-08-02 22:52 mcoolive
* debian/: eagle-usb-utils.config, eagle-usb-utils.templates,
rules.modules, postinst.modules: [no log message]
2004-08-02 22:43 mcoolive
* debian/: copyright, eagle-usb-data.docs,
eagle-usb-modules-source.docs, eagle-usb-utils.docs,
control.modules: [no log message]
2004-08-02 22:30 mcoolive
* debian/: README.Debian, compat, changelog, control: [no log
message]
2004-08-01 22:35 Tux
* utils/eagleconnect/Makefile: [no log message]
2004-08-01 22:31 Tux
* utils/eagleconnect/Makefile: - Initial revision
2004-08-01 22:13 Tux
* utils/scripts/: Makefile, setvars: - removed some unused hotplug
related vars
2004-08-01 22:12 Tux
* utils/scripts/fctStartAdsl: - hide messages when launching
startadsl within a terminal
2004-08-01 22:10 Tux
* utils/scripts/eu_config_bash: - cosmetic changes
2004-08-01 22:10 Tux
* utils/scripts/eaglediag: - distrib detection : changed "other" by
"generic"
2004-08-01 22:09 Tux
* Makefile.common.in: - eagleconnect support - removed some unused
hotplug vars
2004-08-01 22:08 Tux
* Makefile: - eagleconnect support
2004-08-01 22:08 Tux
* configure.in: - eagleconnect support (tcl/tk) - add summary after
./configure
2004-08-01 17:59 sleeper
* pppoa/Makefile: Removed pppoa from PHONY target/ensure SBINDIR
exists/change perm from 0755 to 0755
2004-07-30 22:18 sleeper
* driver/eu_main.c: Needed to compile on 2.4.18
2004-07-27 01:36 baud123
* utils/scripts/lang/it: update italian 1.9.8
2004-07-26 21:34 Tux
* utils/scripts/: eagleconfig, eu_config_bash: - removed unused
$EXPERT variable
2004-07-25 22:19 Tux
* utils/scripts/uninstOld: - now remove files in /usr and
/usr/local
2004-07-25 22:18 Tux
* utils/scripts/startadsl: - return error code - cosmetic changes
2004-07-25 22:17 Tux
* utils/scripts/eagleconfig: - new method to update pppd's options
files
2004-07-25 22:15 Tux
* configure.in: - use "/usr" as defaut prefix on Mandrake & SuSE
2004-07-25 18:46 baud123
* utils/scripts/lang/mk: macedonian based on en_1.11
2004-07-25 18:43 baud123
* utils/scripts/lang/br: brazilian (portuguese) based on en_1.11
2004-07-25 18:38 baud123
* utils/scripts/eaglediag: add option output file + display ISP
2004-07-19 22:45 Tux
* utils/scripts/stopadsl: - stopadsl now remove lock file (prevent
testconnec to restart connection)
2004-07-19 22:44 Tux
* utils/scripts/startadsl: - startadsl now put lock file (used
later by testconnec)
2004-07-19 22:43 Tux
* utils/scripts/rc.eagle-usb: [no log message]
2004-07-19 22:43 Tux
* utils/scripts/fctStartAdsl: - "fctStartAdsl -i" now start pppoa
itself (no more use of pty "...pppoa -I $IF" )
2004-07-19 22:41 Tux
* utils/scripts/eagleconfig: - change pty call in
/etc/ppp/pears/adsl - add "updetach" to pppd options on Mandrake
2004-07-17 17:41 Tux
* utils/scripts/testconnec: - forgot to update parameters - removed
chmod on the lock file
2004-07-17 17:40 Tux
* utils/scripts/eagleconfig: [no log message]
2004-07-16 23:52 Tux
* utils/scripts/eu_init: - use $SYSCONF_FILE - asynchronous start
should display [OK] / [Error] too
2004-07-16 23:40 Tux
* utils/scripts/eu_config_bash: - wrong parameters for the ISP
"Sonera"
2004-07-16 23:27 Tux
* utils/scripts/lang/p2: [no log message]
2004-07-16 23:15 Tux
* utils/scripts/lang/pl: [no log message]
2004-07-16 23:14 Tux
* utils/scripts/Makefile: - added $PPP_OPTIONS_ADSL,
$PPP_OPTIONS_MIRE, $SYSCONF_FILE
2004-07-16 23:14 Tux
* utils/scripts/setvars: - added $PPP_OPTIONS_ADSL,
$PPP_OPTIONS_DIR, $PPP_OPTIONS_MIRE, $SYSCONF_FILE - fixed bug
with start_on_boot detection and add Mdk10.1 support - remove
unused lines : i=1; PARAMS=""
2004-07-16 23:11 Tux
* utils/scripts/rc.eagle-usb: - add lock (used later by testconnec)
2004-07-16 23:08 Tux
* utils/scripts/: eu_config_bash, fctStartAdsl, fctStopAdsl,
startadsl, startmire, stopadsl, testconnec: - simplify parameters
processing
2004-07-16 23:07 Tux
* utils/scripts/eagleconfig: - simplify parameters processing -
support for Mdk10.1 autostart (using ifcfg-ppp0)
2004-07-16 22:58 Tux
* Makefile.common.in: - added $PPP_OPTIONS_ADSL, $PPP_OPTIONS_MIRE,
$SYSCONF_FILE
2004-07-16 22:57 Tux
* VERSION: - version 1.9.9
2004-07-16 22:56 Tux
* eagle-usb.spec: - version 1.9.9 r0.1
2004-07-16 22:56 Tux
* configure.in: - added "--with-peers-dir" option - lock file is
now given by the $SYSCONF_FILE variable - Mandrakelinux 10.1
support
2004-07-15 22:26 Tux
* utils/scripts/testconnec: - check for /var/lock/eagle-usb too
2004-07-15 22:25 Tux
* utils/scripts/Makefile: - uninstall did't remove
/etc/cron.d/eagle-usb
2004-07-13 21:01 sleeper
* driver/: eu_boot_sm.c, eu_main.c, eu_types.h, macros.h: Attempt
to fix atomicity problem for DSP loading
2004-07-13 21:01 sleeper
* driver/Mpoa.c: Set PPPoE MRU to 1524
2004-07-12 23:21 Tux
* utils/scripts/uninstOld: - some distribs require underscore
instead of minus in "rmmod eagle-usb"
2004-07-12 23:06 Tux
* utils/scripts/eagleconfig: - modules.usbmap should already
contains device IDs => remove /etc/hotplug/usb/eagle-usb
2004-07-12 23:04 Tux
* utils/scripts/eu_dsp: - don't send DSP for pre-firmware device
2004-07-03 16:24 sleeper
* driver/Mpoa.c: Change size on incoming PDU to 1520 for PPPoE
2004-07-03 01:18 Tux
* utils/scripts/eu_dsp: - slackware 10 support
2004-07-02 21:11 Tux
* utils/scripts/uninstOld: - uninstall now remove Slackware
autostart service too
2004-07-02 21:09 Tux
* utils/scripts/: eagleconfig, setvars: - slackware 10 support -
fixed bug with custom interface name on 2.4 kernels
2004-07-02 21:08 Tux
* configure.in: - slackware 10 support - check whether "ifconfig"
and "route" are present
2004-06-30 22:32 sleeper
* driver/: Boot.c, Boot.h, Mpoa.c, Sm.c, Uni.c, eu_boot_sm.c,
eu_boot_sm.h, eu_main.c, eu_types.h, macros.h, Makefile:
Implemented new boot state machine
2004-06-24 22:13 Tux
* utils/scripts/lang/: en, p2: [no log message]
2004-06-23 22:48 Tux
* utils/scripts/lang/fr: [no log message]
2004-06-23 22:47 Tux
* utils/scripts/eagleconfig: - fix bug: if_name is always eagle_usb
- reload module when interface named change
2004-06-23 22:46 Tux
* utils/scripts/eu_config_bash: - remove redundancy with ISP list -
isp_to_no has been removed (now we use a single identifier)
2004-06-23 22:40 Tux
* utils/scripts/setvars: - removed unused "isp_to_no" function
2004-06-23 22:39 Tux
* utils/scripts/eu_dsp: - add support for distribs which do not
provide $REMOVER param (eg: SuSE9.1)
2004-06-23 22:36 Tux
* README: - fixed website address
2004-06-21 20:51 Tux
* utils/scripts/setvars: - disable french chars (accents) on SuSE
2004-06-20 18:05 baud123
* utils/scripts/: eu_config_bash, setvars: addition of new ISP
2004-06-08 23:02 baud123
* ChangeLog: 1.9.8
2004-06-08 21:50 Tux
* VERSION: - 1.9.8
2004-06-06 23:09 Tux
* utils/scripts/lang/: de, en, es, f2, it, p2, pl: - translated
"ask_for_interface_name" message in english
* utils/scripts/setvars: - display a warning when interface name
contains quotation marks
* utils/scripts/eagleconfig: - added custom interface name
2004-06-04 20:56 sleeper
* driver/: Boot.c, Dsp.c, Me.c, Oam.c, Pipes.c, Sm.c, eu_eth.c,
eu_main.c, eu_msg.c, eu_utils.c, eu_utils.h: Cosmetics
* driver/Macros.h: Now named macros.h
* driver/macros.h: Renamed from Macros.h + definition of wait_ms
for kernel above 2.6.6
2004-05-30 03:56 Tux
* utils/scripts/uninstOld: - added update-usb.usermap
* utils/scripts/eu_init: - "splash_late" service does not exist on
SuSE9.1, using "syslog" instead
* utils/scripts/: eu_config_bash, setvars: - vars name "FAI..." =>
"ISP..."
* utils/scripts/eagleconfig: - fixed bug with parameters - vars
name "FAI..." => "ISP..."
* Makefile: - "rpm -ba" => "rpmbuild"
* eagle-usb.spec: - removed _prefix
2004-05-27 07:31 sleeper
* driver/Macros.h: Fix compilation on kernel > 2.6.6 : wait-ms is
replaced by msleep
* driver/Makefile-2.6: revert to "old" compilation style
* driver/: Makefile-2.4, Makefile-2.6: Add installdriver as a phony
target
2004-05-24 23:26 Tux
* utils/scripts/eu_config_bash: - wrong variable name (LT =>
LINETYPE)
* kernel.m4: - "AC_DEFUN(AC_CHECK_KERNEL_VERSION," =>
"AC_DEFUN([AC_CHECK_KERNEL_VERSION]"
* utils/scripts/lang/: de, en, es, f2, fr, it, p2, pl: - added
"ask_for_interface_name" message
* utils/scripts/eagleconfig: - improved $LSTOPTIONS loop (Cyril
Olivier Martin) - do not ask questions anymore
* utils/scripts/eu_config_bash: - ask for virtual interface name
(expert mode only) - use "exec" to call eagleconfig
* utils/scripts/setvars: - get virtual interface name ($FORCE_IF)
* utils/scripts/eu_init: - "force-reload" now acts as "restart"
* configure.in: - added support for Fedora Core 2 and SuSE 9.1
* eagle-usb.spec: - removed _sbindir - ./configure => %configure
2004-05-23 09:18 sleeper
* driver/: Makefile-2.4, Makefile-2.6: Add installdriver
indirection
* driver/eu_main.c: Fix shutdown handling of URBs + do not release
explicitely interfaces as they will be by USb stack
* driver/: Pipes.c, eu_utils.c: Fix shutdown handling of URBs
2004-05-16 21:27 Tux
* utils/scripts/Makefile: - language files permissions: 0755 =>
0644
* utils/scripts/setvars: - fixed 2 bugs with grep calls
* eagle-usb.spec: - changed build_root - added smp_mflags -
cosmetic changes
* driver/Makefile-2.6: - changed module build command
* driver/: firmware/Makefile, user/Makefile: - removed some .PHONY
* utils/scripts/lang/: de, en, es, f2, fr, it, p2, pl: - removed
#!/bin/bash
* eagle.spec: - eagle.spec => eagle-usb.spec
* utils/scripts/uninstOld: - support for Mandrake cooker
* utils/scripts/eagleconfig: - netmask for pppd users =
255.255.255.255
* Makefile: - eagle.spec => eagle-usb.spec - add "hash -r" after
"make install"
* makedist: - security fix
* eagle-usb.spec: - name changed: eagle.spec => eagle-usb.spec
* configure.in: - use $sysconfir instead of $CONFDIR - use
/lib/modules/{version}/build as default kernel source path
2004-05-09 23:04 baud123
* utils/scripts/eaglediag: add hdparm test + correction for gcc
version + add GPL license and newbie mode
2004-04-28 19:15 Tux
* utils/scripts/setvars: - remove unuseful data :-D
* utils/scripts/: eagleconfig, fctStartAdsl: - network mask changed
from 255.255.255.255 to 255.255.255.0 for non-pppd users
2004-04-22 23:44 sleeper
* driver/eu_utils.c: Fix an unneeded (and therefore dangerous ;)
call to memcpy
2004-04-21 22:07 Tux
* eagle.spec, utils/scripts/Makefile, utils/scripts/eagleconfig,
utils/scripts/fctStartAdsl: [no log message]
* utils/scripts/: eu_init, fctStopAdsl, rc.eagle-usb, startadsl,
stopadsl: [no log message]
* utils/scripts/setvars: - added $FAI_LOGIN, $FAI_PWD, $ENCRYPT -
bug with separators ("cut" command is not very powerful!)
* utils/scripts/fctStartAdsl: - virtual interface does not use an
IP anymore
* utils/scripts/eagleconfig: - virtual interface does not use an IP
anymore - bug fix: wrong variable names
* utils/scripts/setvars: - prevent unitialized vars from crashing
the script
* utils/scripts/: eagleconfig, Makefile, fctStartAdsl: - some
changes with ">/dev/null"
* utils/scripts/eagleconfig: - prevent empty values from crashing
the script - fix bug: $INTERFACE is not initialized when
$SEND_DSP=0
* utils/scripts/setvars: - ensure that $PWD_ENCRYPT always exists
* Makefile: - cosmetic changes
* configure.in: - update messages about non ppp users (dgroups) -
fix Mandrakelinux 10.x detection - fix "make uninstall" crash on
unknown distribs
2004-04-19 22:53 sleeper
* driver/eu_main.c: Make it compile on kernel > 2.6.5
2004-04-18 21:46 Tux
* Makefile: - a string was badly displayed
* utils/scripts/eu_config_bash: - added expert param
* utils/scripts/eagleconfig: - bugfix (lot of crashes)
* configure.in: - added Mandrake cooker support
2004-04-16 23:19 sleeper
* driver/user/: Makefile, eaglectrl.c: Make eaglectrl version more
coherent
* driver/: Makefile-2.4, Makefile-2.6: fix module right at
installation
* pppoa/ppp.c: Fix a bug when packet is optimaly filled
2004-04-09 01:34 baud123
* utils/scripts/eaglediag: correction bug init PB_DISK
2004-04-05 23:45 sleeper
* driver/Oam.c: Fix typo
2004-04-05 23:45 sleeper
* driver/: Sm.c, eu_eth.c, eu_types.h: Fix race condition on eth
device creation
2004-04-04 20:48 Tux
* utils/scripts/eu_config_bash: Initial revision
* utils/scripts/uninstOld: - eagle-usb rpm uninstall (including
Mdk10 packages)
* utils/scripts/setvars: - removed $USE_UPD_USB_USERMAP - better
language management - now detect the whole modem parameters
* utils/scripts/Makefile: - added eu_config_bash
* utils/scripts/eagleconfig: - cut eagleconfig into 2 parts:
eagleconfig & eu_config_bash - removed $USE_UPD_USB_USERMAP -
only stopadsl & send DSP when it's necessary
* Makefile.common.in: - removed $USE_UPD_USB_USERMAP
* Makefile: - ask the user to unplug&replug modem
* eagle.spec: - added eu_config_bash
* configure.in: - removed $USE_UPD_USB_USERMAP
2004-03-28 21:51 sleeper
* driver/: Macros.h, eu_main.c: Make it compile on 2.4 too ;)
* driver/eu_main.c: Fix a typo
2004-03-23 23:58 sleeper
* driver/eu_main.c: Check return code from
usb_driver_claim_interface
2004-03-23 21:16 Tux
* utils/scripts/testconnec: slackware support
* utils/scripts/eagleconfig: - fixed bug "This language (C) is not
supported!" - autostart on slackware - expert mode allow
eagleconfig to finish even if modem is not plugged
2004-03-22 22:37 Tux
* eagle.spec: 1.9.7
* driver/firmware/Makefile: uninstall remove dsp_dir if it is empty
* utils/scripts/lang/: de, en, es, f2, fr, it, p2, pl: [no log
message]
* utils/scripts/usb.usermap: eu_dsp => eagle-usb
* utils/scripts/uninstOld: - remove DSP found on old locations (ex:
/etc/eagle-usb/) - ask to unplug modem when necessary
* utils/scripts/testconnec: removed old $START_ON_BOOT check
* utils/scripts/testconnec: testconnec now exit if internet service
is not started
* utils/scripts/startmire: bug fixed: startmire didn't pass options
to startadsl
* utils/scripts/setvars: bug "Language C not found" fixed?
* utils/scripts/Makefile: do not ask anymore the user to unplug the
modem unless it is necessary
* utils/scripts/eu_dsp: $UNPLUGSCRIPT => $REMOVER
* utils/scripts/eagleconfig: new usb.usermap location
(/etc/hotplug/usb/)
* VERSION: 1.9.7
* Makefile.common.in: added $EU_DSP param
* eagle.spec: - Change "/usr/local/sbin" to "%{prefix}" - Use
default rpm "./configure" values - replace "/etc" by
"%{sysconfdir} - improved uninstall method
* configure.in: added $DSPDIR param
2004-03-18 23:46 baud123
* utils/scripts/eaglediag: add hdparm test + correction for gcc
version (incorrectly triggered for SuSE/RedHat)
2004-03-10 22:20 sleeper
* driver/Sm.c: Fix a bug that lead to incorrect rates on PPC arch
(Witold Krecicki <adasi@culm.net>)
2004-03-01 20:51 Tux
* utils/scripts/Makefile: added slackware service
* utils/scripts/rc.eagle-usb: Initial revision
2004-03-01 20:51 Tux
* utils/scripts/eaglediag: fixed "ping -w" bug with Debian
* utils/scripts/eagleconfig: Create /etc/ppp/peers folder which
doesn't exist on Slackware 9.1
* Makefile: Allow user to build rpm on "~/rpm/"
2004-02-20 17:25 Tux
* utils/scripts/fctStopAdsl: [no log message]
* utils/scripts/eu_dsp: eu_dsp didn't send dsp on 2.4 kernel
* utils/scripts/fctStartAdsl: 1.9.6
* VERSION: 1.9.6
* eagle.spec: Added "hash -r"
2004-02-19 23:04 sleeper
* utils/eagleconfig.pl/network.pl: Ad a warning when choosing or
not to use peer dns
* driver/eu_main.c: Fix MAC string in /proc output to be less ugly
;)
* driver/eu_main.c: Added MAC addr when reading /proc eagle entry
* driver/Makefile-2.6: Added a variable to facilitate compilation
to a user given directory
* driver/Pipes.c: Cosmetics
2004-02-16 21:43 Tux
* utils/scripts/fctStartAdsl: "--keep=Ns" force fctStartAdsl to be
kept alive until connection is established or timeout occurs
* eagle.spec: added preun/post rules for eagle-usb-module.rpm
* configure.in: dhcpd => dhcpcd
* utils/eagleconfig.pl/contrib/dialog/po/: POTFILES.in, cs.po,
da.po, de.po, dialog.pot, el.po, es.po, et.po, fr.po, hu.po,
it.po, ja.po, makefile.inn, pl.po, pt.po, pt_BR.po, ru.po:
Initial revision
* utils/eagleconfig.pl/contrib/dialog/: CHANGES, COPYING, README,
VERSION, aclocal.m4, arrows.c, buttons.c, calendar.c,
checklist.c, colors.h, config.guess, config.hin, config.sub,
configure, configure.in, dialog.1, dialog.c, dialog.h,
dialog.lsm, dialog.pl, formbox.c, fselect.c, guage.c, inputbox.c,
inputstr.c, install-sh, makefile.in, menubox.c, mkdirs.sh,
mouse.c, mousewget.c, msgbox.c, rc.c, tailbox.c, textbox.c,
timebox.c, ui_getc.c, util.c, yesno.c: Initial revision
* utils/eagleconfig.pl/contrib/Config/IniFiles.pm: Initial revision
* utils/eagleconfig.pl/profiles/: free, free-degroupe: Initial
revision
* utils/eagleconfig.pl/: Makefile.in, eagleconfig.pl, mandrake.pl,
modem.pl, network.pl, redhat.pl, ui.pl: Initial revision
* configure.in: remove unused eagleconfig.pl (dialog version)
* utils/scripts/eu_dsp: prevent dsp from being send 3 times
* utils/scripts/lang/: de, en, es, f2, fr, it, p2, pl: changed some
old style variable names
* utils/scripts/eagleconfig: eagleconfig can update Mandrake10
/etc/ppp/peers/adsl
* eagle.spec: added "eagle" packages as obsolete (new
name=eagle-usb)
* configure.in: [no log message]
* driver/Makefile-2.6: "make clean" didn't remove some temporary
files
* driver/: firmware/Makefile, user/Makefile: allow simple user to
build rpm
* driver/: Makefile-2.6, Makefile-2.4: - allow simple user to build
rpm - added .phony
* driver/Makefile-module_disabled: Initial revision
* driver/Makefile: added Makefile-module_disabled
* Makefile.common.in: moved more installed files to $DESTDIR
* Makefile, utils/scripts/Makefile, pppoa/Makefile: allow simple
user to build rpm
* eagle.spec: Added network-scripts to package
* configure.in: [no log message]
2004-02-10 22:05 sleeper
* driver/user/eaglectrl.c: Fix a bug that prevent eaglectrl from
parsing options
* driver/eu_main.c: Fix a bug in interface release / No need to
claim/release intf 0
* driver/eu_eth.c: Attempt to wake up queue when tx timeouts
* driver/eu_main.c: Aim to fix the 'interface release' bug on 2.6
in a more elegant maner
* driver/: debug.h, Pipes.c: Cosmetic changes
* driver/user/: eagle-usb.conf, eaglectrl.c: Fix 'Unknown option'
warning
2004-02-08 02:01 Tux
* utils/scripts/eagleconfig: cron job was not executable
* utils/scripts/lang/pl: added polish fonts
* eagle.spec: - force autogen - works with 2.4&2.6 kernels
* utils/scripts/lang/: de, en, es, f2, fr, it, p2, pl: [no log
message]
* utils/scripts/: setvars, uninstOld: added support for testconnec
* utils/scripts/eagleconfig: added "expert" mode
* driver/user/Makefile: wrong absolute paths: "eaglectrl -d"
couldn't find eagle-usb.conf
* driver/Makefile-2.4: wrong rule name
* LICENSE: Initial revision
* Makefile.common.in: added EU_DSP_DIR
* Makefile: Renamed eagle to eagle-usb
* eagle.spec: Temporary changed website
* utils/scripts/: setvars, startmire, testconnec: [no log message]
* utils/scripts/Makefile: "make" is now necessary before "make
install"
* utils/scripts/eagleconfig: fixed a crash when "mire" file was
missing
* driver/: Makefile-2.4, Makefile-2.6: cosmetic changes
* driver/: firmware/Makefile, user/Makefile: paths+rules modified
* README, gpl.txt: Initial revision
* Makefile, Makefile.common.in, VERSION, autogen.sh, configure.in,
eagle.spec, install-sh, kernel.m4, makedist: Initial revision
2004-02-06 23:26 sleeper
* pppoa/: COPYING, Makefile, common.c, config.h, debug.c, if.c,
ppp.c, pppoa.c, pppoa.h: Initial creation
2004-02-06 23:16 sleeper
* driver/firmware/usr/pots/: rtbldep0.bnm, rtbldep1.bnm,
rtbldep2.bnm, rtbldep3.bnm, rtbldep4.bnm: Initial creation
* driver/firmware/usr/isdn/: rtbldei0.bnm, rtbldei1.bnm,
rtbldei2.bnm, rtbldei3.bnm, rtbldei4.bnm: Initial creation
* driver/firmware/sagem/pots/: rtbldep0.bnm, rtbldep1.bnm,
rtbldep2.bnm, rtbldep3.bnm, rtbldep4.bnm: Initial creation
* driver/firmware/: HexRecord.h, Makefile, bnm-format.txt,
builddsp.c, sagem/isdn/rtbldei0.bnm, sagem/isdn/rtbldei1.bnm,
sagem/isdn/rtbldei2.bnm, sagem/isdn/rtbldei3.bnm,
sagem/isdn/rtbldei4.bnm: Initial creation
* driver/: Adiutil.h, Boot.c, Boot.h, COPYING, Cmv.h, Dsp.c, Dsp.h,
Macros.h, Makefile, Makefile-2.4, Makefile-2.6, Me.c, Me.h,
Mpoa.c, Mpoa.h, Oam.c, Oam.h, Pipes.c, Pipes.h, Sar.c, Sar.h,
Sm.c, Uni.c, Uni.h, debug.h, eagle-usb.h, eu_eth.c, eu_eth.h,
eu_firmware.h, eu_main.c, eu_msg.c, eu_msg.h, eu_sm.h,
eu_types.h, eu_utils.c, eu_utils.h, user/CMVei.txt,
user/CMVep.txt, user/Makefile, user/eagle-usb.conf,
user/eaglectrl.c, user/eaglestat, user/usrisdn.conf,
user/usrpots.conf: Initial creation
2004-02-06 21:25 Tux
* utils/scripts/: Makefile, eagleconfig, eaglediag, eu_dsp,
eu_init, fctStartAdsl, fctStopAdsl, net_cnx_down, net_cnx_pg,
net_cnx_up, options, setvars, startadsl, startmire, stopadsl,
testconnec, uninstOld, usb.usermap, lang/de, lang/en, lang/es,
lang/f2, lang/fr, lang/it, lang/p2, lang/pl: Initial revision
|