O tom, že se zařízení Mikrotik RouterBOARD vyznačují vysokou spolehlivostí a kvalitně zpracovaným síťovým operačním systémem se asi nemá cenu zmiňovat. Může ale nastat situace, kdy jsme místo RouterOS nuceni nasadit jiný operační systém. Důvodem pro takovou změnu může být licenční politika Mikrotiku nebo absence pokročilejších vlastností. Právě druhá možnost byla tím, proč jsem se na zařízení rozhodl nainstalovat operační systém OpenWRT, konkrétně potřeba služby OpenVPN s podporou UDP a IPv6 skrze rozhraní TUN.
Pokud se podíváme do manuálu (Mikrotik RouterBOARD 500ugM) pro RouterBOARD série 500 zjistíme, že je podporována možnost instalace operačního systému GNU/Linux Debian s jádrem 2.4. Od roku 2006 se v linuxu změnilo a bylo přidáno nemálo vlastností, nehledě k tomu, že aktuální verze jádra poskočila přes řady 2.6 a 3 až 4.
Stále máme možnost nainstalovat prehistorickou verzi Debianu, ale taková změna určitě nedává smysl, a to zejména z důvodu praktické neexistence a nepodpory nejnovějších softwarových balíčků, ale také zastaveného vývoje jádra 2.4 se souvisejícími bezpečnostními updaty.
Popis hardware zařízení
Mikrotik RouterBOARD 512 (RB512) patří do série 500. Jednotlivé verze (RB511, RB512, RB532A, RB532p1 a RB532c) se od sebe odlišují rozdílnou hardwarovou výbavou. Na deskách můžeme 14 x 14 cm můžeme nalézt až dva MiniPCI sloty typu IIIA/IIIB, volitelně slot CompactFlash, až 128 MB NAND Flash, RS232C, minimálně jeden síťový port 10/100 Mb s podporou Auto-MDI/X, 32/64 MB SDRAM a CPU MIPS32 4Kc (mipsle) s taktem začínajícím na hodnotě 266 MHz.
Konkrétně verze RB512 obsahuje 128 MB NAND Flash, jeden síťový port, dva sloty MiniPCI a podporu PoE.
Bohužel díky absenci CompactFlash musí být operační systém instalován do paměti NAND Flash. Tím pádem přijdeme o původní systém RouterOS a, což může být pro pozdější návrat nepříjemné, licenci. A právě ztráta licence může být hlavním důvodem, proč na zařízení linux neinstalovat.
Připojení přes sériový port RS232C
V každém případě je nutné se k RB512 připojit přes sériový port (konektor DB9). Jedná se o standardní RS-232. Nemůžeme tedy použít běžný převodník USB-RS232-TTL (3,3 V/5 V), ale takový který převádí USB na úrovné klasické RS 232, tedy -12 V (o napětích a logických úrovních). Co je ovšem stejně důležité jako správný převodník je propojovací kabel. Ten musí být typu null-modem (křížené signály TxD a RxD).
Rychlost nastavíme 115200 baud, 8 datových bitů, 1 stop bit, bez parity, řízení toku XON/XOFF nebo žádné. Pro připojení můžeme použít např. PuTTY.
Přístup přes sériový port slouží k ovládání zavaděče operačního systému RouterBOOT a připojení na konzolu operačního systému.
Instalační průběh
Pro úspěšnou instalaci potřebujeme zdrojové kódy OpenWRT, DHCP/TFTP/web server.
- Přeložíme jádro OpenWRT a rootfs,
- překopírujeme jádro a rootfs na web server,
- stáhneme instalační OpenWRT obraz z internetu,
- nastavíme DHCP server,
- nastavíme RB512 pro start ze sítě pomocí DHCP,
- vymažeme NAND Flash – !!! pozor, přijdeme o licenci k RouterOS!!!,
- spustíme OpenWRT ze sítě,
- překopírujeme jádro a rootfs z web serveru do NAND Flash.
Příprava OpenWRT
O konfiguraci a kompilaci OpenWRT si lze přečíst v článku Sestavení operačního systému OpenWRT se specifickými vlastnostmi.
V konfiguračním režimu zvolíme cílový systém Mikrotik RouterBoard 532. Ten je kompatibilní pro celou řadu RouterBOARD 500.
Ostatní volby záleží na konkrétním použití.
Příklad konfigurace:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 |
# # Automatically generated file; DO NOT EDIT. # OpenWrt Configuration # CONFIG_MODULES=y CONFIG_HAVE_DOT_CONFIG=y # CONFIG_TARGET_ppc44x is not set # CONFIG_TARGET_realview is not set # CONFIG_TARGET_arm64 is not set # CONFIG_TARGET_sunxi is not set # CONFIG_TARGET_ath25 is not set # CONFIG_TARGET_ar71xx is not set # CONFIG_TARGET_at91 is not set # CONFIG_TARGET_brcm2708 is not set # CONFIG_TARGET_bcm53xx is not set # CONFIG_TARGET_brcm47xx is not set # CONFIG_TARGET_brcm63xx is not set # CONFIG_TARGET_netlogic is not set # CONFIG_TARGET_cns3xxx is not set # CONFIG_TARGET_octeon is not set # CONFIG_TARGET_gemini is not set # CONFIG_TARGET_mpc85xx is not set # CONFIG_TARGET_imx6 is not set # CONFIG_TARGET_mxs is not set # CONFIG_TARGET_adm8668 is not set # CONFIG_TARGET_adm5120 is not set # CONFIG_TARGET_xburst is not set # CONFIG_TARGET_ixp4xx is not set # CONFIG_TARGET_lantiq is not set # CONFIG_TARGET_malta is not set # CONFIG_TARGET_mvebu is not set # CONFIG_TARGET_kirkwood is not set # CONFIG_TARGET_mediatek is not set CONFIG_TARGET_rb532=y # CONFIG_TARGET_mcs814x is not set # CONFIG_TARGET_oxnas is not set # CONFIG_TARGET_ipq806x is not set # CONFIG_TARGET_au1000 is not set # CONFIG_TARGET_ramips is not set # CONFIG_TARGET_arc770 is not set # CONFIG_TARGET_archs38 is not set # CONFIG_TARGET_ar7 is not set # CONFIG_TARGET_omap is not set # CONFIG_TARGET_uml is not set # CONFIG_TARGET_zynq is not set # CONFIG_TARGET_x86 is not set CONFIG_TARGET_rb532_Default=y CONFIG_TARGET_BOARD="rb532" CONFIG_TARGET_ARCH_PACKAGES="rb532" CONFIG_DEFAULT_TARGET_OPTIMIZATION="-Os -pipe -mno-branch-likely -mips32 -mtune=mips32" CONFIG_CPU_TYPE="mips32" CONFIG_LINUX_4_1=y CONFIG_DEFAULT_base-files=y CONFIG_DEFAULT_busybox=y CONFIG_DEFAULT_dnsmasq=y CONFIG_DEFAULT_dropbear=y CONFIG_DEFAULT_firewall=y CONFIG_DEFAULT_fstools=y CONFIG_DEFAULT_ip6tables=y CONFIG_DEFAULT_iptables=y CONFIG_DEFAULT_iwinfo=y CONFIG_DEFAULT_kmod-ath5k=y CONFIG_DEFAULT_kmod-input-rb532=y CONFIG_DEFAULT_libc=y CONFIG_DEFAULT_libgcc=y CONFIG_DEFAULT_mtd=y CONFIG_DEFAULT_netifd=y CONFIG_DEFAULT_odhcp6c=y CONFIG_DEFAULT_odhcpd=y CONFIG_DEFAULT_opkg=y CONFIG_DEFAULT_ppp=y CONFIG_DEFAULT_ppp-mod-pppoe=y CONFIG_DEFAULT_uci=y CONFIG_DEFAULT_uclient-fetch=y CONFIG_DEFAULT_wpad-mini=y CONFIG_AUDIO_SUPPORT=y CONFIG_GPIO_SUPPORT=y CONFIG_PCI_SUPPORT=y CONFIG_USES_SQUASHFS=y CONFIG_USES_TARGZ=y CONFIG_mipsel=y CONFIG_ARCH="mipsel" # # Target Images # # CONFIG_TARGET_ROOTFS_INITRAMFS is not set CONFIG_EXTERNAL_CPIO="" # # Root filesystem archives # # CONFIG_TARGET_ROOTFS_CPIOGZ is not set CONFIG_TARGET_ROOTFS_TARGZ=y # # Root filesystem images # # CONFIG_TARGET_ROOTFS_EXT4FS is not set CONFIG_TARGET_ROOTFS_JFFS2=y CONFIG_TARGET_ROOTFS_SQUASHFS=y CONFIG_TARGET_SQUASHFS_BLOCK_SIZE=256 CONFIG_TARGET_UBIFS_FREE_SPACE_FIXUP=y CONFIG_TARGET_UBIFS_JOURNAL_SIZE="" # # Image Options # CONFIG_TARGET_ROOTFS_PARTSIZE=48 CONFIG_TARGET_ROOTFS_INCLUDE_UIMAGE=y CONFIG_TARGET_ROOTFS_INCLUDE_ZIMAGE=y CONFIG_TARGET_ROOTFS_INCLUDE_FIT=y # # Global build settings # # CONFIG_ALL_KMODS is not set # CONFIG_ALL is not set CONFIG_SIGNED_PACKAGES=y # # General build options # # CONFIG_DISPLAY_SUPPORT is not set CONFIG_BUILD_PATENTED=y # CONFIG_BUILD_NLS is not set CONFIG_SHADOW_PASSWORDS=y # CONFIG_CLEAN_IPKG is not set # CONFIG_COLLECT_KERNEL_DEBUG is not set # # Kernel build options # CONFIG_KERNEL_BUILD_USER="" CONFIG_KERNEL_BUILD_DOMAIN="" CONFIG_KERNEL_PRINTK=y CONFIG_KERNEL_CRASHLOG=y CONFIG_KERNEL_SWAP=y CONFIG_KERNEL_DEBUG_FS=y # CONFIG_KERNEL_PERF_EVENTS is not set # CONFIG_KERNEL_PROFILING is not set CONFIG_KERNEL_KALLSYMS=y # CONFIG_KERNEL_FTRACE is not set CONFIG_KERNEL_DEBUG_KERNEL=y CONFIG_KERNEL_DEBUG_INFO=y # CONFIG_KERNEL_DYNAMIC_DEBUG is not set # CONFIG_KERNEL_KPROBES is not set CONFIG_KERNEL_AIO=y CONFIG_KERNEL_DIRECT_IO=y # CONFIG_KERNEL_FHANDLE is not set # CONFIG_KERNEL_FANOTIFY is not set # CONFIG_KERNEL_BLK_DEV_BSG is not set CONFIG_KERNEL_MAGIC_SYSRQ=y CONFIG_KERNEL_COREDUMP=y CONFIG_KERNEL_ELF_CORE=y # CONFIG_KERNEL_PROVE_LOCKING is not set CONFIG_KERNEL_PRINTK_TIME=y # CONFIG_KERNEL_SLABINFO is not set # CONFIG_KERNEL_PROC_PAGE_MONITOR is not set CONFIG_KERNEL_RELAY=y # CONFIG_KERNEL_KEXEC is not set CONFIG_USE_RFKILL=y # CONFIG_USE_SPARSE is not set CONFIG_KERNEL_DEVTMPFS=y CONFIG_KERNEL_DEVTMPFS_MOUNT=y # CONFIG_KERNEL_CGROUPS is not set # CONFIG_KERNEL_NAMESPACES is not set # CONFIG_KERNEL_LXC_MISC is not set # CONFIG_KERNEL_SECCOMP_FILTER is not set # CONFIG_KERNEL_SECCOMP is not set CONFIG_KERNEL_IPV6=y CONFIG_KERNEL_IPV6_MULTIPLE_TABLES=y CONFIG_KERNEL_IPV6_SUBTREES=y CONFIG_KERNEL_IPV6_MROUTE=y # CONFIG_KERNEL_IPV6_PIMSM_V2 is not set # CONFIG_KERNEL_IP_PNP is not set # # Package build options # # CONFIG_DEBUG is not set CONFIG_IPV6=y CONFIG_PKG_BUILD_PARALLEL=y CONFIG_PKG_BUILD_USE_JOBSERVER=y # # Stripping options # # CONFIG_NO_STRIP is not set # CONFIG_USE_STRIP is not set CONFIG_USE_SSTRIP=y # CONFIG_STRIP_KERNEL_EXPORTS is not set # CONFIG_USE_MKLIBS is not set CONFIG_USE_UCLIBCXX=y # CONFIG_USE_LIBSTDCXX is not set # # Hardening build options # CONFIG_PKG_CHECK_FORMAT_SECURITY=y # CONFIG_PKG_CC_STACKPROTECTOR_NONE is not set CONFIG_PKG_CC_STACKPROTECTOR_REGULAR=y # CONFIG_KERNEL_CC_STACKPROTECTOR_NONE is not set CONFIG_KERNEL_CC_STACKPROTECTOR_REGULAR=y # CONFIG_KERNEL_CC_STACKPROTECTOR_STRONG is not set # CONFIG_PKG_FORTIFY_SOURCE_NONE is not set CONFIG_PKG_FORTIFY_SOURCE_1=y # CONFIG_PKG_FORTIFY_SOURCE_2 is not set # CONFIG_PKG_RELRO_NONE is not set # CONFIG_PKG_RELRO_PARTIAL is not set CONFIG_PKG_RELRO_FULL=y # CONFIG_DEVEL is not set # CONFIG_BROKEN is not set CONFIG_BINARY_FOLDER="" CONFIG_DOWNLOAD_FOLDER="" CONFIG_LOCALMIRROR="" CONFIG_AUTOREBUILD=y CONFIG_BUILD_SUFFIX="" CONFIG_TARGET_ROOTFS_DIR="" # CONFIG_CCACHE is not set CONFIG_EXTERNAL_KERNEL_TREE="" CONFIG_KERNEL_GIT_CLONE_URI="" CONFIG_EXTRA_OPTIMIZATION="-fno-caller-saves -fno-plt" CONFIG_TARGET_OPTIMIZATION="-Os -pipe -mno-branch-likely -mips32 -mtune=mips32" CONFIG_SOFT_FLOAT=y # CONFIG_EXTRA_TARGET_ARCH is not set CONFIG_EXTRA_BINUTILS_CONFIG_OPTIONS="" CONFIG_EXTRA_GCC_CONFIG_OPTIONS="" # CONFIG_SJLJ_EXCEPTIONS is not set # CONFIG_INSTALL_LIBGCJ is not set # CONFIG_INSTALL_GFORTRAN is not set CONFIG_GDB=y # CONFIG_INSIGHT is not set CONFIG_USE_MUSL=y CONFIG_BINUTILS_VERSION_2_25_1=y CONFIG_BINUTILS_VERSION="2.25.1" CONFIG_GCC_VERSION="5.3.0" CONFIG_GCC_VERSION_5=y CONFIG_MUSL_VERSION="1.1.14" CONFIG_LIBC="musl" CONFIG_LIBC_VERSION="1.1.14" CONFIG_TARGET_SUFFIX="musl" # CONFIG_IB is not set # CONFIG_SDK is not set # CONFIG_MAKE_TOOLCHAIN is not set CONFIG_IMAGEOPT=y # CONFIG_PREINITOPT is not set CONFIG_TARGET_PREINIT_SUPPRESS_STDERR=y CONFIG_TARGET_PREINIT_TIMEOUT=2 # CONFIG_TARGET_PREINIT_SHOW_NETMSG is not set # CONFIG_TARGET_PREINIT_SUPPRESS_FAILSAFE_NETMSG is not set CONFIG_TARGET_PREINIT_IFNAME="" CONFIG_TARGET_PREINIT_IP="192.168.1.1" CONFIG_TARGET_PREINIT_NETMASK="255.255.255.0" CONFIG_TARGET_PREINIT_BROADCAST="192.168.1.255" # CONFIG_INITOPT is not set CONFIG_TARGET_INIT_PATH="/usr/sbin:/usr/bin:/sbin:/bin" CONFIG_TARGET_INIT_ENV="" CONFIG_TARGET_INIT_CMD="/sbin/init" CONFIG_TARGET_INIT_SUPPRESS_STDERR=y CONFIG_VERSIONOPT=y CONFIG_VERSION_DIST="OpenWrt" CONFIG_VERSION_NICK="" CONFIG_VERSION_NUMBER="" CONFIG_VERSION_REPO="http://downloads.openwrt.org/snapshots/trunk/%S/packages" CONFIG_VERSION_MANUFACTURER="" CONFIG_VERSION_MANUFACTURER_URL="" CONFIG_VERSION_PRODUCT="RouterBOARD 512" CONFIG_VERSION_HWREV="" # CONFIG_VERSION_FILENAMES is not set CONFIG_PER_FEED_REPO=y CONFIG_PER_FEED_REPO_ADD_DISABLED=y CONFIG_PER_FEED_REPO_ADD_COMMENTED=y CONFIG_FEED_packages=y CONFIG_FEED_routing=y CONFIG_FEED_management=y CONFIG_FEED_targets=y CONFIG_FEED_oldpackages=y # CONFIG_SMIMEOPT is not set CONFIG_OPKGSMIME_PASSPHRASE=y # # Package features # CONFIG_FEATURE_drawing-backend_DirectFB=y # # Base system # CONFIG_PACKAGE_base-files=y # CONFIG_PACKAGE_block-mount is not set # CONFIG_PACKAGE_bridge is not set CONFIG_PACKAGE_busybox=y CONFIG_BUSYBOX_CUSTOM=y CONFIG_BUSYBOX_DEFAULT_HAVE_DOT_CONFIG=y # CONFIG_BUSYBOX_DEFAULT_DESKTOP is not set # CONFIG_BUSYBOX_DEFAULT_EXTRA_COMPAT is not set CONFIG_BUSYBOX_DEFAULT_INCLUDE_SUSv2=y # CONFIG_BUSYBOX_DEFAULT_USE_PORTABLE_CODE is not set CONFIG_BUSYBOX_DEFAULT_PLATFORM_LINUX=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_BUFFERS_USE_MALLOC is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_BUFFERS_GO_ON_STACK=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_BUFFERS_GO_IN_BSS is not set CONFIG_BUSYBOX_DEFAULT_SHOW_USAGE=y CONFIG_BUSYBOX_DEFAULT_FEATURE_VERBOSE_USAGE=y CONFIG_BUSYBOX_DEFAULT_FEATURE_COMPRESS_USAGE=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSTALLER is not set # CONFIG_BUSYBOX_DEFAULT_INSTALL_NO_USR is not set # CONFIG_BUSYBOX_DEFAULT_LOCALE_SUPPORT is not set # CONFIG_BUSYBOX_DEFAULT_UNICODE_SUPPORT is not set # CONFIG_BUSYBOX_DEFAULT_UNICODE_USING_LOCALE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHECK_UNICODE_IN_ENV is not set CONFIG_BUSYBOX_DEFAULT_SUBST_WCHAR=0 CONFIG_BUSYBOX_DEFAULT_LAST_SUPPORTED_WCHAR=0 # CONFIG_BUSYBOX_DEFAULT_UNICODE_COMBINING_WCHARS is not set # CONFIG_BUSYBOX_DEFAULT_UNICODE_WIDE_WCHARS is not set # CONFIG_BUSYBOX_DEFAULT_UNICODE_BIDI_SUPPORT is not set # CONFIG_BUSYBOX_DEFAULT_UNICODE_NEUTRAL_TABLE is not set # CONFIG_BUSYBOX_DEFAULT_UNICODE_PRESERVE_BROKEN is not set # CONFIG_BUSYBOX_DEFAULT_PAM is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_USE_SENDFILE is not set CONFIG_BUSYBOX_DEFAULT_LONG_OPTS=y CONFIG_BUSYBOX_DEFAULT_FEATURE_DEVPTS=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_CLEAN_UP is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_UTMP is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_WTMP is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_PIDFILE=y CONFIG_BUSYBOX_DEFAULT_PID_FILE_PATH="/var/run" CONFIG_BUSYBOX_DEFAULT_FEATURE_SUID=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_SUID_CONFIG is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SUID_CONFIG_QUIET is not set # CONFIG_BUSYBOX_DEFAULT_SELINUX is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_PREFER_APPLETS=y CONFIG_BUSYBOX_DEFAULT_BUSYBOX_EXEC_PATH="/proc/self/exe" CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOG=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_HAVE_RPC is not set # CONFIG_BUSYBOX_DEFAULT_STATIC is not set # CONFIG_BUSYBOX_DEFAULT_PIE is not set # CONFIG_BUSYBOX_DEFAULT_NOMMU is not set # CONFIG_BUSYBOX_DEFAULT_BUILD_LIBBUSYBOX is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INDIVIDUAL is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SHARED_BUSYBOX is not set CONFIG_BUSYBOX_DEFAULT_LFS=y CONFIG_BUSYBOX_DEFAULT_CROSS_COMPILER_PREFIX="" CONFIG_BUSYBOX_DEFAULT_SYSROOT="" CONFIG_BUSYBOX_DEFAULT_EXTRA_CFLAGS="" CONFIG_BUSYBOX_DEFAULT_EXTRA_LDFLAGS="" CONFIG_BUSYBOX_DEFAULT_EXTRA_LDLIBS="" # CONFIG_BUSYBOX_DEFAULT_DEBUG is not set # CONFIG_BUSYBOX_DEFAULT_DEBUG_PESSIMIZE is not set # CONFIG_BUSYBOX_DEFAULT_UNIT_TEST is not set # CONFIG_BUSYBOX_DEFAULT_WERROR is not set CONFIG_BUSYBOX_DEFAULT_NO_DEBUG_LIB=y # CONFIG_BUSYBOX_DEFAULT_DMALLOC is not set # CONFIG_BUSYBOX_DEFAULT_EFENCE is not set CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_SYMLINKS=y # CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_HARDLINKS is not set # CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_SCRIPT_WRAPPERS is not set # CONFIG_BUSYBOX_DEFAULT_INSTALL_APPLET_DONT is not set # CONFIG_BUSYBOX_DEFAULT_INSTALL_SH_APPLET_SYMLINK is not set # CONFIG_BUSYBOX_DEFAULT_INSTALL_SH_APPLET_HARDLINK is not set # CONFIG_BUSYBOX_DEFAULT_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set CONFIG_BUSYBOX_DEFAULT_PREFIX="./_install" # CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSTEMD is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_RTMINMAX is not set CONFIG_BUSYBOX_DEFAULT_PASSWORD_MINLEN=6 CONFIG_BUSYBOX_DEFAULT_MD5_SMALL=1 CONFIG_BUSYBOX_DEFAULT_SHA3_SMALL=1 CONFIG_BUSYBOX_DEFAULT_FEATURE_FAST_TOP=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_ETC_NETWORKS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_USE_TERMIOS is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING=y CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_MAX_LEN=512 # CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_VI is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_HISTORY=256 # CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_SAVEHISTORY is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_SAVE_ON_EXIT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_REVERSE_SEARCH is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_TAB_COMPLETION=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_USERNAME_COMPLETION is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_FANCY_PROMPT=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_EDITING_ASK_TERMINAL is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_NON_POSIX_CP=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_VERBOSE_CP_MESSAGE is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_COPYBUF_KB=4 # CONFIG_BUSYBOX_DEFAULT_FEATURE_SKIP_ROOTFS is not set # CONFIG_BUSYBOX_DEFAULT_MONOTONIC_SYSCALL is not set CONFIG_BUSYBOX_DEFAULT_IOCTL_HEX2STR_ERROR=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_HWIB is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_XZ is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_LZMA is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_BZ2 is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_GZ=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_SEAMLESS_Z is not set # CONFIG_BUSYBOX_DEFAULT_AR is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_AR_LONG_FILENAMES is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_AR_CREATE is not set # CONFIG_BUSYBOX_DEFAULT_UNCOMPRESS is not set CONFIG_BUSYBOX_DEFAULT_GUNZIP=y CONFIG_BUSYBOX_DEFAULT_BUNZIP2=y # CONFIG_BUSYBOX_DEFAULT_UNLZMA is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_LZMA_FAST is not set # CONFIG_BUSYBOX_DEFAULT_LZMA is not set # CONFIG_BUSYBOX_DEFAULT_UNXZ is not set # CONFIG_BUSYBOX_DEFAULT_XZ is not set # CONFIG_BUSYBOX_DEFAULT_BZIP2 is not set # CONFIG_BUSYBOX_DEFAULT_CPIO is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_CPIO_O is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_CPIO_P is not set # CONFIG_BUSYBOX_DEFAULT_DPKG is not set # CONFIG_BUSYBOX_DEFAULT_DPKG_DEB is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_DPKG_DEB_EXTRACT_ONLY is not set CONFIG_BUSYBOX_DEFAULT_GZIP=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_GZIP_LONG_OPTIONS is not set CONFIG_BUSYBOX_DEFAULT_GZIP_FAST=0 # CONFIG_BUSYBOX_DEFAULT_FEATURE_GZIP_LEVELS is not set # CONFIG_BUSYBOX_DEFAULT_LZOP is not set # CONFIG_BUSYBOX_DEFAULT_LZOP_COMPR_HIGH is not set # CONFIG_BUSYBOX_DEFAULT_RPM is not set # CONFIG_BUSYBOX_DEFAULT_RPM2CPIO is not set CONFIG_BUSYBOX_DEFAULT_TAR=y CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_CREATE=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_AUTODETECT is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_FROM=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_OLDGNU_COMPATIBILITY is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_OLDSUN_COMPATIBILITY is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_GNU_EXTENSIONS=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_LONG_OPTIONS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_TO_COMMAND is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_UNAME_GNAME is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_NOPRESERVE_TIME is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TAR_SELINUX is not set # CONFIG_BUSYBOX_DEFAULT_UNZIP is not set CONFIG_BUSYBOX_DEFAULT_BASENAME=y CONFIG_BUSYBOX_DEFAULT_CAT=y CONFIG_BUSYBOX_DEFAULT_DATE=y CONFIG_BUSYBOX_DEFAULT_FEATURE_DATE_ISOFMT=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_DATE_NANO is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_DATE_COMPAT is not set CONFIG_BUSYBOX_DEFAULT_DD=y CONFIG_BUSYBOX_DEFAULT_FEATURE_DD_SIGNAL_HANDLING=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_DD_THIRD_STATUS_LINE is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_DD_IBS_OBS=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_DD_STATUS is not set # CONFIG_BUSYBOX_DEFAULT_HOSTID is not set CONFIG_BUSYBOX_DEFAULT_ID=y # CONFIG_BUSYBOX_DEFAULT_GROUPS is not set # CONFIG_BUSYBOX_DEFAULT_SHUF is not set CONFIG_BUSYBOX_DEFAULT_SYNC=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_SYNC_FANCY is not set CONFIG_BUSYBOX_DEFAULT_TEST=y CONFIG_BUSYBOX_DEFAULT_FEATURE_TEST_64=y CONFIG_BUSYBOX_DEFAULT_TOUCH=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_TOUCH_NODEREF is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_TOUCH_SUSV3=y CONFIG_BUSYBOX_DEFAULT_TR=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_TR_CLASSES is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TR_EQUIV is not set # CONFIG_BUSYBOX_DEFAULT_TRUNCATE is not set # CONFIG_BUSYBOX_DEFAULT_UNLINK is not set # CONFIG_BUSYBOX_DEFAULT_BASE64 is not set # CONFIG_BUSYBOX_DEFAULT_WHO is not set # CONFIG_BUSYBOX_DEFAULT_USERS is not set # CONFIG_BUSYBOX_DEFAULT_CAL is not set # CONFIG_BUSYBOX_DEFAULT_CATV is not set CONFIG_BUSYBOX_DEFAULT_CHGRP=y CONFIG_BUSYBOX_DEFAULT_CHMOD=y CONFIG_BUSYBOX_DEFAULT_CHOWN=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHOWN_LONG_OPTIONS is not set CONFIG_BUSYBOX_DEFAULT_CHROOT=y # CONFIG_BUSYBOX_DEFAULT_CKSUM is not set # CONFIG_BUSYBOX_DEFAULT_COMM is not set CONFIG_BUSYBOX_DEFAULT_CP=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_CP_LONG_OPTIONS is not set CONFIG_BUSYBOX_DEFAULT_CUT=y CONFIG_BUSYBOX_DEFAULT_DF=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_DF_FANCY is not set CONFIG_BUSYBOX_DEFAULT_DIRNAME=y # CONFIG_BUSYBOX_DEFAULT_DOS2UNIX is not set # CONFIG_BUSYBOX_DEFAULT_UNIX2DOS is not set CONFIG_BUSYBOX_DEFAULT_DU=y CONFIG_BUSYBOX_DEFAULT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y CONFIG_BUSYBOX_DEFAULT_ECHO=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_ECHO=y CONFIG_BUSYBOX_DEFAULT_ENV=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_ENV_LONG_OPTIONS is not set # CONFIG_BUSYBOX_DEFAULT_EXPAND is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_EXPAND_LONG_OPTIONS is not set CONFIG_BUSYBOX_DEFAULT_EXPR=y CONFIG_BUSYBOX_DEFAULT_EXPR_MATH_SUPPORT_64=y CONFIG_BUSYBOX_DEFAULT_FALSE=y # CONFIG_BUSYBOX_DEFAULT_FOLD is not set CONFIG_BUSYBOX_DEFAULT_FSYNC=y CONFIG_BUSYBOX_DEFAULT_HEAD=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_HEAD=y # CONFIG_BUSYBOX_DEFAULT_INSTALL is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSTALL_LONG_OPTIONS is not set CONFIG_BUSYBOX_DEFAULT_LN=y # CONFIG_BUSYBOX_DEFAULT_LOGNAME is not set CONFIG_BUSYBOX_DEFAULT_LS=y CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_FILETYPES=y CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_FOLLOWLINKS=y CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_RECURSIVE=y CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_SORTFILES=y CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_TIMESTAMPS=y CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_USERNAME=y CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_COLOR=y CONFIG_BUSYBOX_DEFAULT_FEATURE_LS_COLOR_IS_DEFAULT=y CONFIG_BUSYBOX_DEFAULT_MD5SUM=y CONFIG_BUSYBOX_DEFAULT_MKDIR=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_MKDIR_LONG_OPTIONS is not set CONFIG_BUSYBOX_DEFAULT_MKFIFO=y CONFIG_BUSYBOX_DEFAULT_MKNOD=y CONFIG_BUSYBOX_DEFAULT_MV=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_MV_LONG_OPTIONS is not set CONFIG_BUSYBOX_DEFAULT_NICE=y # CONFIG_BUSYBOX_DEFAULT_NOHUP is not set # CONFIG_BUSYBOX_DEFAULT_OD is not set # CONFIG_BUSYBOX_DEFAULT_PRINTENV is not set CONFIG_BUSYBOX_DEFAULT_PRINTF=y CONFIG_BUSYBOX_DEFAULT_PWD=y CONFIG_BUSYBOX_DEFAULT_READLINK=y CONFIG_BUSYBOX_DEFAULT_FEATURE_READLINK_FOLLOW=y # CONFIG_BUSYBOX_DEFAULT_REALPATH is not set CONFIG_BUSYBOX_DEFAULT_RM=y CONFIG_BUSYBOX_DEFAULT_RMDIR=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_RMDIR_LONG_OPTIONS is not set CONFIG_BUSYBOX_DEFAULT_SEQ=y # CONFIG_BUSYBOX_DEFAULT_SHA1SUM is not set # CONFIG_BUSYBOX_DEFAULT_SHA256SUM is not set # CONFIG_BUSYBOX_DEFAULT_SHA512SUM is not set # CONFIG_BUSYBOX_DEFAULT_SHA3SUM is not set CONFIG_BUSYBOX_DEFAULT_SLEEP=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_SLEEP=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_FLOAT_SLEEP is not set CONFIG_BUSYBOX_DEFAULT_SORT=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_SORT_BIG is not set # CONFIG_BUSYBOX_DEFAULT_SPLIT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SPLIT_FANCY is not set # CONFIG_BUSYBOX_DEFAULT_STAT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_STAT_FORMAT is not set # CONFIG_BUSYBOX_DEFAULT_STTY is not set # CONFIG_BUSYBOX_DEFAULT_SUM is not set # CONFIG_BUSYBOX_DEFAULT_TAC is not set CONFIG_BUSYBOX_DEFAULT_TAIL=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_TAIL=y CONFIG_BUSYBOX_DEFAULT_TEE=y CONFIG_BUSYBOX_DEFAULT_FEATURE_TEE_USE_BLOCK_IO=y CONFIG_BUSYBOX_DEFAULT_TRUE=y # CONFIG_BUSYBOX_DEFAULT_TTY is not set CONFIG_BUSYBOX_DEFAULT_UNAME=y CONFIG_BUSYBOX_DEFAULT_UNAME_OSNAME="GNU/Linux" # CONFIG_BUSYBOX_DEFAULT_UNEXPAND is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_UNEXPAND_LONG_OPTIONS is not set CONFIG_BUSYBOX_DEFAULT_UNIQ=y # CONFIG_BUSYBOX_DEFAULT_USLEEP is not set # CONFIG_BUSYBOX_DEFAULT_UUDECODE is not set # CONFIG_BUSYBOX_DEFAULT_UUENCODE is not set CONFIG_BUSYBOX_DEFAULT_WC=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_WC_LARGE is not set # CONFIG_BUSYBOX_DEFAULT_WHOAMI is not set CONFIG_BUSYBOX_DEFAULT_YES=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_VERBOSE is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_PRESERVE_HARDLINKS=y CONFIG_BUSYBOX_DEFAULT_FEATURE_AUTOWIDTH=y CONFIG_BUSYBOX_DEFAULT_FEATURE_HUMAN_READABLE=y CONFIG_BUSYBOX_DEFAULT_FEATURE_MD5_SHA1_SUM_CHECK=y # CONFIG_BUSYBOX_DEFAULT_CHVT is not set # CONFIG_BUSYBOX_DEFAULT_FGCONSOLE is not set CONFIG_BUSYBOX_DEFAULT_CLEAR=y # CONFIG_BUSYBOX_DEFAULT_DEALLOCVT is not set # CONFIG_BUSYBOX_DEFAULT_DUMPKMAP is not set # CONFIG_BUSYBOX_DEFAULT_KBD_MODE is not set # CONFIG_BUSYBOX_DEFAULT_LOADFONT is not set # CONFIG_BUSYBOX_DEFAULT_LOADKMAP is not set # CONFIG_BUSYBOX_DEFAULT_OPENVT is not set CONFIG_BUSYBOX_DEFAULT_RESET=y # CONFIG_BUSYBOX_DEFAULT_RESIZE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_RESIZE_PRINT is not set # CONFIG_BUSYBOX_DEFAULT_SETCONSOLE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SETCONSOLE_LONG_OPTIONS is not set # CONFIG_BUSYBOX_DEFAULT_SETFONT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SETFONT_TEXTUAL_MAP is not set CONFIG_BUSYBOX_DEFAULT_DEFAULT_SETFONT_DIR="" # CONFIG_BUSYBOX_DEFAULT_SETKEYCODES is not set # CONFIG_BUSYBOX_DEFAULT_SETLOGCONS is not set # CONFIG_BUSYBOX_DEFAULT_SHOWKEY is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_LOADFONT_PSF2 is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_LOADFONT_RAW is not set CONFIG_BUSYBOX_DEFAULT_MKTEMP=y # CONFIG_BUSYBOX_DEFAULT_PIPE_PROGRESS is not set # CONFIG_BUSYBOX_DEFAULT_RUN_PARTS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_RUN_PARTS_LONG_OPTIONS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_RUN_PARTS_FANCY is not set CONFIG_BUSYBOX_DEFAULT_START_STOP_DAEMON=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_START_STOP_DAEMON_FANCY is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set CONFIG_BUSYBOX_DEFAULT_WHICH=y CONFIG_BUSYBOX_DEFAULT_AWK=y CONFIG_BUSYBOX_DEFAULT_FEATURE_AWK_LIBM=y CONFIG_BUSYBOX_DEFAULT_FEATURE_AWK_GNU_EXTENSIONS=y CONFIG_BUSYBOX_DEFAULT_CMP=y # CONFIG_BUSYBOX_DEFAULT_DIFF is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_DIFF_LONG_OPTIONS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_DIFF_DIR is not set # CONFIG_BUSYBOX_DEFAULT_ED is not set # CONFIG_BUSYBOX_DEFAULT_PATCH is not set CONFIG_BUSYBOX_DEFAULT_SED=y CONFIG_BUSYBOX_DEFAULT_VI=y CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_MAX_LEN=1024 # CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_8BIT is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_COLON=y CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_YANKMARK=y CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_SEARCH=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_REGEX_SEARCH is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_USE_SIGNALS=y CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_DOT_CMD=y CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_READONLY=y CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_SETOPTS=y CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_SET=y CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_WIN_RESIZE=y CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_ASK_TERMINAL=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_UNDO is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_UNDO_QUEUE is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_VI_UNDO_QUEUE_MAX=0 CONFIG_BUSYBOX_DEFAULT_FEATURE_ALLOW_EXEC=y CONFIG_BUSYBOX_DEFAULT_FIND=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PRINT0=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_MTIME=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_MMIN is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PERM=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_TYPE=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_XDEV=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_MAXDEPTH=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_NEWER is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_INUM is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_EXEC=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_EXEC_PLUS is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_USER=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_GROUP=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_NOT=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_DEPTH=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PAREN=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_SIZE=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PRUNE=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_DELETE is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_PATH=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_REGEX=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_CONTEXT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_FIND_LINKS is not set CONFIG_BUSYBOX_DEFAULT_GREP=y CONFIG_BUSYBOX_DEFAULT_FEATURE_GREP_EGREP_ALIAS=y CONFIG_BUSYBOX_DEFAULT_FEATURE_GREP_FGREP_ALIAS=y CONFIG_BUSYBOX_DEFAULT_FEATURE_GREP_CONTEXT=y CONFIG_BUSYBOX_DEFAULT_XARGS=y CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_CONFIRMATION=y CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_QUOTES=y CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_TERMOPT=y CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_ZERO_TERM=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_XARGS_SUPPORT_REPL_STR is not set # CONFIG_BUSYBOX_DEFAULT_BOOTCHARTD is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_BOOTCHARTD_BLOATED_HEADER is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_BOOTCHARTD_CONFIG_FILE is not set CONFIG_BUSYBOX_DEFAULT_HALT=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_CALL_TELINIT is not set CONFIG_BUSYBOX_DEFAULT_TELINIT_PATH="" # CONFIG_BUSYBOX_DEFAULT_INIT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_USE_INITTAB is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_KILL_REMOVED is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_KILL_DELAY=0 # CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_SCTTY is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_SYSLOG is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_EXTRA_QUIET is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INIT_COREDUMPS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INITRD is not set CONFIG_BUSYBOX_DEFAULT_INIT_TERMINAL_TYPE="" # CONFIG_BUSYBOX_DEFAULT_MESG is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MESG_ENABLE_ONLY_GROUP is not set # CONFIG_BUSYBOX_DEFAULT_ADD_SHELL is not set # CONFIG_BUSYBOX_DEFAULT_REMOVE_SHELL is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_SHADOWPASSWDS=y # CONFIG_BUSYBOX_DEFAULT_USE_BB_PWD_GRP is not set # CONFIG_BUSYBOX_DEFAULT_USE_BB_SHADOW is not set # CONFIG_BUSYBOX_DEFAULT_USE_BB_CRYPT is not set # CONFIG_BUSYBOX_DEFAULT_USE_BB_CRYPT_SHA is not set # CONFIG_BUSYBOX_DEFAULT_ADDUSER is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_ADDUSER_LONG_OPTIONS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHECK_NAMES is not set CONFIG_BUSYBOX_DEFAULT_LAST_ID=0 CONFIG_BUSYBOX_DEFAULT_FIRST_SYSTEM_ID=0 CONFIG_BUSYBOX_DEFAULT_LAST_SYSTEM_ID=0 # CONFIG_BUSYBOX_DEFAULT_ADDGROUP is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_ADDGROUP_LONG_OPTIONS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_ADDUSER_TO_GROUP is not set # CONFIG_BUSYBOX_DEFAULT_DELUSER is not set # CONFIG_BUSYBOX_DEFAULT_DELGROUP is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_DEL_USER_FROM_GROUP is not set # CONFIG_BUSYBOX_DEFAULT_GETTY is not set # CONFIG_BUSYBOX_DEFAULT_LOGIN is not set # CONFIG_BUSYBOX_DEFAULT_LOGIN_SESSION_AS_CHILD is not set # CONFIG_BUSYBOX_DEFAULT_LOGIN_SCRIPTS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_NOLOGIN is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SECURETTY is not set CONFIG_BUSYBOX_DEFAULT_PASSWD=y CONFIG_BUSYBOX_DEFAULT_FEATURE_PASSWD_WEAK_CHECK=y # CONFIG_BUSYBOX_DEFAULT_CRYPTPW is not set # CONFIG_BUSYBOX_DEFAULT_CHPASSWD is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_DEFAULT_PASSWD_ALGO="md5" # CONFIG_BUSYBOX_DEFAULT_SU is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SU_SYSLOG is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SU_CHECKS_SHELLS is not set # CONFIG_BUSYBOX_DEFAULT_SULOGIN is not set # CONFIG_BUSYBOX_DEFAULT_VLOCK is not set # CONFIG_BUSYBOX_DEFAULT_CHATTR is not set # CONFIG_BUSYBOX_DEFAULT_FSCK is not set # CONFIG_BUSYBOX_DEFAULT_LSATTR is not set # CONFIG_BUSYBOX_DEFAULT_TUNE2FS is not set # CONFIG_BUSYBOX_DEFAULT_MODINFO is not set # CONFIG_BUSYBOX_DEFAULT_MODPROBE_SMALL is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED is not set # CONFIG_BUSYBOX_DEFAULT_INSMOD is not set # CONFIG_BUSYBOX_DEFAULT_RMMOD is not set # CONFIG_BUSYBOX_DEFAULT_LSMOD is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set # CONFIG_BUSYBOX_DEFAULT_MODPROBE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MODPROBE_BLACKLIST is not set # CONFIG_BUSYBOX_DEFAULT_DEPMOD is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_2_4_MODULES is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_TRY_MMAP is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_VERSION_CHECKING is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_LOADINKMEM is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_LOAD_MAP is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INSMOD_LOAD_MAP_FULL is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHECK_TAINTED_MODULE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MODUTILS_ALIAS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MODUTILS_SYMBOLS is not set CONFIG_BUSYBOX_DEFAULT_DEFAULT_MODULES_DIR="" CONFIG_BUSYBOX_DEFAULT_DEFAULT_DEPMOD_FILE="" # CONFIG_BUSYBOX_DEFAULT_BLOCKDEV is not set # CONFIG_BUSYBOX_DEFAULT_FATATTR is not set # CONFIG_BUSYBOX_DEFAULT_FSTRIM is not set # CONFIG_BUSYBOX_DEFAULT_MDEV is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_CONF is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_RENAME is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_RENAME_REGEXP is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_EXEC is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MDEV_LOAD_FIRMWARE is not set CONFIG_BUSYBOX_DEFAULT_MOUNT=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_FAKE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_VERBOSE is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_HELPERS=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_LABEL is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_NFS is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_CIFS=y CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_FLAGS=y CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_FSTAB=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_OTHERTAB is not set # CONFIG_BUSYBOX_DEFAULT_REV is not set # CONFIG_BUSYBOX_DEFAULT_UEVENT is not set # CONFIG_BUSYBOX_DEFAULT_ACPID is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_ACPID_COMPAT is not set # CONFIG_BUSYBOX_DEFAULT_BLKID is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_BLKID_TYPE is not set CONFIG_BUSYBOX_DEFAULT_DMESG=y CONFIG_BUSYBOX_DEFAULT_FEATURE_DMESG_PRETTY=y # CONFIG_BUSYBOX_DEFAULT_FBSET is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_FBSET_FANCY is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_FBSET_READMODE is not set # CONFIG_BUSYBOX_DEFAULT_FDFLUSH is not set # CONFIG_BUSYBOX_DEFAULT_FDFORMAT is not set # CONFIG_BUSYBOX_DEFAULT_FDISK is not set # CONFIG_BUSYBOX_DEFAULT_FDISK_SUPPORT_LARGE_DISKS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_FDISK_WRITABLE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_AIX_LABEL is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SGI_LABEL is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SUN_LABEL is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_OSF_LABEL is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_GPT_LABEL is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_FDISK_ADVANCED is not set # CONFIG_BUSYBOX_DEFAULT_FINDFS is not set # CONFIG_BUSYBOX_DEFAULT_FLOCK is not set # CONFIG_BUSYBOX_DEFAULT_FREERAMDISK is not set # CONFIG_BUSYBOX_DEFAULT_FSCK_MINIX is not set # CONFIG_BUSYBOX_DEFAULT_MKFS_EXT2 is not set # CONFIG_BUSYBOX_DEFAULT_MKFS_MINIX is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MINIX2 is not set # CONFIG_BUSYBOX_DEFAULT_MKFS_REISER is not set # CONFIG_BUSYBOX_DEFAULT_MKFS_VFAT is not set # CONFIG_BUSYBOX_DEFAULT_GETOPT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_GETOPT_LONG is not set CONFIG_BUSYBOX_DEFAULT_HEXDUMP=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_HEXDUMP_REVERSE is not set # CONFIG_BUSYBOX_DEFAULT_HD is not set CONFIG_BUSYBOX_DEFAULT_HWCLOCK=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_HWCLOCK_LONG_OPTIONS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HWCLOCK_ADJTIME_FHS is not set # CONFIG_BUSYBOX_DEFAULT_IPCRM is not set # CONFIG_BUSYBOX_DEFAULT_IPCS is not set # CONFIG_BUSYBOX_DEFAULT_LOSETUP is not set # CONFIG_BUSYBOX_DEFAULT_LSPCI is not set # CONFIG_BUSYBOX_DEFAULT_LSUSB is not set CONFIG_BUSYBOX_DEFAULT_MKSWAP=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_MKSWAP_UUID is not set # CONFIG_BUSYBOX_DEFAULT_MORE is not set CONFIG_BUSYBOX_DEFAULT_PIVOT_ROOT=y # CONFIG_BUSYBOX_DEFAULT_RDATE is not set # CONFIG_BUSYBOX_DEFAULT_RDEV is not set # CONFIG_BUSYBOX_DEFAULT_READPROFILE is not set # CONFIG_BUSYBOX_DEFAULT_RTCWAKE is not set # CONFIG_BUSYBOX_DEFAULT_SCRIPT is not set # CONFIG_BUSYBOX_DEFAULT_SCRIPTREPLAY is not set # CONFIG_BUSYBOX_DEFAULT_SETARCH is not set # CONFIG_BUSYBOX_DEFAULT_SWAPONOFF is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SWAPON_DISCARD is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SWAPON_PRI is not set CONFIG_BUSYBOX_DEFAULT_SWITCH_ROOT=y CONFIG_BUSYBOX_DEFAULT_UMOUNT=y CONFIG_BUSYBOX_DEFAULT_FEATURE_UMOUNT_ALL=y CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_LOOP=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_MOUNT_LOOP_CREATE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MTAB_SUPPORT is not set # CONFIG_BUSYBOX_DEFAULT_VOLUMEID is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_BTRFS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_CRAMFS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_EXFAT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_EXT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_F2FS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_FAT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_HFS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_ISO9660 is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_JFS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_LINUXRAID is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_LINUXSWAP is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_LUKS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_NILFS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_NTFS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_OCFS2 is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_REISERFS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_ROMFS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_SQUASHFS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_SYSV is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_UDF is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_VOLUMEID_XFS is not set # CONFIG_BUSYBOX_DEFAULT_CONSPY is not set CONFIG_BUSYBOX_DEFAULT_CROND=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_CROND_D is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_CROND_CALL_SENDMAIL is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_CROND_DIR="/etc" # CONFIG_BUSYBOX_DEFAULT_I2CGET is not set # CONFIG_BUSYBOX_DEFAULT_I2CSET is not set # CONFIG_BUSYBOX_DEFAULT_I2CDUMP is not set # CONFIG_BUSYBOX_DEFAULT_I2CDETECT is not set CONFIG_BUSYBOX_DEFAULT_LESS=y CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_MAXLINES=9999999 # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_BRACKETS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_FLAGS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_TRUNCATE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_MARKS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_REGEXP is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_WINCH is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_ASK_TERMINAL is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_DASHCMD is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_LESS_LINENUMS is not set # CONFIG_BUSYBOX_DEFAULT_NANDWRITE is not set # CONFIG_BUSYBOX_DEFAULT_NANDDUMP is not set # CONFIG_BUSYBOX_DEFAULT_RFKILL is not set # CONFIG_BUSYBOX_DEFAULT_SETSERIAL is not set # CONFIG_BUSYBOX_DEFAULT_TASKSET is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TASKSET_FANCY is not set # CONFIG_BUSYBOX_DEFAULT_UBIATTACH is not set # CONFIG_BUSYBOX_DEFAULT_UBIDETACH is not set # CONFIG_BUSYBOX_DEFAULT_UBIMKVOL is not set # CONFIG_BUSYBOX_DEFAULT_UBIRMVOL is not set # CONFIG_BUSYBOX_DEFAULT_UBIRSVOL is not set # CONFIG_BUSYBOX_DEFAULT_UBIUPDATEVOL is not set # CONFIG_BUSYBOX_DEFAULT_WALL is not set # CONFIG_BUSYBOX_DEFAULT_ADJTIMEX is not set # CONFIG_BUSYBOX_DEFAULT_BBCONFIG is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_COMPRESS_BBCONFIG is not set # CONFIG_BUSYBOX_DEFAULT_BEEP is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_BEEP_FREQ=0 CONFIG_BUSYBOX_DEFAULT_FEATURE_BEEP_LENGTH_MS=0 # CONFIG_BUSYBOX_DEFAULT_CHAT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_NOFAIL is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_TTY_HIFI is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_IMPLICIT_CR is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_SWALLOW_OPTS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_SEND_ESCAPES is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_VAR_ABORT_LEN is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHAT_CLR_ABORT is not set # CONFIG_BUSYBOX_DEFAULT_CHRT is not set CONFIG_BUSYBOX_DEFAULT_CRONTAB=y # CONFIG_BUSYBOX_DEFAULT_DC is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_DC_LIBM is not set # CONFIG_BUSYBOX_DEFAULT_DEVFSD is not set # CONFIG_BUSYBOX_DEFAULT_DEVFSD_MODLOAD is not set # CONFIG_BUSYBOX_DEFAULT_DEVFSD_FG_NP is not set # CONFIG_BUSYBOX_DEFAULT_DEVFSD_VERBOSE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_DEVFS is not set # CONFIG_BUSYBOX_DEFAULT_DEVMEM is not set # CONFIG_BUSYBOX_DEFAULT_EJECT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_EJECT_SCSI is not set # CONFIG_BUSYBOX_DEFAULT_FBSPLASH is not set # CONFIG_BUSYBOX_DEFAULT_FLASHCP is not set # CONFIG_BUSYBOX_DEFAULT_FLASH_LOCK is not set # CONFIG_BUSYBOX_DEFAULT_FLASH_UNLOCK is not set # CONFIG_BUSYBOX_DEFAULT_FLASH_ERASEALL is not set # CONFIG_BUSYBOX_DEFAULT_IONICE is not set # CONFIG_BUSYBOX_DEFAULT_INOTIFYD is not set # CONFIG_BUSYBOX_DEFAULT_LAST is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_LAST_SMALL is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_LAST_FANCY is not set # CONFIG_BUSYBOX_DEFAULT_HDPARM is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_GET_IDENTITY is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_SCAN_HWIF is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_DRIVE_RESET is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_TRISTATE_HWIF is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HDPARM_HDIO_GETSET_DMA is not set CONFIG_BUSYBOX_DEFAULT_LOCK=y # CONFIG_BUSYBOX_DEFAULT_MAKEDEVS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MAKEDEVS_LEAF is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_MAKEDEVS_TABLE is not set # CONFIG_BUSYBOX_DEFAULT_MAN is not set # CONFIG_BUSYBOX_DEFAULT_MICROCOM is not set # CONFIG_BUSYBOX_DEFAULT_MOUNTPOINT is not set # CONFIG_BUSYBOX_DEFAULT_MT is not set # CONFIG_BUSYBOX_DEFAULT_RAIDAUTORUN is not set # CONFIG_BUSYBOX_DEFAULT_READAHEAD is not set # CONFIG_BUSYBOX_DEFAULT_RUNLEVEL is not set # CONFIG_BUSYBOX_DEFAULT_RX is not set # CONFIG_BUSYBOX_DEFAULT_SETSID is not set CONFIG_BUSYBOX_DEFAULT_STRINGS=y CONFIG_BUSYBOX_DEFAULT_TIME=y # CONFIG_BUSYBOX_DEFAULT_TIMEOUT is not set # CONFIG_BUSYBOX_DEFAULT_TTYSIZE is not set # CONFIG_BUSYBOX_DEFAULT_VOLNAME is not set # CONFIG_BUSYBOX_DEFAULT_WATCHDOG is not set # CONFIG_BUSYBOX_DEFAULT_NAMEIF is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_NAMEIF_EXTENDED is not set # CONFIG_BUSYBOX_DEFAULT_NBDCLIENT is not set CONFIG_BUSYBOX_DEFAULT_NC=y # CONFIG_BUSYBOX_DEFAULT_NC_SERVER is not set # CONFIG_BUSYBOX_DEFAULT_NC_EXTRA is not set # CONFIG_BUSYBOX_DEFAULT_NC_110_COMPAT is not set CONFIG_BUSYBOX_DEFAULT_PING=y CONFIG_BUSYBOX_DEFAULT_PING6=y CONFIG_BUSYBOX_DEFAULT_FEATURE_FANCY_PING=y # CONFIG_BUSYBOX_DEFAULT_WGET is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_STATUSBAR=y CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_AUTHENTICATION=y CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_LONG_OPTIONS=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_TIMEOUT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_OPENSSL is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_WGET_SSL_HELPER is not set # CONFIG_BUSYBOX_DEFAULT_WHOIS is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_IPV6=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_UNIX_LOCAL is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_PREFER_IPV4_ADDRESS=y CONFIG_BUSYBOX_DEFAULT_VERBOSE_RESOLUTION_ERRORS=y # CONFIG_BUSYBOX_DEFAULT_ARP is not set # CONFIG_BUSYBOX_DEFAULT_ARPING is not set CONFIG_BUSYBOX_DEFAULT_BRCTL=y CONFIG_BUSYBOX_DEFAULT_FEATURE_BRCTL_FANCY=y CONFIG_BUSYBOX_DEFAULT_FEATURE_BRCTL_SHOW=y # CONFIG_BUSYBOX_DEFAULT_DNSD is not set # CONFIG_BUSYBOX_DEFAULT_ETHER_WAKE is not set # CONFIG_BUSYBOX_DEFAULT_FAKEIDENTD is not set # CONFIG_BUSYBOX_DEFAULT_FTPD is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_FTP_WRITE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_FTPD_ACCEPT_BROKEN_LIST is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_FTP_AUTHENTICATION is not set # CONFIG_BUSYBOX_DEFAULT_FTPGET is not set # CONFIG_BUSYBOX_DEFAULT_FTPPUT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_FTPGETPUT_LONG_OPTIONS is not set # CONFIG_BUSYBOX_DEFAULT_HOSTNAME is not set # CONFIG_BUSYBOX_DEFAULT_HTTPD is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_RANGES is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_SETUID is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_BASIC_AUTH is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_AUTH_MD5 is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_CGI is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_ENCODE_URL_STR is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_ERROR_PAGES is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_PROXY is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_HTTPD_GZIP is not set CONFIG_BUSYBOX_DEFAULT_IFCONFIG=y CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_STATUS=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_SLIP is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_HW=y CONFIG_BUSYBOX_DEFAULT_FEATURE_IFCONFIG_BROADCAST_PLUS=y # CONFIG_BUSYBOX_DEFAULT_IFENSLAVE is not set # CONFIG_BUSYBOX_DEFAULT_IFPLUGD is not set # CONFIG_BUSYBOX_DEFAULT_IFUPDOWN is not set CONFIG_BUSYBOX_DEFAULT_IFUPDOWN_IFSTATE_PATH="" # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IP is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IP_BUILTIN is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IPV4 is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_IPV6 is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_MAPPING is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set # CONFIG_BUSYBOX_DEFAULT_INETD is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_TIME is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_INETD_RPC is not set CONFIG_BUSYBOX_DEFAULT_IP=y CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_ADDRESS=y CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_LINK=y CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_ROUTE=y CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_ROUTE_DIR="/etc/iproute2" # CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_TUNNEL is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_RULE=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_SHORT_FORMS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_IP_RARE_PROTOCOLS is not set # CONFIG_BUSYBOX_DEFAULT_IPADDR is not set # CONFIG_BUSYBOX_DEFAULT_IPLINK is not set # CONFIG_BUSYBOX_DEFAULT_IPROUTE is not set # CONFIG_BUSYBOX_DEFAULT_IPTUNNEL is not set # CONFIG_BUSYBOX_DEFAULT_IPRULE is not set # CONFIG_BUSYBOX_DEFAULT_IPCALC is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_IPCALC_FANCY is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_IPCALC_LONG_OPTIONS is not set CONFIG_BUSYBOX_DEFAULT_NETMSG=y CONFIG_BUSYBOX_DEFAULT_NETSTAT=y CONFIG_BUSYBOX_DEFAULT_FEATURE_NETSTAT_WIDE=y CONFIG_BUSYBOX_DEFAULT_FEATURE_NETSTAT_PRG=y CONFIG_BUSYBOX_DEFAULT_NSLOOKUP=y CONFIG_BUSYBOX_DEFAULT_NTPD=y CONFIG_BUSYBOX_DEFAULT_FEATURE_NTPD_SERVER=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_NTPD_CONF is not set # CONFIG_BUSYBOX_DEFAULT_PSCAN is not set CONFIG_BUSYBOX_DEFAULT_ROUTE=y # CONFIG_BUSYBOX_DEFAULT_SLATTACH is not set # CONFIG_BUSYBOX_DEFAULT_TCPSVD is not set # CONFIG_BUSYBOX_DEFAULT_TELNET is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNET_TTYPE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNET_AUTOLOGIN is not set # CONFIG_BUSYBOX_DEFAULT_TELNETD is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNETD_STANDALONE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TELNETD_INETD_WAIT is not set # CONFIG_BUSYBOX_DEFAULT_TFTP is not set # CONFIG_BUSYBOX_DEFAULT_TFTPD is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_GET is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_PUT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_BLOCKSIZE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TFTP_PROGRESS_BAR is not set # CONFIG_BUSYBOX_DEFAULT_TFTP_DEBUG is not set CONFIG_BUSYBOX_DEFAULT_TRACEROUTE=y CONFIG_BUSYBOX_DEFAULT_TRACEROUTE6=y CONFIG_BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_VERBOSE=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_SOURCE_ROUTE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TRACEROUTE_USE_ICMP is not set # CONFIG_BUSYBOX_DEFAULT_TUNCTL is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TUNCTL_UG is not set # CONFIG_BUSYBOX_DEFAULT_UDHCPC6 is not set # CONFIG_BUSYBOX_DEFAULT_UDHCPD is not set # CONFIG_BUSYBOX_DEFAULT_DHCPRELAY is not set # CONFIG_BUSYBOX_DEFAULT_DUMPLEASES is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPD_WRITE_LEASES_EARLY is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPD_BASE_IP_ON_MAC is not set CONFIG_BUSYBOX_DEFAULT_DHCPD_LEASES_FILE="" CONFIG_BUSYBOX_DEFAULT_UDHCPC=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPC_ARPING is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCPC_SANITIZEOPT is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCP_PORT is not set CONFIG_BUSYBOX_DEFAULT_UDHCP_DEBUG=0 CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCP_RFC3397=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_UDHCP_8021Q is not set CONFIG_BUSYBOX_DEFAULT_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" CONFIG_BUSYBOX_DEFAULT_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 CONFIG_BUSYBOX_DEFAULT_IFUPDOWN_UDHCPC_CMD_OPTIONS="" # CONFIG_BUSYBOX_DEFAULT_UDPSVD is not set # CONFIG_BUSYBOX_DEFAULT_VCONFIG is not set # CONFIG_BUSYBOX_DEFAULT_ZCIP is not set # CONFIG_BUSYBOX_DEFAULT_LPD is not set # CONFIG_BUSYBOX_DEFAULT_LPR is not set # CONFIG_BUSYBOX_DEFAULT_LPQ is not set # CONFIG_BUSYBOX_DEFAULT_MAKEMIME is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_MIME_CHARSET="" # CONFIG_BUSYBOX_DEFAULT_POPMAILDIR is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_POPMAILDIR_DELIVERY is not set # CONFIG_BUSYBOX_DEFAULT_REFORMIME is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_REFORMIME_COMPAT is not set # CONFIG_BUSYBOX_DEFAULT_SENDMAIL is not set # CONFIG_BUSYBOX_DEFAULT_IOSTAT is not set # CONFIG_BUSYBOX_DEFAULT_LSOF is not set # CONFIG_BUSYBOX_DEFAULT_MPSTAT is not set # CONFIG_BUSYBOX_DEFAULT_NMETER is not set # CONFIG_BUSYBOX_DEFAULT_PMAP is not set # CONFIG_BUSYBOX_DEFAULT_POWERTOP is not set # CONFIG_BUSYBOX_DEFAULT_PSTREE is not set # CONFIG_BUSYBOX_DEFAULT_PWDX is not set # CONFIG_BUSYBOX_DEFAULT_SMEMCAP is not set CONFIG_BUSYBOX_DEFAULT_TOP=y CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_SMP_CPU is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_DECIMALS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TOP_SMP_PROCESS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_TOPMEM is not set CONFIG_BUSYBOX_DEFAULT_UPTIME=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_UPTIME_UTMP_SUPPORT is not set CONFIG_BUSYBOX_DEFAULT_FREE=y # CONFIG_BUSYBOX_DEFAULT_FUSER is not set CONFIG_BUSYBOX_DEFAULT_KILL=y CONFIG_BUSYBOX_DEFAULT_KILLALL=y # CONFIG_BUSYBOX_DEFAULT_KILLALL5 is not set CONFIG_BUSYBOX_DEFAULT_PGREP=y CONFIG_BUSYBOX_DEFAULT_PIDOF=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_PIDOF_SINGLE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_PIDOF_OMIT is not set # CONFIG_BUSYBOX_DEFAULT_PKILL is not set CONFIG_BUSYBOX_DEFAULT_PS=y CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_WIDE=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_LONG is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_TIME is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_ADDITIONAL_COLUMNS is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_PS_UNUSUAL_SYSTEMS is not set # CONFIG_BUSYBOX_DEFAULT_RENICE is not set CONFIG_BUSYBOX_DEFAULT_BB_SYSCTL=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_SHOW_THREADS is not set # CONFIG_BUSYBOX_DEFAULT_WATCH is not set # CONFIG_BUSYBOX_DEFAULT_RUNSV is not set # CONFIG_BUSYBOX_DEFAULT_RUNSVDIR is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_RUNSVDIR_LOG is not set # CONFIG_BUSYBOX_DEFAULT_SV is not set CONFIG_BUSYBOX_DEFAULT_SV_DEFAULT_SERVICE_DIR="" # CONFIG_BUSYBOX_DEFAULT_SVLOGD is not set # CONFIG_BUSYBOX_DEFAULT_CHPST is not set # CONFIG_BUSYBOX_DEFAULT_SETUIDGID is not set # CONFIG_BUSYBOX_DEFAULT_ENVUIDGID is not set # CONFIG_BUSYBOX_DEFAULT_ENVDIR is not set # CONFIG_BUSYBOX_DEFAULT_SOFTLIMIT is not set # CONFIG_BUSYBOX_DEFAULT_CHCON is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_CHCON_LONG_OPTIONS is not set # CONFIG_BUSYBOX_DEFAULT_GETENFORCE is not set # CONFIG_BUSYBOX_DEFAULT_GETSEBOOL is not set # CONFIG_BUSYBOX_DEFAULT_LOAD_POLICY is not set # CONFIG_BUSYBOX_DEFAULT_MATCHPATHCON is not set # CONFIG_BUSYBOX_DEFAULT_RESTORECON is not set # CONFIG_BUSYBOX_DEFAULT_RUNCON is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_RUNCON_LONG_OPTIONS is not set # CONFIG_BUSYBOX_DEFAULT_SELINUXENABLED is not set # CONFIG_BUSYBOX_DEFAULT_SETENFORCE is not set # CONFIG_BUSYBOX_DEFAULT_SETFILES is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SETFILES_CHECK_OPTION is not set # CONFIG_BUSYBOX_DEFAULT_SETSEBOOL is not set # CONFIG_BUSYBOX_DEFAULT_SESTATUS is not set CONFIG_BUSYBOX_DEFAULT_ASH=y CONFIG_BUSYBOX_DEFAULT_ASH_BASH_COMPAT=y # CONFIG_BUSYBOX_DEFAULT_ASH_IDLE_TIMEOUT is not set CONFIG_BUSYBOX_DEFAULT_ASH_JOB_CONTROL=y CONFIG_BUSYBOX_DEFAULT_ASH_ALIAS=y CONFIG_BUSYBOX_DEFAULT_ASH_GETOPTS=y CONFIG_BUSYBOX_DEFAULT_ASH_BUILTIN_ECHO=y CONFIG_BUSYBOX_DEFAULT_ASH_BUILTIN_PRINTF=y CONFIG_BUSYBOX_DEFAULT_ASH_BUILTIN_TEST=y # CONFIG_BUSYBOX_DEFAULT_ASH_HELP is not set CONFIG_BUSYBOX_DEFAULT_ASH_CMDCMD=y # CONFIG_BUSYBOX_DEFAULT_ASH_MAIL is not set # CONFIG_BUSYBOX_DEFAULT_ASH_OPTIMIZE_FOR_SIZE is not set # CONFIG_BUSYBOX_DEFAULT_ASH_RANDOM_SUPPORT is not set CONFIG_BUSYBOX_DEFAULT_ASH_EXPAND_PRMT=y # CONFIG_BUSYBOX_DEFAULT_CTTYHACK is not set # CONFIG_BUSYBOX_DEFAULT_HUSH is not set # CONFIG_BUSYBOX_DEFAULT_HUSH_BASH_COMPAT is not set # CONFIG_BUSYBOX_DEFAULT_HUSH_BRACE_EXPANSION is not set # CONFIG_BUSYBOX_DEFAULT_HUSH_HELP is not set # CONFIG_BUSYBOX_DEFAULT_HUSH_INTERACTIVE is not set # CONFIG_BUSYBOX_DEFAULT_HUSH_SAVEHISTORY is not set # CONFIG_BUSYBOX_DEFAULT_HUSH_JOB is not set # CONFIG_BUSYBOX_DEFAULT_HUSH_TICK is not set # CONFIG_BUSYBOX_DEFAULT_HUSH_IF is not set # CONFIG_BUSYBOX_DEFAULT_HUSH_LOOPS is not set # CONFIG_BUSYBOX_DEFAULT_HUSH_CASE is not set # CONFIG_BUSYBOX_DEFAULT_HUSH_FUNCTIONS is not set # CONFIG_BUSYBOX_DEFAULT_HUSH_LOCAL is not set # CONFIG_BUSYBOX_DEFAULT_HUSH_RANDOM_SUPPORT is not set # CONFIG_BUSYBOX_DEFAULT_HUSH_EXPORT_N is not set # CONFIG_BUSYBOX_DEFAULT_HUSH_MODE_X is not set # CONFIG_BUSYBOX_DEFAULT_MSH is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_IS_ASH=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_IS_HUSH is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_IS_NONE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_BASH_IS_ASH is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_BASH_IS_HUSH is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_BASH_IS_NONE=y CONFIG_BUSYBOX_DEFAULT_SH_MATH_SUPPORT=y CONFIG_BUSYBOX_DEFAULT_SH_MATH_SUPPORT_64=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_EXTRA_QUIET is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_STANDALONE is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_NOFORK=y # CONFIG_BUSYBOX_DEFAULT_FEATURE_SH_HISTFILESIZE is not set # CONFIG_BUSYBOX_DEFAULT_SYSLOGD is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_ROTATE_LOGFILE is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_REMOTE_LOG is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOGD_DUP is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOGD_CFG is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_SYSLOGD_READ_BUFFER_SIZE=0 # CONFIG_BUSYBOX_DEFAULT_FEATURE_IPC_SYSLOG is not set CONFIG_BUSYBOX_DEFAULT_FEATURE_IPC_SYSLOG_BUFFER_SIZE=0 # CONFIG_BUSYBOX_DEFAULT_LOGREAD is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_LOGREAD_REDUCED_LOCKING is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_KMSG_SYSLOG is not set # CONFIG_BUSYBOX_DEFAULT_KLOGD is not set # CONFIG_BUSYBOX_DEFAULT_FEATURE_KLOGD_KLOGCTL is not set CONFIG_BUSYBOX_DEFAULT_LOGGER=y CONFIG_BUSYBOX_CONFIG_HAVE_DOT_CONFIG=y # # Busybox Settings # # # General Configuration # # CONFIG_BUSYBOX_CONFIG_DESKTOP is not set # CONFIG_BUSYBOX_CONFIG_EXTRA_COMPAT is not set CONFIG_BUSYBOX_CONFIG_INCLUDE_SUSv2=y # CONFIG_BUSYBOX_CONFIG_USE_PORTABLE_CODE is not set CONFIG_BUSYBOX_CONFIG_PLATFORM_LINUX=y # CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_USE_MALLOC is not set CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y # CONFIG_BUSYBOX_CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set CONFIG_BUSYBOX_CONFIG_SHOW_USAGE=y CONFIG_BUSYBOX_CONFIG_FEATURE_VERBOSE_USAGE=y CONFIG_BUSYBOX_CONFIG_FEATURE_COMPRESS_USAGE=y # CONFIG_BUSYBOX_CONFIG_FEATURE_INSTALLER is not set # CONFIG_BUSYBOX_CONFIG_INSTALL_NO_USR is not set # CONFIG_BUSYBOX_CONFIG_LOCALE_SUPPORT is not set # CONFIG_BUSYBOX_CONFIG_UNICODE_SUPPORT is not set # CONFIG_BUSYBOX_CONFIG_PAM is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_USE_SENDFILE is not set CONFIG_BUSYBOX_CONFIG_LONG_OPTS=y CONFIG_BUSYBOX_CONFIG_FEATURE_DEVPTS=y # CONFIG_BUSYBOX_CONFIG_FEATURE_CLEAN_UP is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_UTMP is not set CONFIG_BUSYBOX_CONFIG_FEATURE_PIDFILE=y CONFIG_BUSYBOX_CONFIG_PID_FILE_PATH="/var/run" CONFIG_BUSYBOX_CONFIG_FEATURE_SUID=y # CONFIG_BUSYBOX_CONFIG_FEATURE_SUID_CONFIG is not set # CONFIG_BUSYBOX_CONFIG_SELINUX is not set CONFIG_BUSYBOX_CONFIG_FEATURE_PREFER_APPLETS=y CONFIG_BUSYBOX_CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" CONFIG_BUSYBOX_CONFIG_FEATURE_SYSLOG=y # CONFIG_BUSYBOX_CONFIG_FEATURE_HAVE_RPC is not set # # Build Options # # CONFIG_BUSYBOX_CONFIG_STATIC is not set # CONFIG_BUSYBOX_CONFIG_PIE is not set # CONFIG_BUSYBOX_CONFIG_NOMMU is not set CONFIG_BUSYBOX_CONFIG_LFS=y CONFIG_BUSYBOX_CONFIG_CROSS_COMPILER_PREFIX="" CONFIG_BUSYBOX_CONFIG_SYSROOT="" CONFIG_BUSYBOX_CONFIG_EXTRA_CFLAGS="" CONFIG_BUSYBOX_CONFIG_EXTRA_LDFLAGS="" CONFIG_BUSYBOX_CONFIG_EXTRA_LDLIBS="" # # Debugging Options # # CONFIG_BUSYBOX_CONFIG_DEBUG is not set # CONFIG_BUSYBOX_CONFIG_UNIT_TEST is not set # CONFIG_BUSYBOX_CONFIG_WERROR is not set CONFIG_BUSYBOX_CONFIG_NO_DEBUG_LIB=y # CONFIG_BUSYBOX_CONFIG_DMALLOC is not set # CONFIG_BUSYBOX_CONFIG_EFENCE is not set # # Installation Options ("make install" behavior) # CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_SYMLINKS=y # CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_HARDLINKS is not set # CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set # CONFIG_BUSYBOX_CONFIG_INSTALL_APPLET_DONT is not set CONFIG_BUSYBOX_CONFIG_PREFIX="./_install" # # Busybox Library Tuning # # CONFIG_BUSYBOX_CONFIG_FEATURE_SYSTEMD is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_RTMINMAX is not set CONFIG_BUSYBOX_CONFIG_PASSWORD_MINLEN=6 CONFIG_BUSYBOX_CONFIG_MD5_SMALL=1 CONFIG_BUSYBOX_CONFIG_SHA3_SMALL=1 CONFIG_BUSYBOX_CONFIG_FEATURE_FAST_TOP=y # CONFIG_BUSYBOX_CONFIG_FEATURE_ETC_NETWORKS is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_USE_TERMIOS is not set CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING=y CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_MAX_LEN=512 # CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_VI is not set CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_HISTORY=256 # CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_SAVEHISTORY is not set CONFIG_BUSYBOX_CONFIG_FEATURE_TAB_COMPLETION=y # CONFIG_BUSYBOX_CONFIG_FEATURE_USERNAME_COMPLETION is not set CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_FANCY_PROMPT=y # CONFIG_BUSYBOX_CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set CONFIG_BUSYBOX_CONFIG_FEATURE_NON_POSIX_CP=y CONFIG_BUSYBOX_CONFIG_FEATURE_VERBOSE_CP_MESSAGE=y CONFIG_BUSYBOX_CONFIG_FEATURE_COPYBUF_KB=4 # CONFIG_BUSYBOX_CONFIG_FEATURE_SKIP_ROOTFS is not set # CONFIG_BUSYBOX_CONFIG_MONOTONIC_SYSCALL is not set CONFIG_BUSYBOX_CONFIG_IOCTL_HEX2STR_ERROR=y # CONFIG_BUSYBOX_CONFIG_FEATURE_HWIB is not set # # Applets # # # Archival Utilities # # CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_XZ is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_LZMA is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_BZ2 is not set CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_GZ=y # CONFIG_BUSYBOX_CONFIG_FEATURE_SEAMLESS_Z is not set # CONFIG_BUSYBOX_CONFIG_AR is not set # CONFIG_BUSYBOX_CONFIG_UNCOMPRESS is not set CONFIG_BUSYBOX_CONFIG_GUNZIP=y CONFIG_BUSYBOX_CONFIG_BUNZIP2=y # CONFIG_BUSYBOX_CONFIG_UNLZMA is not set # CONFIG_BUSYBOX_CONFIG_UNXZ is not set # CONFIG_BUSYBOX_CONFIG_BZIP2 is not set # CONFIG_BUSYBOX_CONFIG_CPIO is not set # CONFIG_BUSYBOX_CONFIG_DPKG is not set # CONFIG_BUSYBOX_CONFIG_DPKG_DEB is not set CONFIG_BUSYBOX_CONFIG_GZIP=y # CONFIG_BUSYBOX_CONFIG_FEATURE_GZIP_LONG_OPTIONS is not set CONFIG_BUSYBOX_CONFIG_GZIP_FAST=0 # CONFIG_BUSYBOX_CONFIG_FEATURE_GZIP_LEVELS is not set # CONFIG_BUSYBOX_CONFIG_LZOP is not set # CONFIG_BUSYBOX_CONFIG_RPM is not set # CONFIG_BUSYBOX_CONFIG_RPM2CPIO is not set CONFIG_BUSYBOX_CONFIG_TAR=y CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_CREATE=y # CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_AUTODETECT is not set CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_FROM=y # CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY is not set CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y # CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_LONG_OPTIONS is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_UNAME_GNAME is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_TAR_NOPRESERVE_TIME is not set # CONFIG_BUSYBOX_CONFIG_UNZIP is not set # # Coreutils # CONFIG_BUSYBOX_CONFIG_BASENAME=y CONFIG_BUSYBOX_CONFIG_CAT=y CONFIG_BUSYBOX_CONFIG_DATE=y CONFIG_BUSYBOX_CONFIG_FEATURE_DATE_ISOFMT=y # CONFIG_BUSYBOX_CONFIG_FEATURE_DATE_NANO is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_DATE_COMPAT is not set CONFIG_BUSYBOX_CONFIG_DD=y CONFIG_BUSYBOX_CONFIG_FEATURE_DD_SIGNAL_HANDLING=y # CONFIG_BUSYBOX_CONFIG_FEATURE_DD_THIRD_STATUS_LINE is not set CONFIG_BUSYBOX_CONFIG_FEATURE_DD_IBS_OBS=y # CONFIG_BUSYBOX_CONFIG_FEATURE_DD_STATUS is not set # CONFIG_BUSYBOX_CONFIG_HOSTID is not set CONFIG_BUSYBOX_CONFIG_ID=y # CONFIG_BUSYBOX_CONFIG_GROUPS is not set # CONFIG_BUSYBOX_CONFIG_SHUF is not set CONFIG_BUSYBOX_CONFIG_SYNC=y # CONFIG_BUSYBOX_CONFIG_FEATURE_SYNC_FANCY is not set CONFIG_BUSYBOX_CONFIG_TEST=y CONFIG_BUSYBOX_CONFIG_FEATURE_TEST_64=y CONFIG_BUSYBOX_CONFIG_TOUCH=y # CONFIG_BUSYBOX_CONFIG_FEATURE_TOUCH_NODEREF is not set CONFIG_BUSYBOX_CONFIG_FEATURE_TOUCH_SUSV3=y CONFIG_BUSYBOX_CONFIG_TR=y # CONFIG_BUSYBOX_CONFIG_FEATURE_TR_CLASSES is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_TR_EQUIV is not set # CONFIG_BUSYBOX_CONFIG_TRUNCATE is not set # CONFIG_BUSYBOX_CONFIG_UNLINK is not set # CONFIG_BUSYBOX_CONFIG_BASE64 is not set # CONFIG_BUSYBOX_CONFIG_CAL is not set # CONFIG_BUSYBOX_CONFIG_CATV is not set CONFIG_BUSYBOX_CONFIG_CHGRP=y CONFIG_BUSYBOX_CONFIG_CHMOD=y CONFIG_BUSYBOX_CONFIG_CHOWN=y # CONFIG_BUSYBOX_CONFIG_FEATURE_CHOWN_LONG_OPTIONS is not set CONFIG_BUSYBOX_CONFIG_CHROOT=y # CONFIG_BUSYBOX_CONFIG_CKSUM is not set # CONFIG_BUSYBOX_CONFIG_COMM is not set CONFIG_BUSYBOX_CONFIG_CP=y # CONFIG_BUSYBOX_CONFIG_FEATURE_CP_LONG_OPTIONS is not set CONFIG_BUSYBOX_CONFIG_CUT=y CONFIG_BUSYBOX_CONFIG_DF=y # CONFIG_BUSYBOX_CONFIG_FEATURE_DF_FANCY is not set CONFIG_BUSYBOX_CONFIG_DIRNAME=y # CONFIG_BUSYBOX_CONFIG_DOS2UNIX is not set CONFIG_BUSYBOX_CONFIG_DU=y CONFIG_BUSYBOX_CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y CONFIG_BUSYBOX_CONFIG_ECHO=y CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_ECHO=y CONFIG_BUSYBOX_CONFIG_ENV=y # CONFIG_BUSYBOX_CONFIG_FEATURE_ENV_LONG_OPTIONS is not set # CONFIG_BUSYBOX_CONFIG_EXPAND is not set CONFIG_BUSYBOX_CONFIG_EXPR=y CONFIG_BUSYBOX_CONFIG_EXPR_MATH_SUPPORT_64=y CONFIG_BUSYBOX_CONFIG_FALSE=y # CONFIG_BUSYBOX_CONFIG_FOLD is not set CONFIG_BUSYBOX_CONFIG_FSYNC=y CONFIG_BUSYBOX_CONFIG_HEAD=y CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_HEAD=y # CONFIG_BUSYBOX_CONFIG_INSTALL is not set CONFIG_BUSYBOX_CONFIG_LN=y # CONFIG_BUSYBOX_CONFIG_LOGNAME is not set CONFIG_BUSYBOX_CONFIG_LS=y CONFIG_BUSYBOX_CONFIG_FEATURE_LS_FILETYPES=y CONFIG_BUSYBOX_CONFIG_FEATURE_LS_FOLLOWLINKS=y CONFIG_BUSYBOX_CONFIG_FEATURE_LS_RECURSIVE=y CONFIG_BUSYBOX_CONFIG_FEATURE_LS_SORTFILES=y CONFIG_BUSYBOX_CONFIG_FEATURE_LS_TIMESTAMPS=y CONFIG_BUSYBOX_CONFIG_FEATURE_LS_USERNAME=y CONFIG_BUSYBOX_CONFIG_FEATURE_LS_COLOR=y CONFIG_BUSYBOX_CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y CONFIG_BUSYBOX_CONFIG_MD5SUM=y CONFIG_BUSYBOX_CONFIG_MKDIR=y # CONFIG_BUSYBOX_CONFIG_FEATURE_MKDIR_LONG_OPTIONS is not set CONFIG_BUSYBOX_CONFIG_MKFIFO=y CONFIG_BUSYBOX_CONFIG_MKNOD=y CONFIG_BUSYBOX_CONFIG_MV=y # CONFIG_BUSYBOX_CONFIG_FEATURE_MV_LONG_OPTIONS is not set CONFIG_BUSYBOX_CONFIG_NICE=y # CONFIG_BUSYBOX_CONFIG_NOHUP is not set # CONFIG_BUSYBOX_CONFIG_OD is not set # CONFIG_BUSYBOX_CONFIG_PRINTENV is not set CONFIG_BUSYBOX_CONFIG_PRINTF=y CONFIG_BUSYBOX_CONFIG_PWD=y CONFIG_BUSYBOX_CONFIG_READLINK=y CONFIG_BUSYBOX_CONFIG_FEATURE_READLINK_FOLLOW=y # CONFIG_BUSYBOX_CONFIG_REALPATH is not set CONFIG_BUSYBOX_CONFIG_RM=y CONFIG_BUSYBOX_CONFIG_RMDIR=y # CONFIG_BUSYBOX_CONFIG_FEATURE_RMDIR_LONG_OPTIONS is not set CONFIG_BUSYBOX_CONFIG_SEQ=y # CONFIG_BUSYBOX_CONFIG_SHA1SUM is not set # CONFIG_BUSYBOX_CONFIG_SHA256SUM is not set # CONFIG_BUSYBOX_CONFIG_SHA512SUM is not set # CONFIG_BUSYBOX_CONFIG_SHA3SUM is not set CONFIG_BUSYBOX_CONFIG_SLEEP=y CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_SLEEP=y # CONFIG_BUSYBOX_CONFIG_FEATURE_FLOAT_SLEEP is not set CONFIG_BUSYBOX_CONFIG_SORT=y # CONFIG_BUSYBOX_CONFIG_FEATURE_SORT_BIG is not set # CONFIG_BUSYBOX_CONFIG_SPLIT is not set # CONFIG_BUSYBOX_CONFIG_STAT is not set # CONFIG_BUSYBOX_CONFIG_STTY is not set # CONFIG_BUSYBOX_CONFIG_SUM is not set # CONFIG_BUSYBOX_CONFIG_TAC is not set CONFIG_BUSYBOX_CONFIG_TAIL=y CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_TAIL=y CONFIG_BUSYBOX_CONFIG_TEE=y CONFIG_BUSYBOX_CONFIG_FEATURE_TEE_USE_BLOCK_IO=y CONFIG_BUSYBOX_CONFIG_TRUE=y # CONFIG_BUSYBOX_CONFIG_TTY is not set CONFIG_BUSYBOX_CONFIG_UNAME=y CONFIG_BUSYBOX_CONFIG_UNAME_OSNAME="GNU/Linux" # CONFIG_BUSYBOX_CONFIG_UNEXPAND is not set CONFIG_BUSYBOX_CONFIG_UNIQ=y # CONFIG_BUSYBOX_CONFIG_USLEEP is not set # CONFIG_BUSYBOX_CONFIG_UUDECODE is not set # CONFIG_BUSYBOX_CONFIG_UUENCODE is not set CONFIG_BUSYBOX_CONFIG_WC=y # CONFIG_BUSYBOX_CONFIG_FEATURE_WC_LARGE is not set # CONFIG_BUSYBOX_CONFIG_WHOAMI is not set CONFIG_BUSYBOX_CONFIG_YES=y # # Common options # # CONFIG_BUSYBOX_CONFIG_FEATURE_VERBOSE is not set # # Common options for cp and mv # CONFIG_BUSYBOX_CONFIG_FEATURE_PRESERVE_HARDLINKS=y # # Common options for ls, more and telnet # CONFIG_BUSYBOX_CONFIG_FEATURE_AUTOWIDTH=y # # Common options for df, du, ls # CONFIG_BUSYBOX_CONFIG_FEATURE_HUMAN_READABLE=y # # Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum # CONFIG_BUSYBOX_CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y # # Console Utilities # # CONFIG_BUSYBOX_CONFIG_CHVT is not set # CONFIG_BUSYBOX_CONFIG_FGCONSOLE is not set CONFIG_BUSYBOX_CONFIG_CLEAR=y # CONFIG_BUSYBOX_CONFIG_DEALLOCVT is not set # CONFIG_BUSYBOX_CONFIG_DUMPKMAP is not set # CONFIG_BUSYBOX_CONFIG_KBD_MODE is not set # CONFIG_BUSYBOX_CONFIG_LOADFONT is not set # CONFIG_BUSYBOX_CONFIG_LOADKMAP is not set # CONFIG_BUSYBOX_CONFIG_OPENVT is not set CONFIG_BUSYBOX_CONFIG_RESET=y # CONFIG_BUSYBOX_CONFIG_RESIZE is not set # CONFIG_BUSYBOX_CONFIG_SETCONSOLE is not set # CONFIG_BUSYBOX_CONFIG_SETFONT is not set # CONFIG_BUSYBOX_CONFIG_SETKEYCODES is not set # CONFIG_BUSYBOX_CONFIG_SETLOGCONS is not set # CONFIG_BUSYBOX_CONFIG_SHOWKEY is not set # # Debian Utilities # CONFIG_BUSYBOX_CONFIG_MKTEMP=y # CONFIG_BUSYBOX_CONFIG_PIPE_PROGRESS is not set # CONFIG_BUSYBOX_CONFIG_RUN_PARTS is not set CONFIG_BUSYBOX_CONFIG_START_STOP_DAEMON=y # CONFIG_BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_FANCY is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set CONFIG_BUSYBOX_CONFIG_WHICH=y # # Editors # CONFIG_BUSYBOX_CONFIG_AWK=y CONFIG_BUSYBOX_CONFIG_FEATURE_AWK_LIBM=y CONFIG_BUSYBOX_CONFIG_FEATURE_AWK_GNU_EXTENSIONS=y CONFIG_BUSYBOX_CONFIG_CMP=y # CONFIG_BUSYBOX_CONFIG_DIFF is not set # CONFIG_BUSYBOX_CONFIG_ED is not set # CONFIG_BUSYBOX_CONFIG_PATCH is not set CONFIG_BUSYBOX_CONFIG_SED=y CONFIG_BUSYBOX_CONFIG_VI=y CONFIG_BUSYBOX_CONFIG_FEATURE_VI_MAX_LEN=1024 # CONFIG_BUSYBOX_CONFIG_FEATURE_VI_8BIT is not set CONFIG_BUSYBOX_CONFIG_FEATURE_VI_COLON=y CONFIG_BUSYBOX_CONFIG_FEATURE_VI_YANKMARK=y CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SEARCH=y # CONFIG_BUSYBOX_CONFIG_FEATURE_VI_REGEX_SEARCH is not set CONFIG_BUSYBOX_CONFIG_FEATURE_VI_USE_SIGNALS=y CONFIG_BUSYBOX_CONFIG_FEATURE_VI_DOT_CMD=y CONFIG_BUSYBOX_CONFIG_FEATURE_VI_READONLY=y CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SETOPTS=y CONFIG_BUSYBOX_CONFIG_FEATURE_VI_SET=y CONFIG_BUSYBOX_CONFIG_FEATURE_VI_WIN_RESIZE=y CONFIG_BUSYBOX_CONFIG_FEATURE_VI_ASK_TERMINAL=y # CONFIG_BUSYBOX_CONFIG_FEATURE_VI_UNDO is not set CONFIG_BUSYBOX_CONFIG_FEATURE_ALLOW_EXEC=y # # Finding Utilities # CONFIG_BUSYBOX_CONFIG_FIND=y CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PRINT0=y CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MTIME=y # CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MMIN is not set CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PERM=y CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_TYPE=y CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_XDEV=y CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_MAXDEPTH=y # CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_NEWER is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_INUM is not set CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_EXEC=y # CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_EXEC_PLUS is not set CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_USER=y CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_GROUP=y CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_NOT=y CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_DEPTH=y CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PAREN=y CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_SIZE=y CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PRUNE=y # CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_DELETE is not set CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_PATH=y CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_REGEX=y # CONFIG_BUSYBOX_CONFIG_FEATURE_FIND_LINKS is not set CONFIG_BUSYBOX_CONFIG_GREP=y CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_EGREP_ALIAS=y CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_FGREP_ALIAS=y CONFIG_BUSYBOX_CONFIG_FEATURE_GREP_CONTEXT=y CONFIG_BUSYBOX_CONFIG_XARGS=y CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y # CONFIG_BUSYBOX_CONFIG_FEATURE_XARGS_SUPPORT_REPL_STR is not set # # Init Utilities # # CONFIG_BUSYBOX_CONFIG_BOOTCHARTD is not set CONFIG_BUSYBOX_CONFIG_HALT=y # CONFIG_BUSYBOX_CONFIG_FEATURE_CALL_TELINIT is not set # CONFIG_BUSYBOX_CONFIG_INIT is not set # CONFIG_BUSYBOX_CONFIG_MESG is not set # # Login/Password Management Utilities # # CONFIG_BUSYBOX_CONFIG_ADD_SHELL is not set # CONFIG_BUSYBOX_CONFIG_REMOVE_SHELL is not set CONFIG_BUSYBOX_CONFIG_FEATURE_SHADOWPASSWDS=y # CONFIG_BUSYBOX_CONFIG_USE_BB_PWD_GRP is not set # CONFIG_BUSYBOX_CONFIG_USE_BB_CRYPT is not set # CONFIG_BUSYBOX_CONFIG_ADDUSER is not set # CONFIG_BUSYBOX_CONFIG_ADDGROUP is not set # CONFIG_BUSYBOX_CONFIG_DELUSER is not set # CONFIG_BUSYBOX_CONFIG_DELGROUP is not set # CONFIG_BUSYBOX_CONFIG_GETTY is not set # CONFIG_BUSYBOX_CONFIG_LOGIN is not set CONFIG_BUSYBOX_CONFIG_PASSWD=y CONFIG_BUSYBOX_CONFIG_FEATURE_PASSWD_WEAK_CHECK=y # CONFIG_BUSYBOX_CONFIG_CRYPTPW is not set # CONFIG_BUSYBOX_CONFIG_CHPASSWD is not set CONFIG_BUSYBOX_CONFIG_FEATURE_DEFAULT_PASSWD_ALGO="md5" # CONFIG_BUSYBOX_CONFIG_SU is not set # CONFIG_BUSYBOX_CONFIG_SULOGIN is not set # CONFIG_BUSYBOX_CONFIG_VLOCK is not set # # Linux Ext2 FS Progs # # CONFIG_BUSYBOX_CONFIG_CHATTR is not set # CONFIG_BUSYBOX_CONFIG_FSCK is not set # CONFIG_BUSYBOX_CONFIG_LSATTR is not set # CONFIG_BUSYBOX_CONFIG_TUNE2FS is not set # # Linux Module Utilities # # CONFIG_BUSYBOX_CONFIG_MODINFO is not set # CONFIG_BUSYBOX_CONFIG_MODPROBE_SMALL is not set # CONFIG_BUSYBOX_CONFIG_INSMOD is not set # CONFIG_BUSYBOX_CONFIG_RMMOD is not set # CONFIG_BUSYBOX_CONFIG_LSMOD is not set # CONFIG_BUSYBOX_CONFIG_MODPROBE is not set # CONFIG_BUSYBOX_CONFIG_DEPMOD is not set # # Options common to multiple modutils # # # Linux System Utilities # # CONFIG_BUSYBOX_CONFIG_BLOCKDEV is not set # CONFIG_BUSYBOX_CONFIG_FATATTR is not set # CONFIG_BUSYBOX_CONFIG_FSTRIM is not set # CONFIG_BUSYBOX_CONFIG_MDEV is not set CONFIG_BUSYBOX_CONFIG_MOUNT=y # CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FAKE is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_VERBOSE is not set CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_HELPERS=y # CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_LABEL is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_NFS is not set CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_CIFS=y CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FLAGS=y CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_FSTAB=y # CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_OTHERTAB is not set # CONFIG_BUSYBOX_CONFIG_REV is not set # CONFIG_BUSYBOX_CONFIG_UEVENT is not set # CONFIG_BUSYBOX_CONFIG_ACPID is not set # CONFIG_BUSYBOX_CONFIG_BLKID is not set CONFIG_BUSYBOX_CONFIG_DMESG=y CONFIG_BUSYBOX_CONFIG_FEATURE_DMESG_PRETTY=y # CONFIG_BUSYBOX_CONFIG_FBSET is not set # CONFIG_BUSYBOX_CONFIG_FDFLUSH is not set # CONFIG_BUSYBOX_CONFIG_FDFORMAT is not set # CONFIG_BUSYBOX_CONFIG_FDISK is not set # CONFIG_BUSYBOX_CONFIG_FINDFS is not set # CONFIG_BUSYBOX_CONFIG_FLOCK is not set # CONFIG_BUSYBOX_CONFIG_FREERAMDISK is not set # CONFIG_BUSYBOX_CONFIG_FSCK_MINIX is not set # CONFIG_BUSYBOX_CONFIG_MKFS_EXT2 is not set # CONFIG_BUSYBOX_CONFIG_MKFS_MINIX is not set # CONFIG_BUSYBOX_CONFIG_MKFS_REISER is not set # CONFIG_BUSYBOX_CONFIG_MKFS_VFAT is not set # CONFIG_BUSYBOX_CONFIG_GETOPT is not set CONFIG_BUSYBOX_CONFIG_HEXDUMP=y # CONFIG_BUSYBOX_CONFIG_FEATURE_HEXDUMP_REVERSE is not set # CONFIG_BUSYBOX_CONFIG_HD is not set CONFIG_BUSYBOX_CONFIG_HWCLOCK=y # CONFIG_BUSYBOX_CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set # CONFIG_BUSYBOX_CONFIG_IPCRM is not set # CONFIG_BUSYBOX_CONFIG_IPCS is not set # CONFIG_BUSYBOX_CONFIG_LOSETUP is not set # CONFIG_BUSYBOX_CONFIG_LSPCI is not set # CONFIG_BUSYBOX_CONFIG_LSUSB is not set CONFIG_BUSYBOX_CONFIG_MKSWAP=y # CONFIG_BUSYBOX_CONFIG_FEATURE_MKSWAP_UUID is not set # CONFIG_BUSYBOX_CONFIG_MORE is not set CONFIG_BUSYBOX_CONFIG_PIVOT_ROOT=y # CONFIG_BUSYBOX_CONFIG_RDATE is not set # CONFIG_BUSYBOX_CONFIG_RDEV is not set # CONFIG_BUSYBOX_CONFIG_READPROFILE is not set # CONFIG_BUSYBOX_CONFIG_RTCWAKE is not set # CONFIG_BUSYBOX_CONFIG_SCRIPT is not set # CONFIG_BUSYBOX_CONFIG_SCRIPTREPLAY is not set # CONFIG_BUSYBOX_CONFIG_SETARCH is not set # CONFIG_BUSYBOX_CONFIG_SWAPONOFF is not set CONFIG_BUSYBOX_CONFIG_SWITCH_ROOT=y CONFIG_BUSYBOX_CONFIG_UMOUNT=y CONFIG_BUSYBOX_CONFIG_FEATURE_UMOUNT_ALL=y # # Common options for mount/umount # CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_LOOP=y # CONFIG_BUSYBOX_CONFIG_FEATURE_MOUNT_LOOP_CREATE is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_MTAB_SUPPORT is not set # CONFIG_BUSYBOX_CONFIG_VOLUMEID is not set # # Miscellaneous Utilities # # CONFIG_BUSYBOX_CONFIG_CONSPY is not set CONFIG_BUSYBOX_CONFIG_CROND=y # CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_D is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_CALL_SENDMAIL is not set CONFIG_BUSYBOX_CONFIG_FEATURE_CROND_DIR="/etc" # CONFIG_BUSYBOX_CONFIG_I2CGET is not set # CONFIG_BUSYBOX_CONFIG_I2CSET is not set # CONFIG_BUSYBOX_CONFIG_I2CDUMP is not set # CONFIG_BUSYBOX_CONFIG_I2CDETECT is not set CONFIG_BUSYBOX_CONFIG_LESS=y CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_MAXLINES=9999999 # CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_BRACKETS is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_FLAGS is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_TRUNCATE is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_MARKS is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_REGEXP is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_WINCH is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_LESS_DASHCMD is not set CONFIG_BUSYBOX_CONFIG_NANDWRITE=y CONFIG_BUSYBOX_CONFIG_NANDDUMP=y CONFIG_BUSYBOX_CONFIG_RFKILL=y # CONFIG_BUSYBOX_CONFIG_SETSERIAL is not set # CONFIG_BUSYBOX_CONFIG_TASKSET is not set # CONFIG_BUSYBOX_CONFIG_UBIATTACH is not set # CONFIG_BUSYBOX_CONFIG_UBIDETACH is not set # CONFIG_BUSYBOX_CONFIG_UBIMKVOL is not set # CONFIG_BUSYBOX_CONFIG_UBIRMVOL is not set # CONFIG_BUSYBOX_CONFIG_UBIRSVOL is not set # CONFIG_BUSYBOX_CONFIG_UBIUPDATEVOL is not set # CONFIG_BUSYBOX_CONFIG_ADJTIMEX is not set # CONFIG_BUSYBOX_CONFIG_BBCONFIG is not set # CONFIG_BUSYBOX_CONFIG_BEEP is not set # CONFIG_BUSYBOX_CONFIG_CHAT is not set # CONFIG_BUSYBOX_CONFIG_CHRT is not set CONFIG_BUSYBOX_CONFIG_CRONTAB=y # CONFIG_BUSYBOX_CONFIG_DC is not set # CONFIG_BUSYBOX_CONFIG_DEVFSD is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_DEVFS is not set # CONFIG_BUSYBOX_CONFIG_DEVMEM is not set # CONFIG_BUSYBOX_CONFIG_EJECT is not set # CONFIG_BUSYBOX_CONFIG_FBSPLASH is not set # CONFIG_BUSYBOX_CONFIG_FLASHCP is not set # CONFIG_BUSYBOX_CONFIG_FLASH_LOCK is not set # CONFIG_BUSYBOX_CONFIG_FLASH_UNLOCK is not set # CONFIG_BUSYBOX_CONFIG_FLASH_ERASEALL is not set # CONFIG_BUSYBOX_CONFIG_IONICE is not set # CONFIG_BUSYBOX_CONFIG_INOTIFYD is not set # CONFIG_BUSYBOX_CONFIG_HDPARM is not set CONFIG_BUSYBOX_CONFIG_LOCK=y # CONFIG_BUSYBOX_CONFIG_MAKEDEVS is not set # CONFIG_BUSYBOX_CONFIG_MAN is not set # CONFIG_BUSYBOX_CONFIG_MICROCOM is not set # CONFIG_BUSYBOX_CONFIG_MOUNTPOINT is not set # CONFIG_BUSYBOX_CONFIG_MT is not set # CONFIG_BUSYBOX_CONFIG_RAIDAUTORUN is not set # CONFIG_BUSYBOX_CONFIG_READAHEAD is not set # CONFIG_BUSYBOX_CONFIG_RX is not set # CONFIG_BUSYBOX_CONFIG_SETSID is not set CONFIG_BUSYBOX_CONFIG_STRINGS=y CONFIG_BUSYBOX_CONFIG_TIME=y # CONFIG_BUSYBOX_CONFIG_TIMEOUT is not set # CONFIG_BUSYBOX_CONFIG_TTYSIZE is not set # CONFIG_BUSYBOX_CONFIG_VOLNAME is not set CONFIG_BUSYBOX_CONFIG_WATCHDOG=y # # Networking Utilities # # CONFIG_BUSYBOX_CONFIG_NAMEIF is not set # CONFIG_BUSYBOX_CONFIG_NBDCLIENT is not set CONFIG_BUSYBOX_CONFIG_NC=y CONFIG_BUSYBOX_CONFIG_NC_SERVER=y # CONFIG_BUSYBOX_CONFIG_NC_EXTRA is not set CONFIG_BUSYBOX_CONFIG_NC_110_COMPAT=y CONFIG_BUSYBOX_CONFIG_PING=y CONFIG_BUSYBOX_CONFIG_PING6=y CONFIG_BUSYBOX_CONFIG_FEATURE_FANCY_PING=y CONFIG_BUSYBOX_CONFIG_WGET=y CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_STATUSBAR=y CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_AUTHENTICATION=y CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_LONG_OPTIONS=y # CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_TIMEOUT is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_OPENSSL is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_WGET_SSL_HELPER is not set # CONFIG_BUSYBOX_CONFIG_WHOIS is not set CONFIG_BUSYBOX_CONFIG_FEATURE_IPV6=y # CONFIG_BUSYBOX_CONFIG_FEATURE_UNIX_LOCAL is not set CONFIG_BUSYBOX_CONFIG_FEATURE_PREFER_IPV4_ADDRESS=y CONFIG_BUSYBOX_CONFIG_VERBOSE_RESOLUTION_ERRORS=y CONFIG_BUSYBOX_CONFIG_ARP=y CONFIG_BUSYBOX_CONFIG_ARPING=y CONFIG_BUSYBOX_CONFIG_BRCTL=y CONFIG_BUSYBOX_CONFIG_FEATURE_BRCTL_FANCY=y CONFIG_BUSYBOX_CONFIG_FEATURE_BRCTL_SHOW=y # CONFIG_BUSYBOX_CONFIG_DNSD is not set # CONFIG_BUSYBOX_CONFIG_ETHER_WAKE is not set # CONFIG_BUSYBOX_CONFIG_FAKEIDENTD is not set # CONFIG_BUSYBOX_CONFIG_FTPD is not set # CONFIG_BUSYBOX_CONFIG_FTPGET is not set # CONFIG_BUSYBOX_CONFIG_FTPPUT is not set # CONFIG_BUSYBOX_CONFIG_HOSTNAME is not set # CONFIG_BUSYBOX_CONFIG_HTTPD is not set CONFIG_BUSYBOX_CONFIG_IFCONFIG=y CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_STATUS=y # CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_SLIP is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_HW=y CONFIG_BUSYBOX_CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y # CONFIG_BUSYBOX_CONFIG_IFENSLAVE is not set # CONFIG_BUSYBOX_CONFIG_IFPLUGD is not set # CONFIG_BUSYBOX_CONFIG_IFUPDOWN is not set # CONFIG_BUSYBOX_CONFIG_INETD is not set CONFIG_BUSYBOX_CONFIG_IP=y CONFIG_BUSYBOX_CONFIG_FEATURE_IP_ADDRESS=y CONFIG_BUSYBOX_CONFIG_FEATURE_IP_LINK=y CONFIG_BUSYBOX_CONFIG_FEATURE_IP_ROUTE=y CONFIG_BUSYBOX_CONFIG_FEATURE_IP_ROUTE_DIR="/etc/iproute2" # CONFIG_BUSYBOX_CONFIG_FEATURE_IP_TUNNEL is not set CONFIG_BUSYBOX_CONFIG_FEATURE_IP_RULE=y # CONFIG_BUSYBOX_CONFIG_FEATURE_IP_SHORT_FORMS is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_IP_RARE_PROTOCOLS is not set # CONFIG_BUSYBOX_CONFIG_IPCALC is not set CONFIG_BUSYBOX_CONFIG_NETMSG=y CONFIG_BUSYBOX_CONFIG_NETSTAT=y CONFIG_BUSYBOX_CONFIG_FEATURE_NETSTAT_WIDE=y CONFIG_BUSYBOX_CONFIG_FEATURE_NETSTAT_PRG=y CONFIG_BUSYBOX_CONFIG_NSLOOKUP=y CONFIG_BUSYBOX_CONFIG_NTPD=y CONFIG_BUSYBOX_CONFIG_FEATURE_NTPD_SERVER=y # CONFIG_BUSYBOX_CONFIG_FEATURE_NTPD_CONF is not set # CONFIG_BUSYBOX_CONFIG_PSCAN is not set CONFIG_BUSYBOX_CONFIG_ROUTE=y # CONFIG_BUSYBOX_CONFIG_SLATTACH is not set # CONFIG_BUSYBOX_CONFIG_TCPSVD is not set CONFIG_BUSYBOX_CONFIG_TELNET=y # CONFIG_BUSYBOX_CONFIG_FEATURE_TELNET_TTYPE is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_TELNET_AUTOLOGIN is not set # CONFIG_BUSYBOX_CONFIG_TELNETD is not set # CONFIG_BUSYBOX_CONFIG_TFTP is not set # CONFIG_BUSYBOX_CONFIG_TFTPD is not set CONFIG_BUSYBOX_CONFIG_TRACEROUTE=y CONFIG_BUSYBOX_CONFIG_TRACEROUTE6=y CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_VERBOSE=y # CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set # CONFIG_BUSYBOX_CONFIG_TUNCTL is not set CONFIG_BUSYBOX_CONFIG_UDHCPC6=y # CONFIG_BUSYBOX_CONFIG_UDHCPD is not set CONFIG_BUSYBOX_CONFIG_UDHCPC=y # CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCPC_ARPING is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCPC_SANITIZEOPT is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCP_PORT is not set CONFIG_BUSYBOX_CONFIG_UDHCP_DEBUG=0 CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCP_RFC3397=y # CONFIG_BUSYBOX_CONFIG_FEATURE_UDHCP_8021Q is not set CONFIG_BUSYBOX_CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" CONFIG_BUSYBOX_CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 # CONFIG_BUSYBOX_CONFIG_UDPSVD is not set CONFIG_BUSYBOX_CONFIG_VCONFIG=y # CONFIG_BUSYBOX_CONFIG_ZCIP is not set # # Print Utilities # # CONFIG_BUSYBOX_CONFIG_LPD is not set # CONFIG_BUSYBOX_CONFIG_LPR is not set # CONFIG_BUSYBOX_CONFIG_LPQ is not set # # Mail Utilities # # CONFIG_BUSYBOX_CONFIG_MAKEMIME is not set CONFIG_BUSYBOX_CONFIG_FEATURE_MIME_CHARSET="" # CONFIG_BUSYBOX_CONFIG_POPMAILDIR is not set # CONFIG_BUSYBOX_CONFIG_REFORMIME is not set CONFIG_BUSYBOX_CONFIG_SENDMAIL=y # # Process Utilities # # CONFIG_BUSYBOX_CONFIG_IOSTAT is not set CONFIG_BUSYBOX_CONFIG_LSOF=y # CONFIG_BUSYBOX_CONFIG_MPSTAT is not set # CONFIG_BUSYBOX_CONFIG_NMETER is not set # CONFIG_BUSYBOX_CONFIG_PMAP is not set # CONFIG_BUSYBOX_CONFIG_POWERTOP is not set # CONFIG_BUSYBOX_CONFIG_PSTREE is not set # CONFIG_BUSYBOX_CONFIG_PWDX is not set # CONFIG_BUSYBOX_CONFIG_SMEMCAP is not set CONFIG_BUSYBOX_CONFIG_TOP=y CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y # CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_SMP_CPU is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_DECIMALS is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_TOP_SMP_PROCESS is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_TOPMEM is not set CONFIG_BUSYBOX_CONFIG_UPTIME=y CONFIG_BUSYBOX_CONFIG_FREE=y # CONFIG_BUSYBOX_CONFIG_FUSER is not set CONFIG_BUSYBOX_CONFIG_KILL=y CONFIG_BUSYBOX_CONFIG_KILLALL=y # CONFIG_BUSYBOX_CONFIG_KILLALL5 is not set CONFIG_BUSYBOX_CONFIG_PGREP=y CONFIG_BUSYBOX_CONFIG_PIDOF=y # CONFIG_BUSYBOX_CONFIG_FEATURE_PIDOF_SINGLE is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_PIDOF_OMIT is not set # CONFIG_BUSYBOX_CONFIG_PKILL is not set CONFIG_BUSYBOX_CONFIG_PS=y CONFIG_BUSYBOX_CONFIG_FEATURE_PS_WIDE=y CONFIG_BUSYBOX_CONFIG_FEATURE_PS_LONG=y # CONFIG_BUSYBOX_CONFIG_RENICE is not set CONFIG_BUSYBOX_CONFIG_BB_SYSCTL=y CONFIG_BUSYBOX_CONFIG_FEATURE_SHOW_THREADS=y CONFIG_BUSYBOX_CONFIG_WATCH=y # # Runit Utilities # # CONFIG_BUSYBOX_CONFIG_RUNSV is not set # CONFIG_BUSYBOX_CONFIG_RUNSVDIR is not set # CONFIG_BUSYBOX_CONFIG_SV is not set # CONFIG_BUSYBOX_CONFIG_SVLOGD is not set # CONFIG_BUSYBOX_CONFIG_CHPST is not set # CONFIG_BUSYBOX_CONFIG_SETUIDGID is not set # CONFIG_BUSYBOX_CONFIG_ENVUIDGID is not set # CONFIG_BUSYBOX_CONFIG_ENVDIR is not set # CONFIG_BUSYBOX_CONFIG_SOFTLIMIT is not set # # Shells # CONFIG_BUSYBOX_CONFIG_ASH=y CONFIG_BUSYBOX_CONFIG_ASH_BASH_COMPAT=y # CONFIG_BUSYBOX_CONFIG_ASH_IDLE_TIMEOUT is not set CONFIG_BUSYBOX_CONFIG_ASH_JOB_CONTROL=y CONFIG_BUSYBOX_CONFIG_ASH_ALIAS=y CONFIG_BUSYBOX_CONFIG_ASH_GETOPTS=y CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_ECHO=y CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_PRINTF=y CONFIG_BUSYBOX_CONFIG_ASH_BUILTIN_TEST=y # CONFIG_BUSYBOX_CONFIG_ASH_HELP is not set CONFIG_BUSYBOX_CONFIG_ASH_CMDCMD=y # CONFIG_BUSYBOX_CONFIG_ASH_MAIL is not set # CONFIG_BUSYBOX_CONFIG_ASH_OPTIMIZE_FOR_SIZE is not set # CONFIG_BUSYBOX_CONFIG_ASH_RANDOM_SUPPORT is not set CONFIG_BUSYBOX_CONFIG_ASH_EXPAND_PRMT=y # CONFIG_BUSYBOX_CONFIG_CTTYHACK is not set # CONFIG_BUSYBOX_CONFIG_HUSH is not set # CONFIG_BUSYBOX_CONFIG_MSH is not set CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_ASH=y # CONFIG_BUSYBOX_CONFIG_FEATURE_SH_IS_NONE is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_BASH_IS_ASH is not set CONFIG_BUSYBOX_CONFIG_FEATURE_BASH_IS_NONE=y CONFIG_BUSYBOX_CONFIG_SH_MATH_SUPPORT=y CONFIG_BUSYBOX_CONFIG_SH_MATH_SUPPORT_64=y # CONFIG_BUSYBOX_CONFIG_FEATURE_SH_EXTRA_QUIET is not set # CONFIG_BUSYBOX_CONFIG_FEATURE_SH_STANDALONE is not set CONFIG_BUSYBOX_CONFIG_FEATURE_SH_NOFORK=y # CONFIG_BUSYBOX_CONFIG_FEATURE_SH_HISTFILESIZE is not set # # System Logging Utilities # # CONFIG_BUSYBOX_CONFIG_SYSLOGD is not set # CONFIG_BUSYBOX_CONFIG_KLOGD is not set CONFIG_BUSYBOX_CONFIG_LOGGER=y # CONFIG_PACKAGE_ca-certificates is not set # CONFIG_PACKAGE_dash is not set # CONFIG_PACKAGE_dnsmasq is not set # CONFIG_PACKAGE_dnsmasq-dhcpv6 is not set CONFIG_PACKAGE_dnsmasq-full=y CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y CONFIG_PACKAGE_dnsmasq_full_dnssec=y CONFIG_PACKAGE_dnsmasq_full_auth=y CONFIG_PACKAGE_dnsmasq_full_ipset=y CONFIG_PACKAGE_dropbear=y # # Configuration # CONFIG_DROPBEAR_CURVE25519=y # CONFIG_DROPBEAR_ECC is not set # CONFIG_PACKAGE_ead is not set CONFIG_PACKAGE_firewall=y CONFIG_PACKAGE_fstools=y # CONFIG_PACKAGE_hsflowd is not set CONFIG_PACKAGE_jsonfilter=y # CONFIG_PACKAGE_libatomic is not set CONFIG_PACKAGE_libc=y CONFIG_PACKAGE_libgcc=y CONFIG_PACKAGE_libpthread=y CONFIG_PACKAGE_librt=y CONFIG_PACKAGE_libstdcpp=y # CONFIG_PACKAGE_mksh is not set CONFIG_PACKAGE_mtd=y CONFIG_PACKAGE_netifd=y # CONFIG_PACKAGE_om-watchdog is not set CONFIG_PACKAGE_opkg=y # CONFIG_OPKG_SUPPORT_MD5 is not set # CONFIG_PACKAGE_opkg-smime is not set CONFIG_PACKAGE_procd=y # # Configuration # CONFIG_PROCD_SHOW_BOOT=y CONFIG_PROCD_ZRAM_TMPFS=y # CONFIG_PACKAGE_qos-scripts is not set # CONFIG_PACKAGE_resolveip is not set # CONFIG_PACKAGE_rpcd is not set # CONFIG_PACKAGE_sflowovsd is not set # CONFIG_PACKAGE_sqm-scripts is not set CONFIG_PACKAGE_swconfig=y CONFIG_PACKAGE_ubox=y CONFIG_PACKAGE_ubus=y CONFIG_PACKAGE_ubusd=y CONFIG_PACKAGE_uci=y CONFIG_PACKAGE_usign=y CONFIG_PACKAGE_wireless-tools=y # CONFIG_PACKAGE_zram-swap is not set # # Administration # # # Pmacct suite # # CONFIG_PACKAGE_nfacctd is not set # CONFIG_PACKAGE_nfacctd-mysql is not set # CONFIG_PACKAGE_nfacctd-pgsql is not set # CONFIG_PACKAGE_nfacctd-sqlite is not set # CONFIG_PACKAGE_pmacct-client is not set # CONFIG_PACKAGE_pmacctd is not set # CONFIG_PACKAGE_pmacctd-mysql is not set # CONFIG_PACKAGE_pmacctd-pgsql is not set # CONFIG_PACKAGE_pmacctd-sqlite is not set # CONFIG_PACKAGE_sfacctd is not set # CONFIG_PACKAGE_sfacctd-mysql is not set # CONFIG_PACKAGE_sfacctd-pgsql is not set # CONFIG_PACKAGE_sfacctd-sqlite is not set # CONFIG_PACKAGE_uacctd is not set # CONFIG_PACKAGE_uacctd-mysql is not set # CONFIG_PACKAGE_uacctd-pgsql is not set # CONFIG_PACKAGE_uacctd-sqlite is not set # # zabbix # # CONFIG_PACKAGE_zabbix-agentd is not set # CONFIG_PACKAGE_zabbix-extra-mac80211 is not set # CONFIG_PACKAGE_zabbix-extra-network is not set # CONFIG_PACKAGE_zabbix-extra-wifi is not set # CONFIG_PACKAGE_zabbix-get is not set # CONFIG_PACKAGE_zabbix-proxy is not set # CONFIG_PACKAGE_zabbix-sender is not set # CONFIG_PACKAGE_zabbix-server is not set # CONFIG_PACKAGE_debootstrap is not set # CONFIG_PACKAGE_facter is not set # CONFIG_PACKAGE_gkrellmd is not set # CONFIG_PACKAGE_htop is not set # CONFIG_PACKAGE_monit is not set # CONFIG_PACKAGE_monit-nossl is not set # CONFIG_PACKAGE_muninlite is not set # CONFIG_PACKAGE_nagios is not set # CONFIG_PACKAGE_nagios-plugins is not set # CONFIG_PACKAGE_nrpe is not set # CONFIG_PACKAGE_osirisd is not set # CONFIG_PACKAGE_ostiary is not set # CONFIG_PACKAGE_send-nsca is not set # CONFIG_PACKAGE_sudo is not set # CONFIG_PACKAGE_syslog-ng is not set # CONFIG_PACKAGE_syslog-ng3 is not set # # Boot Loaders # # # Development # # # Libraries # # CONFIG_PACKAGE_zlib-dev is not set # CONFIG_PACKAGE_ar is not set # CONFIG_PACKAGE_autoconf is not set # CONFIG_PACKAGE_automake is not set # CONFIG_PACKAGE_binutils is not set # CONFIG_PACKAGE_cppunit is not set # CONFIG_PACKAGE_diffutils is not set # CONFIG_PACKAGE_gcc is not set # CONFIG_PACKAGE_gdb is not set # CONFIG_PACKAGE_gdbserver is not set # CONFIG_PACKAGE_lttng-tools is not set # CONFIG_PACKAGE_m4 is not set # CONFIG_PACKAGE_make is not set # CONFIG_PACKAGE_objdump is not set # CONFIG_PACKAGE_patch is not set # CONFIG_PACKAGE_perf is not set # CONFIG_PACKAGE_pkg-config is not set # CONFIG_PACKAGE_python-sip is not set # CONFIG_PACKAGE_sysprof is not set # CONFIG_PACKAGE_tig is not set # CONFIG_PACKAGE_trace-cmd is not set # CONFIG_PACKAGE_trace-cmd-extra is not set # CONFIG_PACKAGE_valgrind is not set # # Emulators # # # Extra packages # # # Firmware # # CONFIG_PACKAGE_ar3k-firmware is not set # CONFIG_PACKAGE_ath9k-htc-firmware is not set # CONFIG_PACKAGE_b43legacy-firmware is not set # CONFIG_PACKAGE_brcmfmac-firmware-pcie is not set # CONFIG_PACKAGE_brcmfmac-firmware-sdio is not set # CONFIG_PACKAGE_brcmfmac-firmware-usb is not set # CONFIG_PACKAGE_brcmfmac43430-firmware-sdio is not set # CONFIG_PACKAGE_brcmsmac-firmware is not set # CONFIG_PACKAGE_carl9170-firmware is not set # CONFIG_PACKAGE_ibt-firmware is not set # CONFIG_PACKAGE_iwl3945-firmware is not set # CONFIG_PACKAGE_iwl4965-firmware is not set # CONFIG_PACKAGE_iwlwifi-firmware is not set # CONFIG_PACKAGE_libertas-sdio-firmware is not set # CONFIG_PACKAGE_libertas-spi-firmware is not set # CONFIG_PACKAGE_libertas-usb-firmware is not set # CONFIG_PACKAGE_mt7601u-firmware is not set # CONFIG_PACKAGE_mwifiex-pcie-firmware is not set # CONFIG_PACKAGE_mwl8k-firmware is not set # CONFIG_PACKAGE_r8169-firmware is not set # CONFIG_PACKAGE_r8188eu-firmware is not set # CONFIG_PACKAGE_rt2800-pci-firmware is not set # CONFIG_PACKAGE_rt2800-usb-firmware is not set # CONFIG_PACKAGE_rt61-pci-firmware is not set # CONFIG_PACKAGE_rt73-usb-firmware is not set # CONFIG_PACKAGE_rtl8192ce-firmware is not set # CONFIG_PACKAGE_rtl8192cu-firmware is not set # CONFIG_PACKAGE_rtl8192de-firmware is not set # CONFIG_PACKAGE_rtl8192se-firmware is not set # CONFIG_PACKAGE_wl12xx-firmware is not set # CONFIG_PACKAGE_wl18xx-firmware is not set # # Kernel modules # # # Block Devices # # CONFIG_PACKAGE_kmod-aoe is not set # CONFIG_PACKAGE_kmod-ata-core is not set # CONFIG_PACKAGE_kmod-block2mtd is not set # CONFIG_PACKAGE_kmod-dm is not set # CONFIG_PACKAGE_kmod-ide-core is not set # CONFIG_PACKAGE_kmod-loop is not set # CONFIG_PACKAGE_kmod-md-mod is not set # CONFIG_PACKAGE_kmod-nbd is not set # CONFIG_PACKAGE_kmod-scsi-cdrom is not set # CONFIG_PACKAGE_kmod-scsi-core is not set # CONFIG_PACKAGE_kmod-scsi-generic is not set # CONFIG_PACKAGE_kmod-scsi-tape is not set # # CAN Support # # CONFIG_PACKAGE_kmod-can is not set # # Cryptographic API modules # # CONFIG_PACKAGE_kmod-crypto-aead is not set # CONFIG_PACKAGE_kmod-crypto-authenc is not set # CONFIG_PACKAGE_kmod-crypto-cbc is not set # CONFIG_PACKAGE_kmod-crypto-ccm is not set # CONFIG_PACKAGE_kmod-crypto-cmac is not set # CONFIG_PACKAGE_kmod-crypto-crc32c is not set # CONFIG_PACKAGE_kmod-crypto-ctr is not set # CONFIG_PACKAGE_kmod-crypto-deflate is not set # CONFIG_PACKAGE_kmod-crypto-des is not set # CONFIG_PACKAGE_kmod-crypto-ecb is not set # CONFIG_PACKAGE_kmod-crypto-echainiv is not set # CONFIG_PACKAGE_kmod-crypto-fcrypt is not set # CONFIG_PACKAGE_kmod-crypto-gcm is not set # CONFIG_PACKAGE_kmod-crypto-gf128 is not set # CONFIG_PACKAGE_kmod-crypto-ghash is not set # CONFIG_PACKAGE_kmod-crypto-hash is not set # CONFIG_PACKAGE_kmod-crypto-hmac is not set # CONFIG_PACKAGE_kmod-crypto-hw-ccp is not set # CONFIG_PACKAGE_kmod-crypto-hw-geode is not set # CONFIG_PACKAGE_kmod-crypto-hw-hifn-795x is not set # CONFIG_PACKAGE_kmod-crypto-hw-padlock is not set # CONFIG_PACKAGE_kmod-crypto-hw-talitos is not set # CONFIG_PACKAGE_kmod-crypto-iv is not set # CONFIG_PACKAGE_kmod-crypto-manager is not set # CONFIG_PACKAGE_kmod-crypto-md4 is not set # CONFIG_PACKAGE_kmod-crypto-md5 is not set # CONFIG_PACKAGE_kmod-crypto-michael-mic is not set # CONFIG_PACKAGE_kmod-crypto-misc is not set # CONFIG_PACKAGE_kmod-crypto-null is not set # CONFIG_PACKAGE_kmod-crypto-ocf is not set # CONFIG_PACKAGE_kmod-crypto-pcbc is not set # CONFIG_PACKAGE_kmod-crypto-pcompress is not set # CONFIG_PACKAGE_kmod-crypto-rng is not set # CONFIG_PACKAGE_kmod-crypto-seqiv is not set # CONFIG_PACKAGE_kmod-crypto-sha1 is not set # CONFIG_PACKAGE_kmod-crypto-sha256 is not set # CONFIG_PACKAGE_kmod-crypto-sha512 is not set # CONFIG_PACKAGE_kmod-crypto-test is not set # CONFIG_PACKAGE_kmod-crypto-user is not set # CONFIG_PACKAGE_kmod-crypto-wq is not set # CONFIG_PACKAGE_kmod-crypto-xts is not set # CONFIG_PACKAGE_kmod-cryptodev is not set # CONFIG_PACKAGE_kmod-loop-aes is not set # # DSA Support # # CONFIG_PACKAGE_kmod-dsa is not set # # Filesystems # # CONFIG_PACKAGE_kmod-fs-afs is not set # CONFIG_PACKAGE_kmod-fs-autofs4 is not set # CONFIG_PACKAGE_kmod-fs-btrfs is not set # CONFIG_PACKAGE_kmod-fs-cifs is not set # CONFIG_PACKAGE_kmod-fs-configfs is not set # CONFIG_PACKAGE_kmod-fs-cramfs is not set # CONFIG_PACKAGE_kmod-fs-exfat is not set # CONFIG_PACKAGE_kmod-fs-exportfs is not set # CONFIG_PACKAGE_kmod-fs-ext4 is not set # CONFIG_PACKAGE_kmod-fs-f2fs is not set # CONFIG_PACKAGE_kmod-fs-fscache is not set # CONFIG_PACKAGE_kmod-fs-hfs is not set # CONFIG_PACKAGE_kmod-fs-hfsplus is not set # CONFIG_PACKAGE_kmod-fs-isofs is not set # CONFIG_PACKAGE_kmod-fs-jfs is not set # CONFIG_PACKAGE_kmod-fs-minix is not set # CONFIG_PACKAGE_kmod-fs-msdos is not set # CONFIG_PACKAGE_kmod-fs-nfs is not set # CONFIG_PACKAGE_kmod-fs-nfs-common is not set # CONFIG_PACKAGE_kmod-fs-nfsd is not set # CONFIG_PACKAGE_kmod-fs-ntfs is not set # CONFIG_PACKAGE_kmod-fs-reiserfs is not set # CONFIG_PACKAGE_kmod-fs-udf is not set # CONFIG_PACKAGE_kmod-fs-vfat is not set # CONFIG_PACKAGE_kmod-fs-xfs is not set # CONFIG_PACKAGE_kmod-fuse is not set # # FireWire support # # CONFIG_PACKAGE_kmod-firewire is not set # # Hardware Monitoring Support # # CONFIG_PACKAGE_kmod-hwmon-core is not set # # I2C support # # CONFIG_PACKAGE_kmod-i2c-core is not set # CONFIG_PACKAGE_kmod-i2c-gpio-custom is not set # # Input modules # # CONFIG_PACKAGE_kmod-hid is not set # CONFIG_PACKAGE_kmod-hid-generic is not set CONFIG_PACKAGE_kmod-input-core=y # CONFIG_PACKAGE_kmod-input-evdev is not set # CONFIG_PACKAGE_kmod-input-gpio-encoder is not set # CONFIG_PACKAGE_kmod-input-gpio-keys is not set # CONFIG_PACKAGE_kmod-input-gpio-keys-polled is not set # CONFIG_PACKAGE_kmod-input-joydev is not set # CONFIG_PACKAGE_kmod-input-matrixkmap is not set CONFIG_PACKAGE_kmod-input-polldev=y # CONFIG_PACKAGE_kmod-input-uinput is not set # # LED modules # # CONFIG_PACKAGE_kmod-leds-gpio is not set # CONFIG_PACKAGE_kmod-leds-pca963x is not set # CONFIG_PACKAGE_kmod-ledtrig-default-on is not set # CONFIG_PACKAGE_kmod-ledtrig-gpio is not set # CONFIG_PACKAGE_kmod-ledtrig-heartbeat is not set # CONFIG_PACKAGE_kmod-ledtrig-morse is not set # CONFIG_PACKAGE_kmod-ledtrig-netdev is not set # CONFIG_PACKAGE_kmod-ledtrig-netfilter is not set # CONFIG_PACKAGE_kmod-ledtrig-oneshot is not set # CONFIG_PACKAGE_kmod-ledtrig-timer is not set # CONFIG_PACKAGE_kmod-ledtrig-transient is not set # # Libraries # # CONFIG_PACKAGE_kmod-lib-cordic is not set CONFIG_PACKAGE_kmod-lib-crc-ccitt=y # CONFIG_PACKAGE_kmod-lib-crc-itu-t is not set # CONFIG_PACKAGE_kmod-lib-crc16 is not set # CONFIG_PACKAGE_kmod-lib-crc32c is not set # CONFIG_PACKAGE_kmod-lib-crc7 is not set # CONFIG_PACKAGE_kmod-lib-crc8 is not set # CONFIG_PACKAGE_kmod-lib-lz4 is not set # CONFIG_PACKAGE_kmod-lib-lzo is not set # CONFIG_PACKAGE_kmod-lib-textsearch is not set # CONFIG_PACKAGE_kmod-lib-zlib is not set # # Native Language Support # # CONFIG_PACKAGE_kmod-nls-base is not set # CONFIG_PACKAGE_kmod-nls-cp1250 is not set # CONFIG_PACKAGE_kmod-nls-cp1251 is not set # CONFIG_PACKAGE_kmod-nls-cp437 is not set # CONFIG_PACKAGE_kmod-nls-cp775 is not set # CONFIG_PACKAGE_kmod-nls-cp850 is not set # CONFIG_PACKAGE_kmod-nls-cp852 is not set # CONFIG_PACKAGE_kmod-nls-cp862 is not set # CONFIG_PACKAGE_kmod-nls-cp864 is not set # CONFIG_PACKAGE_kmod-nls-cp866 is not set # CONFIG_PACKAGE_kmod-nls-cp932 is not set # CONFIG_PACKAGE_kmod-nls-iso8859-1 is not set # CONFIG_PACKAGE_kmod-nls-iso8859-13 is not set # CONFIG_PACKAGE_kmod-nls-iso8859-15 is not set # CONFIG_PACKAGE_kmod-nls-iso8859-2 is not set # CONFIG_PACKAGE_kmod-nls-iso8859-6 is not set # CONFIG_PACKAGE_kmod-nls-iso8859-8 is not set # CONFIG_PACKAGE_kmod-nls-koi8r is not set # CONFIG_PACKAGE_kmod-nls-utf8 is not set # # Netfilter Extensions # # CONFIG_PACKAGE_kmod-arptables is not set # CONFIG_PACKAGE_kmod-ebtables is not set CONFIG_PACKAGE_kmod-ip6tables=y # CONFIG_PACKAGE_kmod-ip6tables-extra is not set # CONFIG_PACKAGE_kmod-ipt-account is not set # CONFIG_PACKAGE_kmod-ipt-chaos is not set # CONFIG_PACKAGE_kmod-ipt-cluster is not set # CONFIG_PACKAGE_kmod-ipt-clusterip is not set # CONFIG_PACKAGE_kmod-ipt-compat-xtables is not set # CONFIG_PACKAGE_kmod-ipt-condition is not set CONFIG_PACKAGE_kmod-ipt-conntrack=y CONFIG_PACKAGE_kmod-ipt-conntrack-extra=y CONFIG_PACKAGE_kmod-ipt-core=y # CONFIG_PACKAGE_kmod-ipt-debug is not set # CONFIG_PACKAGE_kmod-ipt-delude is not set # CONFIG_PACKAGE_kmod-ipt-dhcpmac is not set # CONFIG_PACKAGE_kmod-ipt-dnetmap is not set CONFIG_PACKAGE_kmod-ipt-extra=y # CONFIG_PACKAGE_kmod-ipt-filter is not set # CONFIG_PACKAGE_kmod-ipt-fuzzy is not set # CONFIG_PACKAGE_kmod-ipt-geoip is not set # CONFIG_PACKAGE_kmod-ipt-hashlimit is not set # CONFIG_PACKAGE_kmod-ipt-iface is not set # CONFIG_PACKAGE_kmod-ipt-ipmark is not set # CONFIG_PACKAGE_kmod-ipt-ipopt is not set # CONFIG_PACKAGE_kmod-ipt-ipp2p is not set # CONFIG_PACKAGE_kmod-ipt-iprange is not set # CONFIG_PACKAGE_kmod-ipt-ipsec is not set CONFIG_PACKAGE_kmod-ipt-ipset=y # CONFIG_PACKAGE_kmod-ipt-ipv4options is not set # CONFIG_PACKAGE_kmod-ipt-led is not set # CONFIG_PACKAGE_kmod-ipt-length2 is not set # CONFIG_PACKAGE_kmod-ipt-logmark is not set # CONFIG_PACKAGE_kmod-ipt-lscan is not set # CONFIG_PACKAGE_kmod-ipt-lua is not set CONFIG_PACKAGE_kmod-ipt-nat=y # CONFIG_PACKAGE_kmod-ipt-nat-extra is not set # CONFIG_PACKAGE_kmod-ipt-nat6 is not set # CONFIG_PACKAGE_kmod-ipt-nathelper-rtsp is not set # CONFIG_PACKAGE_kmod-ipt-nflog is not set # CONFIG_PACKAGE_kmod-ipt-nfqueue is not set # CONFIG_PACKAGE_kmod-ipt-psd is not set # CONFIG_PACKAGE_kmod-ipt-quota2 is not set # CONFIG_PACKAGE_kmod-ipt-sysrq is not set # CONFIG_PACKAGE_kmod-ipt-tarpit is not set # CONFIG_PACKAGE_kmod-ipt-tee is not set # CONFIG_PACKAGE_kmod-ipt-tproxy is not set # CONFIG_PACKAGE_kmod-ipt-u32 is not set # CONFIG_PACKAGE_kmod-ipt-ulog is not set CONFIG_PACKAGE_kmod-nf-conntrack=y CONFIG_PACKAGE_kmod-nf-conntrack-netlink=y CONFIG_PACKAGE_kmod-nf-conntrack6=y CONFIG_PACKAGE_kmod-nf-ipt=y CONFIG_PACKAGE_kmod-nf-ipt6=y CONFIG_PACKAGE_kmod-nf-nat=y # CONFIG_PACKAGE_kmod-nf-nat6 is not set # CONFIG_PACKAGE_kmod-nf-nathelper is not set # CONFIG_PACKAGE_kmod-nf-nathelper-extra is not set CONFIG_PACKAGE_kmod-nfnetlink=y # CONFIG_PACKAGE_kmod-nfnetlink-log is not set # CONFIG_PACKAGE_kmod-nfnetlink-queue is not set # CONFIG_PACKAGE_kmod-nft-core is not set # CONFIG_PACKAGE_kmod-nft-nat is not set # CONFIG_PACKAGE_kmod-nft-nat6 is not set # # Network Devices # # CONFIG_PACKAGE_kmod-3c59x is not set # CONFIG_PACKAGE_kmod-8139cp is not set # CONFIG_PACKAGE_kmod-8139too is not set # CONFIG_PACKAGE_kmod-atl1 is not set # CONFIG_PACKAGE_kmod-atl1c is not set # CONFIG_PACKAGE_kmod-atl1e is not set # CONFIG_PACKAGE_kmod-atl2 is not set # CONFIG_PACKAGE_kmod-b44 is not set # CONFIG_PACKAGE_kmod-dm9000 is not set # CONFIG_PACKAGE_kmod-dummy is not set # CONFIG_PACKAGE_kmod-e100 is not set # CONFIG_PACKAGE_kmod-e1000 is not set # CONFIG_PACKAGE_kmod-et131x is not set # CONFIG_PACKAGE_kmod-forcedeth is not set # CONFIG_PACKAGE_kmod-hfcmulti is not set # CONFIG_PACKAGE_kmod-hfcpci is not set # CONFIG_PACKAGE_kmod-ifb is not set # CONFIG_PACKAGE_kmod-libphy is not set # CONFIG_PACKAGE_kmod-macvlan is not set # CONFIG_PACKAGE_kmod-mii is not set # CONFIG_PACKAGE_kmod-natsemi is not set # CONFIG_PACKAGE_kmod-ne2k-pci is not set # CONFIG_PACKAGE_kmod-of-mdio is not set # CONFIG_PACKAGE_kmod-pcnet32 is not set # CONFIG_PACKAGE_kmod-phy-broadcom is not set # CONFIG_PACKAGE_kmod-r6040 is not set # CONFIG_PACKAGE_kmod-r8169 is not set # CONFIG_PACKAGE_kmod-siit is not set # CONFIG_PACKAGE_kmod-sis190 is not set # CONFIG_PACKAGE_kmod-sis900 is not set # CONFIG_PACKAGE_kmod-skge is not set # CONFIG_PACKAGE_kmod-sky2 is not set # CONFIG_PACKAGE_kmod-solos-pci is not set # CONFIG_PACKAGE_kmod-spi-ks8995 is not set # CONFIG_PACKAGE_kmod-swconfig is not set # CONFIG_PACKAGE_kmod-switch-ip17xx is not set # CONFIG_PACKAGE_kmod-switch-mvsw61xx is not set # CONFIG_PACKAGE_kmod-switch-rtl8366-smi is not set # CONFIG_PACKAGE_kmod-switch-rtl8366rb is not set # CONFIG_PACKAGE_kmod-switch-rtl8366s is not set # CONFIG_PACKAGE_kmod-tg3 is not set # CONFIG_PACKAGE_kmod-tulip is not set # CONFIG_PACKAGE_kmod-via-rhine is not set # CONFIG_PACKAGE_kmod-via-velocity is not set # CONFIG_PACKAGE_kmod-vmxnet3 is not set # # Network Support # # CONFIG_PACKAGE_kmod-8021q is not set # CONFIG_PACKAGE_kmod-appletalk is not set # CONFIG_PACKAGE_kmod-atm is not set # CONFIG_PACKAGE_kmod-ax25 is not set # CONFIG_PACKAGE_kmod-batman-adv is not set # CONFIG_PACKAGE_kmod-bonding is not set # CONFIG_PACKAGE_kmod-bridge is not set # CONFIG_PACKAGE_kmod-capi is not set # CONFIG_PACKAGE_kmod-dnsresolver is not set # CONFIG_PACKAGE_kmod-gre is not set # CONFIG_PACKAGE_kmod-gre6 is not set # CONFIG_PACKAGE_kmod-ip6-tunnel is not set # CONFIG_PACKAGE_kmod-ipip is not set # CONFIG_PACKAGE_kmod-ipsec is not set # CONFIG_PACKAGE_kmod-iptunnel6 is not set # CONFIG_PACKAGE_kmod-isdn4linux is not set # CONFIG_PACKAGE_kmod-l2tp is not set # CONFIG_PACKAGE_kmod-l2tp-eth is not set # CONFIG_PACKAGE_kmod-l2tp-ip is not set # CONFIG_PACKAGE_kmod-llc is not set # CONFIG_PACKAGE_kmod-misdn is not set # CONFIG_PACKAGE_kmod-nat46 is not set # CONFIG_PACKAGE_kmod-netem is not set # CONFIG_PACKAGE_kmod-openswan is not set # CONFIG_PACKAGE_kmod-openvswitch is not set # CONFIG_PACKAGE_kmod-ppp is not set # CONFIG_PACKAGE_kmod-pktgen is not set # CONFIG_PACKAGE_kmod-sched is not set # CONFIG_PACKAGE_kmod-sched-connmark is not set # CONFIG_PACKAGE_kmod-sched-core is not set # CONFIG_PACKAGE_kmod-sched-esfq is not set # CONFIG_PACKAGE_kmod-sctp is not set # CONFIG_PACKAGE_kmod-sit is not set # CONFIG_PACKAGE_kmod-slip is not set # CONFIG_PACKAGE_kmod-stp is not set # CONFIG_PACKAGE_kmod-trelay is not set CONFIG_PACKAGE_kmod-tun=y # CONFIG_PACKAGE_kmod-udptunnel4 is not set # CONFIG_PACKAGE_kmod-udptunnel6 is not set # CONFIG_PACKAGE_kmod-veth is not set # CONFIG_PACKAGE_kmod-vxlan is not set # CONFIG_PACKAGE_kmod-wprobe is not set # # Other modules # # CONFIG_PACKAGE_kmod-6lowpan is not set # CONFIG_PACKAGE_kmod-bcma is not set # CONFIG_PACKAGE_kmod-button-hotplug is not set # CONFIG_PACKAGE_kmod-echo is not set # CONFIG_PACKAGE_kmod-eeprom-93cx6 is not set # CONFIG_PACKAGE_kmod-eeprom-at24 is not set # CONFIG_PACKAGE_kmod-eeprom-at25 is not set # CONFIG_PACKAGE_kmod-gpio-beeper is not set CONFIG_PACKAGE_kmod-gpio-button-hotplug=y # CONFIG_PACKAGE_kmod-gpio-dev is not set # CONFIG_PACKAGE_kmod-gpio-mcp23s08 is not set # CONFIG_PACKAGE_kmod-gpio-nxp-74hc164 is not set # CONFIG_PACKAGE_kmod-gpio-pca953x is not set # CONFIG_PACKAGE_kmod-gpio-pcf857x is not set # CONFIG_PACKAGE_kmod-gpiotoggling is not set # CONFIG_PACKAGE_kmod-iio-core is not set # CONFIG_PACKAGE_kmod-ikconfig is not set CONFIG_PACKAGE_kmod-input-rb532=y # CONFIG_PACKAGE_kmod-lp is not set # CONFIG_PACKAGE_kmod-mmc is not set # CONFIG_PACKAGE_kmod-mmc-over-gpio is not set # CONFIG_PACKAGE_kmod-mtdtests is not set # CONFIG_PACKAGE_kmod-pps is not set # CONFIG_PACKAGE_kmod-pps-gpio is not set # CONFIG_PACKAGE_kmod-ptp is not set # CONFIG_PACKAGE_kmod-random-core is not set # CONFIG_PACKAGE_kmod-regmap is not set # CONFIG_PACKAGE_kmod-rfkill is not set # CONFIG_PACKAGE_kmod-rotary-gpio-custom is not set # CONFIG_PACKAGE_kmod-sdhci is not set # CONFIG_PACKAGE_kmod-serial-8250 is not set # CONFIG_PACKAGE_kmod-softdog is not set # CONFIG_PACKAGE_kmod-ssb is not set # CONFIG_PACKAGE_kmod-zram is not set # # PCMCIA support # # # SPI Support # # CONFIG_PACKAGE_kmod-mmc-spi is not set # CONFIG_PACKAGE_kmod-spi-bitbang is not set # CONFIG_PACKAGE_kmod-spi-dev is not set # CONFIG_PACKAGE_kmod-spi-gpio is not set # CONFIG_PACKAGE_kmod-spi-gpio-custom is not set # CONFIG_PACKAGE_kmod-spi-gpio-old is not set # # Sound Support # # CONFIG_PACKAGE_kmod-sound-core is not set # # USB Support # # # Video Support # # CONFIG_PACKAGE_kmod-video-core is not set # # Virtualization Support # # # Voice over IP # # # W1 support # # CONFIG_PACKAGE_kmod-w1 is not set # # WPAN 802.15.4 Support # # CONFIG_PACKAGE_kmod-at86rf230 is not set # CONFIG_PACKAGE_kmod-cc2520 is not set # CONFIG_PACKAGE_kmod-fakelb is not set # CONFIG_PACKAGE_kmod-ieee802154 is not set # CONFIG_PACKAGE_kmod-ieee802154_6lowpan is not set # CONFIG_PACKAGE_kmod-mac802154 is not set # CONFIG_PACKAGE_kmod-mrf24j40 is not set # # Wireless Drivers # # CONFIG_PACKAGE_kmod-acx-mac80211 is not set # CONFIG_PACKAGE_kmod-adm8211 is not set CONFIG_PACKAGE_kmod-ath=y # CONFIG_ATH_USER_REGD is not set # CONFIG_PACKAGE_ATH_DEBUG is not set CONFIG_PACKAGE_ATH_DFS=y # CONFIG_PACKAGE_kmod-ath10k is not set CONFIG_PACKAGE_kmod-ath5k=y CONFIG_PACKAGE_kmod-ath9k=y # CONFIG_ATH9K_SUPPORT_PCOEM is not set CONFIG_PACKAGE_kmod-ath9k-common=y # CONFIG_PACKAGE_kmod-b43 is not set # CONFIG_PACKAGE_kmod-b43legacy is not set # CONFIG_PACKAGE_kmod-brcmsmac is not set # CONFIG_PACKAGE_kmod-brcmutil is not set CONFIG_PACKAGE_kmod-cfg80211=y # CONFIG_PACKAGE_kmod-hermes is not set # CONFIG_PACKAGE_kmod-hermes-pci is not set # CONFIG_PACKAGE_kmod-hermes-plx is not set # CONFIG_PACKAGE_kmod-hostap is not set # CONFIG_PACKAGE_kmod-hostap-pci is not set # CONFIG_PACKAGE_kmod-hostap-plx is not set # CONFIG_PACKAGE_kmod-ipw2100 is not set # CONFIG_PACKAGE_kmod-ipw2200 is not set # CONFIG_PACKAGE_kmod-iwl-legacy is not set # CONFIG_PACKAGE_kmod-iwl3945 is not set # CONFIG_PACKAGE_kmod-iwl4965 is not set # CONFIG_PACKAGE_kmod-iwlwifi is not set # CONFIG_PACKAGE_kmod-lib80211 is not set # CONFIG_PACKAGE_kmod-libertas-sdio is not set # CONFIG_PACKAGE_kmod-libertas-spi is not set # CONFIG_PACKAGE_kmod-libipw is not set CONFIG_PACKAGE_kmod-mac80211=y CONFIG_PACKAGE_MAC80211_DEBUGFS=y # CONFIG_PACKAGE_MAC80211_TRACING is not set CONFIG_PACKAGE_MAC80211_MESH=y # CONFIG_PACKAGE_kmod-mac80211-hwsim is not set # CONFIG_PACKAGE_kmod-mt76 is not set # CONFIG_PACKAGE_kmod-mwifiex-pcie is not set # CONFIG_PACKAGE_kmod-mwl8k is not set # CONFIG_PACKAGE_kmod-net-prism54 is not set # CONFIG_PACKAGE_kmod-p54-common is not set # CONFIG_PACKAGE_kmod-p54-pci is not set # CONFIG_PACKAGE_kmod-rt2400-pci is not set # CONFIG_PACKAGE_kmod-rt2500-pci is not set # CONFIG_PACKAGE_kmod-rt2800-pci is not set # CONFIG_PACKAGE_kmod-rt2x00-lib is not set # CONFIG_PACKAGE_kmod-rt61-pci is not set # CONFIG_PACKAGE_kmod-rtl8180 is not set # CONFIG_PACKAGE_kmod-rtl8192ce is not set # CONFIG_PACKAGE_kmod-rtl8192de is not set # CONFIG_PACKAGE_kmod-rtl8192se is not set # # Languages # # # Erlang # # CONFIG_PACKAGE_erlang is not set # CONFIG_PACKAGE_erlang-asn1 is not set # CONFIG_PACKAGE_erlang-compiler is not set # CONFIG_PACKAGE_erlang-crypto is not set # CONFIG_PACKAGE_erlang-hipe is not set # CONFIG_PACKAGE_erlang-inets is not set # CONFIG_PACKAGE_erlang-mnesia is not set # CONFIG_PACKAGE_erlang-runtime-tools is not set # CONFIG_PACKAGE_erlang-snmp is not set # CONFIG_PACKAGE_erlang-ssh is not set # CONFIG_PACKAGE_erlang-ssl is not set # CONFIG_PACKAGE_erlang-syntax-tools is not set # # Java # # CONFIG_PACKAGE_jamvm is not set # # JavaScript # # CONFIG_PACKAGE_js is not set # # Lua # # CONFIG_PACKAGE_dkjson is not set # CONFIG_PACKAGE_json4lua is not set # CONFIG_PACKAGE_libiwinfo-lua is not set # CONFIG_PACKAGE_lpeg is not set # CONFIG_PACKAGE_lsqlite3 is not set # CONFIG_PACKAGE_lua is not set # CONFIG_PACKAGE_lua-bencode is not set # CONFIG_PACKAGE_lua-cjson is not set # CONFIG_PACKAGE_lua-copas is not set # CONFIG_PACKAGE_lua-coxpcall is not set # CONFIG_PACKAGE_lua-lzlib is not set # CONFIG_PACKAGE_lua-md5 is not set # CONFIG_PACKAGE_lua-mobdebug is not set # CONFIG_PACKAGE_lua-mosquitto is not set # CONFIG_PACKAGE_lua-penlight is not set # CONFIG_PACKAGE_lua-rings is not set # CONFIG_PACKAGE_lua-rs232 is not set # CONFIG_PACKAGE_lua-sha2 is not set # CONFIG_PACKAGE_lua-wsapi-base is not set # CONFIG_PACKAGE_lua-wsapi-xavante is not set # CONFIG_PACKAGE_lua-xavante is not set # CONFIG_PACKAGE_luabitop is not set # CONFIG_PACKAGE_luac is not set # CONFIG_PACKAGE_luacurl is not set # CONFIG_PACKAGE_luaexpat is not set # CONFIG_PACKAGE_luafilesystem is not set # CONFIG_PACKAGE_luai2c is not set # CONFIG_PACKAGE_lualanes is not set # CONFIG_PACKAGE_luaposix is not set # CONFIG_PACKAGE_luaprofiler is not set # CONFIG_PACKAGE_luarocks is not set # CONFIG_PACKAGE_luasec is not set # CONFIG_PACKAGE_luasoap is not set # CONFIG_PACKAGE_luasocket is not set # CONFIG_PACKAGE_luasql-mysql is not set # CONFIG_PACKAGE_luasql-pgsql is not set # CONFIG_PACKAGE_luasql-sqlite3 is not set # CONFIG_PACKAGE_luavstruct is not set # CONFIG_PACKAGE_uuid is not set # # Node.js # # CONFIG_PACKAGE_node is not set # CONFIG_PACKAGE_node-arduino-firmata is not set # CONFIG_PACKAGE_node-cylon is not set # CONFIG_PACKAGE_node-cylon-firmata is not set # CONFIG_PACKAGE_node-cylon-gpio is not set # CONFIG_PACKAGE_node-cylon-i2c is not set # CONFIG_PACKAGE_node-hid is not set # CONFIG_PACKAGE_node-serialport is not set # # PHP # # CONFIG_PACKAGE_php-pear is not set # CONFIG_PACKAGE_php5 is not set # # Perl # # CONFIG_PACKAGE_perl is not set # # Python # # CONFIG_PACKAGE_arm is not set # CONFIG_PACKAGE_cython is not set # CONFIG_PACKAGE_dbus-python is not set # CONFIG_PACKAGE_distribute is not set # CONFIG_PACKAGE_gst-python is not set # CONFIG_PACKAGE_ipython is not set # CONFIG_PACKAGE_jsonpath is not set # CONFIG_PACKAGE_logilab-astng is not set # CONFIG_PACKAGE_logilab-common is not set # CONFIG_PACKAGE_mako is not set # CONFIG_PACKAGE_micropython is not set # CONFIG_PACKAGE_micropython-lib is not set # CONFIG_PACKAGE_pyclips is not set # CONFIG_PACKAGE_pyopenssl is not set # CONFIG_PACKAGE_pyrrd is not set # CONFIG_PACKAGE_pyserial is not set # CONFIG_PACKAGE_python is not set # CONFIG_PACKAGE_python-base is not set # CONFIG_PACKAGE_python-cffi is not set # CONFIG_PACKAGE_python-cjson is not set # CONFIG_PACKAGE_python-codecs is not set # CONFIG_PACKAGE_python-compiler is not set # CONFIG_PACKAGE_python-crcmod is not set # CONFIG_PACKAGE_python-crypto is not set # CONFIG_PACKAGE_python-cryptography is not set # CONFIG_PACKAGE_python-ctypes is not set # CONFIG_PACKAGE_python-curl is not set # CONFIG_PACKAGE_python-db is not set # CONFIG_PACKAGE_python-decimal is not set # CONFIG_PACKAGE_python-dev is not set # CONFIG_PACKAGE_python-distutils is not set # CONFIG_PACKAGE_python-django is not set # CONFIG_PACKAGE_python-dns is not set # CONFIG_PACKAGE_python-eeml is not set # CONFIG_PACKAGE_python-egenix-mx is not set # CONFIG_PACKAGE_python-egenix-mx-base is not set # CONFIG_PACKAGE_python-email is not set # CONFIG_PACKAGE_python-enum34 is not set # CONFIG_PACKAGE_python-event is not set # CONFIG_PACKAGE_python-flup is not set # CONFIG_PACKAGE_python-gdbm is not set # CONFIG_PACKAGE_python-gobject is not set # CONFIG_PACKAGE_python-idna is not set # CONFIG_PACKAGE_python-ifconfig is not set # CONFIG_PACKAGE_python-imglib is not set # CONFIG_PACKAGE_python-ipaddress is not set # CONFIG_PACKAGE_python-json is not set # CONFIG_PACKAGE_python-kid is not set # CONFIG_PACKAGE_python-ldap is not set # CONFIG_PACKAGE_python-lib2to3 is not set # CONFIG_PACKAGE_python-light is not set # CONFIG_PACKAGE_python-logging is not set # CONFIG_PACKAGE_python-mimms is not set # CONFIG_PACKAGE_python-multiprocessing is not set # CONFIG_PACKAGE_python-mysql is not set # CONFIG_PACKAGE_python-ncurses is not set # CONFIG_PACKAGE_python-openssl is not set # CONFIG_PACKAGE_python-pcap is not set # CONFIG_PACKAGE_python-pip is not set # CONFIG_PACKAGE_python-ply is not set # CONFIG_PACKAGE_python-psycopg is not set # CONFIG_PACKAGE_python-psycopg2 is not set # CONFIG_PACKAGE_python-pyasn1 is not set # CONFIG_PACKAGE_python-pycparser is not set # CONFIG_PACKAGE_python-pydaemon is not set # CONFIG_PACKAGE_python-pydoc is not set # CONFIG_PACKAGE_python-pyopenssl is not set # CONFIG_PACKAGE_python-pyosc is not set # CONFIG_PACKAGE_python-pyserial is not set # CONFIG_PACKAGE_python-rsfile is not set # CONFIG_PACKAGE_python-setuptools is not set # CONFIG_PACKAGE_python-six is not set # CONFIG_PACKAGE_python-smbus is not set # CONFIG_PACKAGE_python-sqlite is not set # CONFIG_PACKAGE_python-sqlite3 is not set # CONFIG_PACKAGE_python-unittest is not set # CONFIG_PACKAGE_python-webpy is not set # CONFIG_PACKAGE_python-xapian is not set # CONFIG_PACKAGE_python-xml is not set # CONFIG_PACKAGE_python-yaml is not set # CONFIG_PACKAGE_python-yapsnmp is not set # CONFIG_PACKAGE_python2-chardet is not set # CONFIG_PACKAGE_python3 is not set # CONFIG_PACKAGE_python3-asyncio is not set # CONFIG_PACKAGE_python3-base is not set # CONFIG_PACKAGE_python3-bottle is not set # CONFIG_PACKAGE_python3-codecs is not set # CONFIG_PACKAGE_python3-ctypes is not set # CONFIG_PACKAGE_python3-dbm is not set # CONFIG_PACKAGE_python3-decimal is not set # CONFIG_PACKAGE_python3-dev is not set # CONFIG_PACKAGE_python3-distutils is not set # CONFIG_PACKAGE_python3-email is not set # CONFIG_PACKAGE_python3-gdbm is not set # CONFIG_PACKAGE_python3-lib2to3 is not set # CONFIG_PACKAGE_python3-light is not set # CONFIG_PACKAGE_python3-logging is not set # CONFIG_PACKAGE_python3-lzma is not set # CONFIG_PACKAGE_python3-multiprocessing is not set # CONFIG_PACKAGE_python3-ncurses is not set # CONFIG_PACKAGE_python3-openssl is not set # CONFIG_PACKAGE_python3-pip is not set # CONFIG_PACKAGE_python3-pydoc is not set # CONFIG_PACKAGE_python3-setuptools is not set # CONFIG_PACKAGE_python3-sqlite3 is not set # CONFIG_PACKAGE_python3-unittest is not set # CONFIG_PACKAGE_python3-xml is not set # CONFIG_PACKAGE_pyusb is not set # CONFIG_PACKAGE_pyxdg is not set # CONFIG_PACKAGE_simplejson is not set # CONFIG_PACKAGE_telepathy-python is not set # CONFIG_PACKAGE_twisted is not set # CONFIG_PACKAGE_zope-interface is not set # # Ruby # # CONFIG_PACKAGE_ruby is not set # # Tcl # # CONFIG_PACKAGE_4th is not set # CONFIG_PACKAGE_libgupnp-vala is not set # CONFIG_PACKAGE_sigscheme is not set # CONFIG_PACKAGE_slsh is not set # CONFIG_PACKAGE_vala is not set # # Libraries # # # Compression # # CONFIG_PACKAGE_libbz2 is not set # CONFIG_PACKAGE_liblzma is not set # CONFIG_PACKAGE_libunrar is not set # # Filesystem # # CONFIG_PACKAGE_libacl is not set # CONFIG_PACKAGE_libattr is not set # CONFIG_PACKAGE_libext2fs is not set # CONFIG_PACKAGE_libfuse is not set # CONFIG_PACKAGE_libnfsidmap is not set # CONFIG_PACKAGE_libow is not set # CONFIG_PACKAGE_libow-capi is not set # CONFIG_PACKAGE_libsysfs is not set # # Firewall # # CONFIG_PACKAGE_libfko is not set CONFIG_PACKAGE_libip4tc=y CONFIG_PACKAGE_libip6tc=y CONFIG_PACKAGE_libiptc=y CONFIG_PACKAGE_libxtables=y # # IoT # # CONFIG_PACKAGE_libupm is not set # CONFIG_PACKAGE_libupm-a110x is not set # CONFIG_PACKAGE_libupm-ad8232 is not set # CONFIG_PACKAGE_libupm-adafruitss is not set # CONFIG_PACKAGE_libupm-adc121c021 is not set # CONFIG_PACKAGE_libupm-adis16448 is not set # CONFIG_PACKAGE_libupm-adxl335 is not set # CONFIG_PACKAGE_libupm-adxl345 is not set # CONFIG_PACKAGE_libupm-am2315 is not set # CONFIG_PACKAGE_libupm-apds9002 is not set # CONFIG_PACKAGE_libupm-at42qt1070 is not set # CONFIG_PACKAGE_libupm-biss0001 is not set # CONFIG_PACKAGE_libupm-bmpx8x is not set # CONFIG_PACKAGE_libupm-buzzer is not set # CONFIG_PACKAGE_libupm-cjq4435 is not set # CONFIG_PACKAGE_libupm-ds1307 is not set # CONFIG_PACKAGE_libupm-ecs1030 is not set # CONFIG_PACKAGE_libupm-enc03r is not set # CONFIG_PACKAGE_libupm-flex is not set # CONFIG_PACKAGE_libupm-gas is not set # CONFIG_PACKAGE_libupm-gp2y0a is not set # CONFIG_PACKAGE_libupm-grove is not set # CONFIG_PACKAGE_libupm-grovecircularled is not set # CONFIG_PACKAGE_libupm-grovecollision is not set # CONFIG_PACKAGE_libupm-groveehr is not set # CONFIG_PACKAGE_libupm-groveeldriver is not set # CONFIG_PACKAGE_libupm-groveelectromagnet is not set # CONFIG_PACKAGE_libupm-groveemg is not set # CONFIG_PACKAGE_libupm-grovegprs is not set # CONFIG_PACKAGE_libupm-grovegsr is not set # CONFIG_PACKAGE_libupm-grovelinefinder is not set # CONFIG_PACKAGE_libupm-grovemd is not set # CONFIG_PACKAGE_libupm-grovemoisture is not set # CONFIG_PACKAGE_libupm-groveo2 is not set # CONFIG_PACKAGE_libupm-grovescam is not set # CONFIG_PACKAGE_libupm-grovespeaker is not set # CONFIG_PACKAGE_libupm-grovevdiv is not set # CONFIG_PACKAGE_libupm-grovewater is not set # CONFIG_PACKAGE_libupm-grovewfs is not set # CONFIG_PACKAGE_libupm-guvas12d is not set # CONFIG_PACKAGE_libupm-h3lis331dl is not set # CONFIG_PACKAGE_libupm-hcsr04 is not set # CONFIG_PACKAGE_libupm-hm11 is not set # CONFIG_PACKAGE_libupm-hmc5883l is not set # CONFIG_PACKAGE_libupm-hmtrp is not set # CONFIG_PACKAGE_libupm-hp20x is not set # CONFIG_PACKAGE_libupm-ht9170 is not set # CONFIG_PACKAGE_libupm-htu21d is not set # CONFIG_PACKAGE_libupm-hx711 is not set # CONFIG_PACKAGE_libupm-i2clcd is not set # CONFIG_PACKAGE_libupm-ina132 is not set # CONFIG_PACKAGE_libupm-isd1820 is not set # CONFIG_PACKAGE_libupm-itg3200 is not set # CONFIG_PACKAGE_libupm-joystick12 is not set # CONFIG_PACKAGE_libupm-l298 is not set # CONFIG_PACKAGE_libupm-ldt0028 is not set # CONFIG_PACKAGE_libupm-lm35 is not set # CONFIG_PACKAGE_libupm-lol is not set # CONFIG_PACKAGE_libupm-loudness is not set # CONFIG_PACKAGE_libupm-lpd8806 is not set # CONFIG_PACKAGE_libupm-lsm303 is not set # CONFIG_PACKAGE_libupm-lsm9ds0 is not set # CONFIG_PACKAGE_libupm-m24lr64e is not set # CONFIG_PACKAGE_libupm-max31723 is not set # CONFIG_PACKAGE_libupm-max31855 is not set # CONFIG_PACKAGE_libupm-max44000 is not set # CONFIG_PACKAGE_libupm-max5487 is not set # CONFIG_PACKAGE_libupm-maxds3231m is not set # CONFIG_PACKAGE_libupm-maxsonarez is not set # CONFIG_PACKAGE_libupm-mg811 is not set # CONFIG_PACKAGE_libupm-mhz16 is not set # CONFIG_PACKAGE_libupm-mic is not set # CONFIG_PACKAGE_libupm-mlx90614 is not set # CONFIG_PACKAGE_libupm-mma7455 is not set # CONFIG_PACKAGE_libupm-mma7660 is not set # CONFIG_PACKAGE_libupm-mpl3115a2 is not set # CONFIG_PACKAGE_libupm-mpr121 is not set # CONFIG_PACKAGE_libupm-mpu9150 is not set # CONFIG_PACKAGE_libupm-mq303a is not set # CONFIG_PACKAGE_libupm-my9221 is not set # CONFIG_PACKAGE_libupm-nrf24l01 is not set # CONFIG_PACKAGE_libupm-nrf8001 is not set # CONFIG_PACKAGE_libupm-nunchuck is not set # CONFIG_PACKAGE_libupm-otp538u is not set # CONFIG_PACKAGE_libupm-pn532 is not set # CONFIG_PACKAGE_libupm-ppd42ns is not set # CONFIG_PACKAGE_libupm-pulsensor is not set # CONFIG_PACKAGE_libupm-rfr359f is not set # CONFIG_PACKAGE_libupm-rgbringcoder is not set # CONFIG_PACKAGE_libupm-rotaryencoder is not set # CONFIG_PACKAGE_libupm-rpr220 is not set # CONFIG_PACKAGE_libupm-servo is not set # CONFIG_PACKAGE_libupm-si114x is not set # CONFIG_PACKAGE_libupm-sm130 is not set # CONFIG_PACKAGE_libupm-st7735 is not set # CONFIG_PACKAGE_libupm-stepmotor is not set # CONFIG_PACKAGE_libupm-sx6119 is not set # CONFIG_PACKAGE_libupm-ta12200 is not set # CONFIG_PACKAGE_libupm-tcs3414cs is not set # CONFIG_PACKAGE_libupm-th02 is not set # CONFIG_PACKAGE_libupm-tm1637 is not set # CONFIG_PACKAGE_libupm-tsl2561 is not set # CONFIG_PACKAGE_libupm-ttp223 is not set # CONFIG_PACKAGE_libupm-ublox6 is not set # CONFIG_PACKAGE_libupm-uln200xa is not set # CONFIG_PACKAGE_libupm-waterlevel is not set # CONFIG_PACKAGE_libupm-wheelencoder is not set # CONFIG_PACKAGE_libupm-wt5001 is not set # CONFIG_PACKAGE_libupm-yg1006 is not set # CONFIG_PACKAGE_libupm-zfm20 is not set # # Languages # # CONFIG_PACKAGE_libyaml is not set # # Networking # # CONFIG_PACKAGE_libsctp is not set # CONFIG_PACKAGE_libtoxav is not set # CONFIG_PACKAGE_libtoxcore is not set # CONFIG_PACKAGE_libtoxdns is not set # CONFIG_PACKAGE_libtoxencryptsave is not set # # Printing # # CONFIG_PACKAGE_libcups is not set # CONFIG_PACKAGE_libcupscgi is not set # CONFIG_PACKAGE_libcupsdriver is not set # CONFIG_PACKAGE_libcupsimage is not set # CONFIG_PACKAGE_libcupsmime is not set # CONFIG_PACKAGE_libcupsppdc is not set # # SSL # # CONFIG_PACKAGE_libaxtls is not set # CONFIG_PACKAGE_libcyassl is not set # CONFIG_PACKAGE_libgnutls is not set # CONFIG_PACKAGE_libmatrixssl is not set # CONFIG_PACKAGE_libmbedtls is not set CONFIG_PACKAGE_libopenssl=y CONFIG_OPENSSL_WITH_EC=y # CONFIG_OPENSSL_WITH_EC2M is not set # CONFIG_OPENSSL_WITH_SSL3 is not set # CONFIG_OPENSSL_HARDWARE_SUPPORT is not set # CONFIG_OPENSSL_ENGINE_CRYPTO is not set # CONFIG_PACKAGE_libpolarssl is not set # # Sound # # CONFIG_PACKAGE_liblo is not set # # database # # CONFIG_PACKAGE_libpq is not set # CONFIG_PACKAGE_libsqlite2 is not set # CONFIG_PACKAGE_libsqlite3 is not set # CONFIG_PACKAGE_pgsqlodbc is not set # CONFIG_PACKAGE_tdb is not set # CONFIG_PACKAGE_tokyocabinet is not set # CONFIG_PACKAGE_unixodbc is not set # CONFIG_PACKAGE_alsa-lib is not set # CONFIG_PACKAGE_argp-standalone is not set # CONFIG_PACKAGE_argtable is not set # CONFIG_PACKAGE_bind-libs is not set # CONFIG_PACKAGE_boost is not set # CONFIG_PACKAGE_ccid is not set # CONFIG_PACKAGE_cgilib is not set # CONFIG_PACKAGE_check is not set # CONFIG_PACKAGE_classpath is not set # CONFIG_PACKAGE_classpath-tools is not set # CONFIG_PACKAGE_clearsilver is not set # CONFIG_PACKAGE_confuse is not set # CONFIG_PACKAGE_credis is not set # CONFIG_PACKAGE_directfb is not set # CONFIG_PACKAGE_dtndht is not set # CONFIG_PACKAGE_engine_pkcs11 is not set # CONFIG_PACKAGE_fcgi is not set # CONFIG_PACKAGE_fftw3 is not set # CONFIG_PACKAGE_fftw3f is not set # CONFIG_PACKAGE_fribidi is not set # CONFIG_PACKAGE_ftplib is not set # CONFIG_PACKAGE_giflib is not set # CONFIG_PACKAGE_glib1 is not set # CONFIG_PACKAGE_glib2 is not set # CONFIG_PACKAGE_glibmm is not set # CONFIG_PACKAGE_hidapi is not set # CONFIG_PACKAGE_ibrcommon is not set # CONFIG_PACKAGE_ibrdtn is not set # CONFIG_PACKAGE_icu is not set # CONFIG_PACKAGE_id3lib is not set # CONFIG_PACKAGE_jansson is not set # CONFIG_PACKAGE_knot-libdnssec is not set # CONFIG_PACKAGE_knot-libknot is not set # CONFIG_PACKAGE_knot-libzscanner is not set # CONFIG_PACKAGE_libIDL2 is not set # CONFIG_PACKAGE_libaa is not set # CONFIG_PACKAGE_libaio is not set # CONFIG_PACKAGE_libamsel is not set # CONFIG_PACKAGE_libantlr3c is not set # CONFIG_PACKAGE_libao is not set # CONFIG_PACKAGE_libapr is not set # CONFIG_PACKAGE_libaprutil is not set # CONFIG_PACKAGE_libarchive is not set # CONFIG_PACKAGE_libarchive-noopenssl is not set # CONFIG_PACKAGE_libart is not set # CONFIG_PACKAGE_libartnet is not set # CONFIG_PACKAGE_libassuan is not set # CONFIG_PACKAGE_libatomicops is not set # CONFIG_PACKAGE_libaudiofile is not set # CONFIG_PACKAGE_libavahi-client is not set # CONFIG_PACKAGE_libavahi-compat-libdnssd is not set # CONFIG_PACKAGE_libavahi-dbus-support is not set # CONFIG_PACKAGE_libavahi-nodbus-support is not set # CONFIG_PACKAGE_libavl is not set # CONFIG_PACKAGE_libbfd is not set # CONFIG_PACKAGE_libblkid is not set CONFIG_PACKAGE_libblobmsg-json=y # CONFIG_PACKAGE_libboblight is not set # CONFIG_PACKAGE_libcanfestival is not set # CONFIG_PACKAGE_libcap is not set # CONFIG_PACKAGE_libcares is not set # CONFIG_PACKAGE_libcharset is not set # CONFIG_PACKAGE_libcli is not set # CONFIG_PACKAGE_libclinkc is not set # CONFIG_PACKAGE_libcoap is not set # CONFIG_PACKAGE_libconfig is not set # CONFIG_PACKAGE_libcroco is not set # CONFIG_PACKAGE_libcryptoxx is not set # CONFIG_PACKAGE_libcunit is not set # CONFIG_PACKAGE_libcurl is not set # CONFIG_PACKAGE_libdaemon is not set # CONFIG_PACKAGE_libdaq is not set # CONFIG_PACKAGE_libdb47 is not set # CONFIG_PACKAGE_libdbi is not set # CONFIG_PACKAGE_libdevmapper is not set # CONFIG_PACKAGE_libdmapsharing is not set # CONFIG_PACKAGE_libdnet is not set # CONFIG_PACKAGE_libdvbpsi is not set # CONFIG_PACKAGE_libdvdread is not set # CONFIG_PACKAGE_libelf1 is not set # CONFIG_PACKAGE_libdb47xx is not set # CONFIG_PACKAGE_libdbus is not set # CONFIG_PACKAGE_libdbus-glib is not set # CONFIG_PACKAGE_libesmtp is not set # CONFIG_PACKAGE_libestr is not set # CONFIG_PACKAGE_libev is not set # CONFIG_PACKAGE_libevdev is not set # CONFIG_PACKAGE_libevent is not set # CONFIG_PACKAGE_libevent2 is not set # CONFIG_PACKAGE_libevent2-core is not set # CONFIG_PACKAGE_libevent2-extra is not set # CONFIG_PACKAGE_libevent2-openssl is not set # CONFIG_PACKAGE_libevent2-pthreads is not set # CONFIG_PACKAGE_libeventlog is not set # CONFIG_PACKAGE_libevhtp is not set # CONFIG_PACKAGE_libevhtp-1.1 is not set # CONFIG_PACKAGE_libexif is not set # CONFIG_PACKAGE_libexpat is not set # CONFIG_PACKAGE_libexslt is not set # CONFIG_PACKAGE_libextractor is not set # CONFIG_PACKAGE_libezxml is not set # CONFIG_PACKAGE_libf2fs is not set # CONFIG_PACKAGE_libfaad2 is not set # CONFIG_PACKAGE_libfaifa is not set # CONFIG_PACKAGE_libfdisk is not set # CONFIG_PACKAGE_libffi is not set # CONFIG_PACKAGE_libffmpeg-audio-dec is not set # CONFIG_PACKAGE_libffmpeg-full is not set # CONFIG_PACKAGE_libffmpeg-mini is not set # CONFIG_PACKAGE_libflac is not set # CONFIG_PACKAGE_libfreecwmp is not set # CONFIG_PACKAGE_libfreefare is not set # CONFIG_PACKAGE_libfreenect is not set # CONFIG_PACKAGE_libfreetype is not set # CONFIG_PACKAGE_libftdi is not set # CONFIG_PACKAGE_libftdi1 is not set # CONFIG_PACKAGE_libgcrypt is not set # CONFIG_PACKAGE_libgd is not set # CONFIG_PACKAGE_libgdbm is not set # CONFIG_PACKAGE_libgee is not set # CONFIG_PACKAGE_libglpk is not set CONFIG_PACKAGE_libgmp=y # CONFIG_PACKAGE_libgnurl is not set # CONFIG_PACKAGE_libgpg-error is not set # CONFIG_PACKAGE_libgpgme is not set # CONFIG_PACKAGE_libgphoto2 is not set # CONFIG_PACKAGE_libgps is not set # CONFIG_PACKAGE_libgsl is not set # CONFIG_PACKAGE_libgssapi is not set # CONFIG_PACKAGE_libgssdp is not set # CONFIG_PACKAGE_libgupnp is not set # CONFIG_PACKAGE_libgupnp-av is not set # CONFIG_PACKAGE_libgupnp-dlna is not set # CONFIG_PACKAGE_libhamlib is not set # CONFIG_PACKAGE_libhiredis is not set # CONFIG_PACKAGE_libhowl is not set # CONFIG_PACKAGE_libhttp-parser is not set # CONFIG_PACKAGE_libical is not set # CONFIG_PACKAGE_libiconv is not set # CONFIG_PACKAGE_libiconv-full is not set # CONFIG_PACKAGE_libid3tag is not set # CONFIG_PACKAGE_libidn is not set # CONFIG_PACKAGE_libimobiledevice is not set # CONFIG_PACKAGE_libinklevel is not set # CONFIG_PACKAGE_libinput is not set # CONFIG_PACKAGE_libintl is not set # CONFIG_PACKAGE_libintl-full is not set # CONFIG_PACKAGE_libiw is not set CONFIG_PACKAGE_libiwinfo=y # CONFIG_PACKAGE_libjpeg is not set # CONFIG_PACKAGE_libjs is not set CONFIG_PACKAGE_libjson-c=y # CONFIG_PACKAGE_libkmod is not set # CONFIG_PACKAGE_libldns is not set # CONFIG_PACKAGE_libleptonica is not set # CONFIG_PACKAGE_libloudmouth1 is not set CONFIG_PACKAGE_libltdl=y # CONFIG_PACKAGE_liblua is not set # CONFIG_PACKAGE_liblz4 is not set CONFIG_PACKAGE_liblzo=y # CONFIG_PACKAGE_libmad is not set # CONFIG_PACKAGE_libmagic is not set # CONFIG_PACKAGE_libmbus is not set # CONFIG_PACKAGE_libmcrypt is not set # CONFIG_PACKAGE_libmicrohttpd is not set # CONFIG_PACKAGE_libmicroxml is not set # CONFIG_PACKAGE_libmikmod is not set # CONFIG_PACKAGE_libminiupnpc is not set # CONFIG_PACKAGE_libmms is not set CONFIG_PACKAGE_libmnl=y # CONFIG_PACKAGE_libmodbus is not set # CONFIG_PACKAGE_libmosquitto is not set # CONFIG_PACKAGE_libmosquitto-nossl is not set # CONFIG_PACKAGE_libmosquittopp is not set # CONFIG_PACKAGE_libmount is not set # CONFIG_PACKAGE_libmpcdec is not set # CONFIG_PACKAGE_libmpd is not set # CONFIG_PACKAGE_libmpdclient is not set # CONFIG_PACKAGE_libmpeg2 is not set # CONFIG_PACKAGE_libmpg123 is not set # CONFIG_PACKAGE_libmraa is not set # CONFIG_PACKAGE_libmysqlclient is not set # CONFIG_PACKAGE_libmysqlclient-r is not set # CONFIG_PACKAGE_libnatpmp is not set CONFIG_PACKAGE_libncurses=y # CONFIG_PACKAGE_libncursesw is not set # CONFIG_PACKAGE_libneon is not set # CONFIG_PACKAGE_libnet-1.2.x is not set # CONFIG_PACKAGE_libnet0 is not set # CONFIG_PACKAGE_libnet1 is not set # CONFIG_PACKAGE_libnetconf is not set # CONFIG_PACKAGE_libnetfilter-acct is not set CONFIG_PACKAGE_libnetfilter-conntrack=y CONFIG_PACKAGE_libnetfilter-cthelper=y CONFIG_PACKAGE_libnetfilter-cttimeout=y # CONFIG_PACKAGE_libnetfilter-log is not set CONFIG_PACKAGE_libnetfilter-queue=y # CONFIG_PACKAGE_libnetsnmp is not set CONFIG_PACKAGE_libnettle=y # # Configuration # # CONFIG_LIBNETTLE_MINI is not set # CONFIG_PACKAGE_libnewt is not set # CONFIG_PACKAGE_libnfc is not set CONFIG_PACKAGE_libnfnetlink=y # CONFIG_PACKAGE_libnftnl is not set # CONFIG_PACKAGE_libnids is not set # CONFIG_PACKAGE_libnl is not set CONFIG_PACKAGE_libnl-core=y CONFIG_PACKAGE_libnl-genl=y # CONFIG_PACKAGE_libnl-nf is not set # CONFIG_PACKAGE_libnl-route is not set CONFIG_PACKAGE_libnl-tiny=y # CONFIG_PACKAGE_libnmeap is not set # CONFIG_PACKAGE_libogg is not set # CONFIG_PACKAGE_liboil is not set # CONFIG_PACKAGE_libol is not set # CONFIG_PACKAGE_libopcodes is not set # CONFIG_PACKAGE_libopencdk is not set # CONFIG_PACKAGE_libopenldap is not set # CONFIG_PACKAGE_libopenobex is not set # CONFIG_PACKAGE_libopensc is not set # CONFIG_PACKAGE_liboping is not set # CONFIG_PACKAGE_libopus is not set # CONFIG_PACKAGE_libotr is not set # CONFIG_PACKAGE_libowfat is not set # CONFIG_PACKAGE_libp11 is not set # CONFIG_PACKAGE_libpam is not set # CONFIG_PACKAGE_libpam-google-authenticator is not set # CONFIG_PACKAGE_libpar2 is not set CONFIG_PACKAGE_libpcap=y # # Configuration # # CONFIG_PACKAGE_libpcre is not set # CONFIG_PACKAGE_libpcre16 is not set # CONFIG_PACKAGE_libpcrecpp is not set # CONFIG_PACKAGE_libpcsclite is not set # CONFIG_PACKAGE_libpiano is not set # CONFIG_PACKAGE_libpkcs11-spy is not set # CONFIG_PACKAGE_libplist is not set # CONFIG_PACKAGE_libplistcxx is not set # CONFIG_PACKAGE_libpng is not set # CONFIG_PACKAGE_libpopt is not set # CONFIG_PACKAGE_libprotobuf-c is not set # CONFIG_PACKAGE_libptmalloc3 is not set # CONFIG_PACKAGE_libqrencode is not set # CONFIG_PACKAGE_libradcli is not set # CONFIG_PACKAGE_libradiusclient-ng is not set # CONFIG_PACKAGE_libreadline is not set # CONFIG_PACKAGE_libroxml is not set # CONFIG_PACKAGE_librpc is not set # CONFIG_PACKAGE_librpcsecgss is not set # CONFIG_PACKAGE_librrd is not set # CONFIG_PACKAGE_librrd1 is not set # CONFIG_PACKAGE_librsync is not set # CONFIG_PACKAGE_librtlsdr is not set # CONFIG_PACKAGE_libruby is not set # CONFIG_PACKAGE_libsamplerate is not set # CONFIG_PACKAGE_libsane is not set # CONFIG_PACKAGE_libsasl2 is not set # CONFIG_PACKAGE_libsdl is not set # CONFIG_PACKAGE_libsdl-mixer is not set # CONFIG_PACKAGE_libsdl-sound is not set # CONFIG_PACKAGE_libsearpc is not set # CONFIG_PACKAGE_libseccomp is not set # CONFIG_PACKAGE_libsensors is not set # CONFIG_PACKAGE_libshout is not set # CONFIG_PACKAGE_libshout-full is not set # CONFIG_PACKAGE_libsigcxx is not set # CONFIG_PACKAGE_libslang2 is not set # CONFIG_PACKAGE_libsmartcols is not set # CONFIG_PACKAGE_libsml is not set # CONFIG_PACKAGE_libsndfile is not set # CONFIG_PACKAGE_libsocketcan is not set # CONFIG_PACKAGE_libsocks is not set # CONFIG_PACKAGE_libsodium is not set # CONFIG_PACKAGE_libsoup is not set # CONFIG_PACKAGE_libsoxr is not set # CONFIG_PACKAGE_libspeex is not set # CONFIG_PACKAGE_libspeexdsp is not set # CONFIG_PACKAGE_libssh is not set # CONFIG_PACKAGE_libssh2 is not set # CONFIG_PACKAGE_libstoken is not set # CONFIG_PACKAGE_libstrophe is not set # CONFIG_PACKAGE_libsynce is not set # CONFIG_PACKAGE_libtasn1 is not set # CONFIG_PACKAGE_libtheora is not set # CONFIG_PACKAGE_libtiff is not set # CONFIG_PACKAGE_libtiffxx is not set # CONFIG_PACKAGE_libtorrent is not set # CONFIG_PACKAGE_libtwin is not set CONFIG_PACKAGE_libubox=y # CONFIG_PACKAGE_libubox-lua is not set CONFIG_PACKAGE_libubus=y # CONFIG_PACKAGE_libubus-lua is not set CONFIG_PACKAGE_libuci=y # CONFIG_PACKAGE_libuci-lua is not set # CONFIG_PACKAGE_libucl is not set CONFIG_PACKAGE_libuclient=y # CONFIG_PACKAGE_libuecc is not set # CONFIG_PACKAGE_libugpio is not set # CONFIG_PACKAGE_libunbound is not set # CONFIG_PACKAGE_libunistring is not set # CONFIG_PACKAGE_libupnp is not set # CONFIG_PACKAGE_libupnpp is not set # CONFIG_PACKAGE_liburcu is not set # CONFIG_PACKAGE_libusb-1.0 is not set # CONFIG_PACKAGE_libusb-compat is not set # CONFIG_PACKAGE_libusbmuxd is not set # CONFIG_PACKAGE_libustream-cyassl is not set # CONFIG_PACKAGE_libustream-mbedtls is not set # CONFIG_PACKAGE_libustream-openssl is not set # CONFIG_PACKAGE_libustream-polarssl is not set # CONFIG_PACKAGE_libuuid is not set # CONFIG_PACKAGE_libuv is not set # CONFIG_PACKAGE_libuvc is not set # CONFIG_PACKAGE_libv4l is not set # CONFIG_PACKAGE_libvncserver is not set # CONFIG_PACKAGE_libvorbis is not set # CONFIG_PACKAGE_libvorbisidec is not set # CONFIG_PACKAGE_libvpx is not set # CONFIG_PACKAGE_libwebcam is not set # CONFIG_PACKAGE_libwebsockets-cyassl is not set # CONFIG_PACKAGE_libwebsockets-openssl is not set # CONFIG_PACKAGE_libwrap is not set # CONFIG_PACKAGE_libwxbase is not set # CONFIG_PACKAGE_libxapian is not set # CONFIG_PACKAGE_libxerces-c is not set # CONFIG_PACKAGE_libxerces-c-samples is not set # CONFIG_PACKAGE_libxml2 is not set # CONFIG_PACKAGE_libxslt is not set # CONFIG_PACKAGE_libyang is not set # CONFIG_PACKAGE_libzdb is not set # CONFIG_PACKAGE_libzip is not set # CONFIG_PACKAGE_libzmq-curve is not set # CONFIG_PACKAGE_libzmq-nc is not set # CONFIG_PACKAGE_libzstream is not set # CONFIG_PACKAGE_linux-atm is not set # CONFIG_PACKAGE_lttng-ust is not set # CONFIG_PACKAGE_mtdev is not set # CONFIG_PACKAGE_mxml is not set # CONFIG_PACKAGE_nacl is not set # CONFIG_PACKAGE_opencv is not set # CONFIG_PACKAGE_p11-kit is not set # CONFIG_PACKAGE_phidget21 is not set # CONFIG_PACKAGE_protobuf is not set # CONFIG_PACKAGE_pthsem is not set # CONFIG_PACKAGE_radlib is not set # CONFIG_PACKAGE_sbc is not set # CONFIG_PACKAGE_serdisplib is not set # CONFIG_PACKAGE_shflags is not set # CONFIG_PACKAGE_st2205tool is not set # CONFIG_PACKAGE_taglib is not set # CONFIG_PACKAGE_taglibc is not set CONFIG_PACKAGE_terminfo=y # CONFIG_PACKAGE_tinycdb is not set # CONFIG_PACKAGE_uclibcxx is not set # CONFIG_PACKAGE_ustl is not set # CONFIG_PACKAGE_wt is not set # CONFIG_PACKAGE_xmlrpc-c is not set # CONFIG_PACKAGE_xmlrpc-c-client is not set # CONFIG_PACKAGE_xmlrpc-c-server is not set # CONFIG_PACKAGE_xmpp4r is not set # CONFIG_PACKAGE_yajl is not set CONFIG_PACKAGE_zlib=y # # LuCI # # # 3. Applications # # CONFIG_PACKAGE_luci-app-bird4 is not set # CONFIG_PACKAGE_luci-app-bird6 is not set # CONFIG_PACKAGE_luci-app-bmx6 is not set # CONFIG_PACKAGE_luci-app-cjdns is not set # CONFIG_PACKAGE_luci-app-clamav is not set # CONFIG_PACKAGE_luci-app-cshark is not set # CONFIG_PACKAGE_luci-app-e2guardian is not set # CONFIG_PACKAGE_luci-app-hnet is not set # CONFIG_PACKAGE_luci-app-lxc is not set # CONFIG_PACKAGE_luci-app-mwan3 is not set # CONFIG_PACKAGE_luci-app-squid is not set # # Mail # # CONFIG_PACKAGE_alpine is not set # CONFIG_PACKAGE_alpine-nossl is not set # CONFIG_PACKAGE_bogofilter is not set # CONFIG_PACKAGE_dovecot is not set # CONFIG_PACKAGE_fdm is not set # CONFIG_PACKAGE_fetchmail is not set # CONFIG_PACKAGE_fetchmail-nossl is not set # CONFIG_PACKAGE_imapfilter is not set # CONFIG_PACKAGE_mailman is not set # CONFIG_PACKAGE_mailsend is not set # CONFIG_PACKAGE_mailsend-nossl is not set # CONFIG_PACKAGE_mini-sendmail is not set # CONFIG_PACKAGE_msmtp is not set # CONFIG_PACKAGE_msmtp-nossl is not set # CONFIG_PACKAGE_msmtp-queue is not set # CONFIG_PACKAGE_mutt is not set # CONFIG_PACKAGE_nail is not set # CONFIG_PACKAGE_nullmailer is not set # CONFIG_PACKAGE_postfix is not set # # Select postfix build options # CONFIG_POSTFIX_TLS=y CONFIG_POSTFIX_SASL=y CONFIG_POSTFIX_LDAP=y # CONFIG_POSTFIX_DB is not set CONFIG_POSTFIX_CDB=y # CONFIG_POSTFIX_EAI is not set # CONFIG_PACKAGE_procmail is not set # CONFIG_PACKAGE_ssmtp is not set # CONFIG_PACKAGE_xmail is not set # # Multimedia # # # Streaming # # CONFIG_PACKAGE_darkice is not set # CONFIG_PACKAGE_oggfwd is not set # CONFIG_PACKAGE_GraphicsMagick is not set # CONFIG_PACKAGE_GraphicsMagick-jpeg is not set # CONFIG_PACKAGE_crtmpserver is not set # CONFIG_PACKAGE_ffmpeg is not set # CONFIG_PACKAGE_ffprobe is not set # CONFIG_PACKAGE_ffserver is not set # CONFIG_PACKAGE_fswebcam is not set # CONFIG_PACKAGE_gmediaserver is not set # CONFIG_PACKAGE_gphoto2 is not set # CONFIG_PACKAGE_grilo is not set # CONFIG_PACKAGE_grilo-plugins is not set # CONFIG_PACKAGE_gst-ffmpeg is not set # CONFIG_PACKAGE_gst1-libav is not set # CONFIG_PACKAGE_gstreamer1-libs is not set # CONFIG_PACKAGE_gstreamer1-plugins-bad is not set # CONFIG_PACKAGE_gstreamer1-plugins-base is not set # CONFIG_PACKAGE_gstreamer1-plugins-good is not set # CONFIG_PACKAGE_gstreamer1-plugins-ugly is not set # CONFIG_PACKAGE_gstreamer1-utils is not set # CONFIG_PACKAGE_hasciicam is not set # CONFIG_PACKAGE_icecast is not set # CONFIG_PACKAGE_imagemagick is not set # CONFIG_PACKAGE_imagemagick-jpeg is not set # CONFIG_PACKAGE_imagemagick-png is not set # CONFIG_PACKAGE_imagemagick-tiff is not set # CONFIG_PACKAGE_imagemagick-tools is not set # CONFIG_PACKAGE_kissdx is not set # CONFIG_PACKAGE_lcdgrilo is not set # CONFIG_PACKAGE_mjpg-streamer is not set # CONFIG_PACKAGE_motion is not set # CONFIG_PACKAGE_peercast is not set # CONFIG_PACKAGE_rygel is not set # CONFIG_PACKAGE_rygel-external is not set # CONFIG_PACKAGE_rygel-media-export is not set # CONFIG_PACKAGE_rygel-mpris is not set # CONFIG_PACKAGE_rygel-playbin is not set # CONFIG_PACKAGE_rygel-playbin-gst-suggested is not set # CONFIG_PACKAGE_rygel-tracker is not set # CONFIG_PACKAGE_streamripper is not set # CONFIG_PACKAGE_tvheadend is not set # CONFIG_PACKAGE_vips is not set # CONFIG_PACKAGE_xupnpd is not set # # Network # # # BitTorrent # # CONFIG_PACKAGE_btpd is not set # CONFIG_PACKAGE_cbtt is not set # CONFIG_PACKAGE_cbtt-mysql is not set # CONFIG_PACKAGE_ctorrent is not set # CONFIG_PACKAGE_ctorrent-nossl is not set # CONFIG_PACKAGE_ctorrent-svn is not set # CONFIG_PACKAGE_ctorrent-svn-nossl is not set # CONFIG_PACKAGE_mktorrent is not set # CONFIG_PACKAGE_opentracker is not set # CONFIG_PACKAGE_opentracker6 is not set # CONFIG_PACKAGE_rtorrent is not set # CONFIG_PACKAGE_rtorrent-rpc is not set # CONFIG_PACKAGE_transmission-cli-openssl is not set # CONFIG_PACKAGE_transmission-cli-polarssl is not set # CONFIG_PACKAGE_transmission-daemon-openssl is not set # CONFIG_PACKAGE_transmission-daemon-polarssl is not set # CONFIG_PACKAGE_transmission-remote-openssl is not set # CONFIG_PACKAGE_transmission-remote-polarssl is not set # # Captive Portals # # CONFIG_PACKAGE_chillispot is not set # CONFIG_PACKAGE_coova-chilli is not set # CONFIG_PACKAGE_nocatauth is not set # CONFIG_PACKAGE_nocatsplash is not set # CONFIG_PACKAGE_nodogsplash is not set # CONFIG_PACKAGE_pepperspot is not set # CONFIG_PACKAGE_wifidog is not set # CONFIG_PACKAGE_wifidog-tls is not set # # File Transfer # # CONFIG_PACKAGE_aria2 is not set # CONFIG_PACKAGE_atftp is not set # CONFIG_PACKAGE_atftpd is not set # CONFIG_PACKAGE_axel is not set # CONFIG_PACKAGE_cmdftp is not set # CONFIG_PACKAGE_curl is not set # CONFIG_PACKAGE_gnurl is not set # CONFIG_PACKAGE_lftp is not set # CONFIG_PACKAGE_ncftp is not set # CONFIG_PACKAGE_ncftp-utils is not set # CONFIG_PACKAGE_proftpd is not set # CONFIG_PACKAGE_pure-ftpd is not set # CONFIG_PACKAGE_pure-ftpd-tls is not set # CONFIG_PACKAGE_rsync is not set # CONFIG_PACKAGE_rsyncd is not set # CONFIG_PACKAGE_tftp-hpa is not set # CONFIG_PACKAGE_tftpd-hpa is not set # CONFIG_PACKAGE_uftp is not set # CONFIG_PACKAGE_uftp-keymgt is not set # CONFIG_PACKAGE_uftp-notls is not set # CONFIG_PACKAGE_uftpd is not set # CONFIG_PACKAGE_uftpd-notls is not set # CONFIG_PACKAGE_uftpproxyd is not set # CONFIG_PACKAGE_uftpproxyd-notls is not set # CONFIG_PACKAGE_uucp is not set # CONFIG_PACKAGE_vsftpd is not set # CONFIG_PACKAGE_vsftpd-tls is not set # CONFIG_PACKAGE_wget is not set # CONFIG_PACKAGE_wget-nossl is not set # CONFIG_PACKAGE_wput is not set # CONFIG_PACKAGE_yafc is not set # CONFIG_PACKAGE_zstream is not set # # Filesystem # # CONFIG_PACKAGE_curlftpfs is not set # CONFIG_PACKAGE_davfs2 is not set # CONFIG_PACKAGE_netatalk is not set # CONFIG_PACKAGE_nfs-kernel-server is not set # CONFIG_PACKAGE_nfs-server is not set # CONFIG_PACKAGE_owftpd is not set # CONFIG_PACKAGE_owhttpd is not set # CONFIG_PACKAGE_owserver is not set # CONFIG_PACKAGE_remotefs is not set # CONFIG_PACKAGE_remotefs-server is not set # CONFIG_PACKAGE_sshfs is not set # CONFIG_PACKAGE_unfs3 is not set # # Firewall # # CONFIG_PACKAGE_amwall is not set # CONFIG_PACKAGE_arptables is not set CONFIG_PACKAGE_conntrack=y # CONFIG_PACKAGE_conntrackd is not set # CONFIG_PACKAGE_ebtables is not set # CONFIG_PACKAGE_fwknop is not set # CONFIG_PACKAGE_fwknopd is not set CONFIG_PACKAGE_ip6tables=y # CONFIG_PACKAGE_ip6tables-extra is not set # CONFIG_PACKAGE_ip6tables-mod-nat is not set # CONFIG_PACKAGE_ipkungfu is not set CONFIG_PACKAGE_iptables=y # CONFIG_PACKAGE_iptables-mod-account is not set # CONFIG_PACKAGE_iptables-mod-chaos is not set # CONFIG_PACKAGE_iptables-mod-cluster is not set # CONFIG_PACKAGE_iptables-mod-clusterip is not set # CONFIG_PACKAGE_iptables-mod-condition is not set CONFIG_PACKAGE_iptables-mod-conntrack-extra=y # CONFIG_PACKAGE_iptables-mod-delude is not set # CONFIG_PACKAGE_iptables-mod-dhcpmac is not set # CONFIG_PACKAGE_iptables-mod-dnetmap is not set CONFIG_PACKAGE_iptables-mod-extra=y # CONFIG_PACKAGE_iptables-mod-filter is not set # CONFIG_PACKAGE_iptables-mod-fuzzy is not set # CONFIG_PACKAGE_iptables-mod-geoip is not set # CONFIG_PACKAGE_iptables-mod-hashlimit is not set # CONFIG_PACKAGE_iptables-mod-iface is not set # CONFIG_PACKAGE_iptables-mod-ipmark is not set # CONFIG_PACKAGE_iptables-mod-ipopt is not set # CONFIG_PACKAGE_iptables-mod-ipp2p is not set # CONFIG_PACKAGE_iptables-mod-iprange is not set # CONFIG_PACKAGE_iptables-mod-ipsec is not set # CONFIG_PACKAGE_iptables-mod-ipv4options is not set # CONFIG_PACKAGE_iptables-mod-led is not set # CONFIG_PACKAGE_iptables-mod-length2 is not set # CONFIG_PACKAGE_iptables-mod-logmark is not set # CONFIG_PACKAGE_iptables-mod-lscan is not set # CONFIG_PACKAGE_iptables-mod-lua is not set # CONFIG_PACKAGE_iptables-mod-nat-extra is not set # CONFIG_PACKAGE_iptables-mod-nflog is not set # CONFIG_PACKAGE_iptables-mod-nfqueue is not set # CONFIG_PACKAGE_iptables-mod-psd is not set # CONFIG_PACKAGE_iptables-mod-quota2 is not set # CONFIG_PACKAGE_iptables-mod-sysrq is not set # CONFIG_PACKAGE_iptables-mod-tarpit is not set # CONFIG_PACKAGE_iptables-mod-tee is not set # CONFIG_PACKAGE_iptables-mod-tproxy is not set # CONFIG_PACKAGE_iptables-mod-u32 is not set # CONFIG_PACKAGE_iptables-mod-ulog is not set # CONFIG_PACKAGE_iptables-snmp is not set # CONFIG_PACKAGE_iptaccount is not set # CONFIG_PACKAGE_knock is not set # CONFIG_PACKAGE_knockd is not set # CONFIG_PACKAGE_miniupnpc is not set # CONFIG_PACKAGE_miniupnpd is not set # CONFIG_PACKAGE_natpmp is not set # CONFIG_PACKAGE_natpmpc is not set # CONFIG_PACKAGE_nftables is not set # CONFIG_PACKAGE_nufw is not set # CONFIG_PACKAGE_nufw-modules is not set # CONFIG_PACKAGE_nufw-python is not set # CONFIG_PACKAGE_nutcpc is not set # CONFIG_PACKAGE_portsentry is not set # CONFIG_PACKAGE_scanlogd is not set # CONFIG_PACKAGE_shorewall-core is not set # CONFIG_PACKAGE_shorewall-lite is not set # CONFIG_PACKAGE_shorewall6-lite is not set # CONFIG_PACKAGE_snort is not set # CONFIG_PACKAGE_snortsam is not set # # Firewall Tunnel # # CONFIG_PACKAGE_httptunnel is not set # CONFIG_PACKAGE_icmptx is not set # CONFIG_PACKAGE_iodine is not set # CONFIG_PACKAGE_iodined is not set # CONFIG_PACKAGE_nstx is not set # CONFIG_PACKAGE_nstxd is not set # CONFIG_PACKAGE_ptunnel is not set # # FreeRADIUS (version 2) # # CONFIG_PACKAGE_freeradius2 is not set # CONFIG_PACKAGE_freeradius2-common is not set # CONFIG_PACKAGE_freeradius2-utils is not set # # IP Addresses and Names # # CONFIG_PACKAGE_announce is not set # CONFIG_PACKAGE_avahi-autoipd is not set # CONFIG_PACKAGE_avahi-dbus-daemon is not set # CONFIG_PACKAGE_avahi-nodbus-daemon is not set # CONFIG_PACKAGE_bind-check is not set # CONFIG_PACKAGE_bind-client is not set # CONFIG_PACKAGE_bind-dig is not set # CONFIG_PACKAGE_bind-dnssec is not set # CONFIG_PACKAGE_bind-host is not set # CONFIG_PACKAGE_bind-rndc is not set # CONFIG_PACKAGE_bind-server is not set # CONFIG_PACKAGE_bind-tools is not set # CONFIG_PACKAGE_ddns-scripts is not set # CONFIG_PACKAGE_dhcp-forwarder is not set # CONFIG_PACKAGE_djbdns-axfrdns is not set # CONFIG_PACKAGE_djbdns-base is not set # CONFIG_PACKAGE_djbdns-dnscache is not set # CONFIG_PACKAGE_djbdns-rbldns is not set # CONFIG_PACKAGE_djbdns-tinydns is not set # CONFIG_PACKAGE_djbdns-tools is not set # CONFIG_PACKAGE_djbdns-walldns is not set # CONFIG_PACKAGE_dnscrypt-proxy is not set # CONFIG_PACKAGE_drill is not set # CONFIG_PACKAGE_dudders is not set # CONFIG_PACKAGE_ez-ipupdate is not set # CONFIG_PACKAGE_hostip is not set # CONFIG_PACKAGE_howl-autoipd is not set # CONFIG_PACKAGE_howl-mdnsresponder is not set # CONFIG_PACKAGE_howl-nifd is not set # CONFIG_PACKAGE_howl-utils is not set # CONFIG_PACKAGE_idn is not set # CONFIG_PACKAGE_ipupdate is not set # CONFIG_PACKAGE_isc-dhcp-client-ipv4 is not set # CONFIG_PACKAGE_isc-dhcp-client-ipv6 is not set # CONFIG_PACKAGE_isc-dhcp-omshell-ipv4 is not set # CONFIG_PACKAGE_isc-dhcp-omshell-ipv6 is not set # CONFIG_PACKAGE_isc-dhcp-relay-ipv4 is not set # CONFIG_PACKAGE_isc-dhcp-relay-ipv6 is not set # CONFIG_PACKAGE_isc-dhcp-server-ipv4 is not set # CONFIG_PACKAGE_isc-dhcp-server-ipv6 is not set # CONFIG_PACKAGE_knot is not set # CONFIG_PACKAGE_knot-dig is not set # CONFIG_PACKAGE_knot-host is not set # CONFIG_PACKAGE_knot-keymgr is not set # CONFIG_PACKAGE_knot-nsec3hash is not set # CONFIG_PACKAGE_knot-nsupdate is not set # CONFIG_PACKAGE_knot-tests is not set # CONFIG_PACKAGE_maradns is not set # CONFIG_PACKAGE_mdns-utils is not set # CONFIG_PACKAGE_mdnsd is not set # CONFIG_PACKAGE_mdnsresponder is not set # CONFIG_PACKAGE_ndyndns is not set # CONFIG_PACKAGE_nsd is not set # CONFIG_PACKAGE_nsd-control is not set # CONFIG_PACKAGE_nsd-control-setup is not set # CONFIG_PACKAGE_nsd-nossl is not set # CONFIG_PACKAGE_ohybridproxy is not set # CONFIG_PACKAGE_rarpd is not set # CONFIG_PACKAGE_unbound is not set # CONFIG_PACKAGE_unbound-anchor is not set # CONFIG_PACKAGE_unbound-control is not set # CONFIG_PACKAGE_unbound-control-setup is not set # CONFIG_PACKAGE_unbound-host is not set # CONFIG_PACKAGE_updatedd is not set # CONFIG_PACKAGE_yaddns is not set # CONFIG_PACKAGE_zonestitcher is not set # # IPv6 discovery tools # CONFIG_PACKAGE_ndisc6=y CONFIG_PACKAGE_rdisc6=y CONFIG_PACKAGE_rdnssd=y # CONFIG_PACKAGE_traceroute6 is not set # # Instant Messaging # # CONFIG_PACKAGE_bahamut is not set # CONFIG_PACKAGE_bitchx is not set # CONFIG_PACKAGE_bitlbee is not set # CONFIG_PACKAGE_dircproxy is not set # CONFIG_PACKAGE_ekg is not set # CONFIG_PACKAGE_imsnif is not set # CONFIG_PACKAGE_imspector is not set # CONFIG_PACKAGE_irssi is not set # CONFIG_PACKAGE_irssi-nossl is not set # CONFIG_PACKAGE_mcabber is not set # CONFIG_PACKAGE_miau is not set # CONFIG_PACKAGE_ngircd is not set # CONFIG_PACKAGE_ngircd-nossl is not set # CONFIG_PACKAGE_ntox is not set # CONFIG_PACKAGE_prosody is not set # CONFIG_PACKAGE_psybnc is not set # CONFIG_PACKAGE_reaim is not set # CONFIG_PACKAGE_tmsnc is not set # CONFIG_PACKAGE_tox-bootstrapd is not set # CONFIG_PACKAGE_umurmur-openssl is not set # CONFIG_PACKAGE_umurmur-polarssl is not set # CONFIG_PACKAGE_weechat is not set # CONFIG_PACKAGE_znc is not set # # Linux ATM tools # # CONFIG_PACKAGE_atm-aread is not set # CONFIG_PACKAGE_atm-atmaddr is not set # CONFIG_PACKAGE_atm-atmdiag is not set # CONFIG_PACKAGE_atm-atmdump is not set # CONFIG_PACKAGE_atm-atmloop is not set # CONFIG_PACKAGE_atm-atmsigd is not set # CONFIG_PACKAGE_atm-atmswitch is not set # CONFIG_PACKAGE_atm-atmtcp is not set # CONFIG_PACKAGE_atm-awrite is not set # CONFIG_PACKAGE_atm-bus is not set # CONFIG_PACKAGE_atm-debug-tools is not set # CONFIG_PACKAGE_atm-diagnostics is not set # CONFIG_PACKAGE_atm-esi is not set # CONFIG_PACKAGE_atm-ilmid is not set # CONFIG_PACKAGE_atm-ilmidiag is not set # CONFIG_PACKAGE_atm-lecs is not set # CONFIG_PACKAGE_atm-les is not set # CONFIG_PACKAGE_atm-mpcd is not set # CONFIG_PACKAGE_atm-saaldump is not set # CONFIG_PACKAGE_atm-sonetdiag is not set # CONFIG_PACKAGE_atm-svc_recv is not set # CONFIG_PACKAGE_atm-svc_send is not set # CONFIG_PACKAGE_atm-tools is not set # CONFIG_PACKAGE_atm-ttcp_atm is not set # CONFIG_PACKAGE_atm-zeppelin is not set # CONFIG_PACKAGE_br2684ctl is not set # # NMAP Suite # # CONFIG_PACKAGE_ncat is not set # CONFIG_PACKAGE_ncat-ssl is not set # CONFIG_PACKAGE_ndiff is not set CONFIG_PACKAGE_nmap=y # CONFIG_PACKAGE_nmap-ssl is not set # CONFIG_PACKAGE_nping is not set # # NNTP # # CONFIG_PACKAGE_leafnode is not set # CONFIG_PACKAGE_nzbget is not set # CONFIG_PACKAGE_nzbgetweb is not set # # NTRIP # # CONFIG_PACKAGE_ntripcaster is not set # CONFIG_PACKAGE_ntripclient is not set # CONFIG_PACKAGE_ntripserver is not set # # OLSR.org network framework # # CONFIG_PACKAGE_oonf-dlep-proxy is not set # CONFIG_PACKAGE_oonf-dlep-radio is not set # CONFIG_PACKAGE_oonf-init-scripts is not set # CONFIG_PACKAGE_oonf-olsrd2 is not set # # Open vSwitch # # CONFIG_PACKAGE_openvswitch is not set # CONFIG_PACKAGE_openvswitch-base is not set # CONFIG_PACKAGE_openvswitch-benchmark is not set # CONFIG_PACKAGE_openvswitch-ipsec is not set # CONFIG_PACKAGE_openvswitch-ovs-appctl is not set # CONFIG_PACKAGE_openvswitch-ovs-dpctl is not set # CONFIG_PACKAGE_openvswitch-ovs-ofctl is not set # CONFIG_PACKAGE_openvswitch-ovs-vsctl is not set # CONFIG_PACKAGE_openvswitch-ovsdb-client is not set # CONFIG_PACKAGE_openvswitch-python is not set # # P2P # # CONFIG_PACKAGE_amule is not set # CONFIG_PACKAGE_mutella is not set # CONFIG_PACKAGE_opendchub is not set # CONFIG_PACKAGE_peerguardian is not set # CONFIG_PACKAGE_uhub is not set # # Printing # # CONFIG_PACKAGE_cups is not set # CONFIG_PACKAGE_cups-bsd is not set # CONFIG_PACKAGE_cups-client is not set # CONFIG_PACKAGE_cups-filters is not set # CONFIG_PACKAGE_cups-locale-da is not set # CONFIG_PACKAGE_cups-locale-de is not set # CONFIG_PACKAGE_cups-locale-es is not set # CONFIG_PACKAGE_cups-locale-eu is not set # CONFIG_PACKAGE_cups-locale-fi is not set # CONFIG_PACKAGE_cups-locale-fr is not set # CONFIG_PACKAGE_cups-locale-hu is not set # CONFIG_PACKAGE_cups-locale-id is not set # CONFIG_PACKAGE_cups-locale-it is not set # CONFIG_PACKAGE_cups-locale-ja is not set # CONFIG_PACKAGE_cups-locale-ko is not set # CONFIG_PACKAGE_cups-locale-nl is not set # CONFIG_PACKAGE_cups-locale-no is not set # CONFIG_PACKAGE_cups-locale-pl is not set # CONFIG_PACKAGE_cups-locale-pt is not set # CONFIG_PACKAGE_cups-locale-pt_BR is not set # CONFIG_PACKAGE_cups-locale-ru is not set # CONFIG_PACKAGE_cups-locale-sv is not set # CONFIG_PACKAGE_cups-locale-zh is not set # CONFIG_PACKAGE_cups-locale-zh_TW is not set # CONFIG_PACKAGE_cups-ppdc is not set # CONFIG_PACKAGE_p910nd is not set # # Routing and Redirection # # CONFIG_PACKAGE_babel-pinger is not set # CONFIG_PACKAGE_babeld is not set # CONFIG_PACKAGE_batmand is not set # CONFIG_PACKAGE_bcp38 is not set # CONFIG_PACKAGE_bird4 is not set # CONFIG_PACKAGE_bird4-uci is not set # CONFIG_PACKAGE_bird6 is not set # CONFIG_PACKAGE_bird6-uci is not set # CONFIG_PACKAGE_birdc4 is not set # CONFIG_PACKAGE_birdc6 is not set # CONFIG_PACKAGE_birdcl4 is not set # CONFIG_PACKAGE_birdcl6 is not set # CONFIG_PACKAGE_bmx6 is not set # CONFIG_PACKAGE_bmx7 is not set # CONFIG_PACKAGE_cjdns is not set # CONFIG_PACKAGE_cjdns-tests is not set # CONFIG_PACKAGE_genl is not set # CONFIG_PACKAGE_igmpproxy is not set # CONFIG_PACKAGE_ip is not set # CONFIG_PACKAGE_ip-bridge is not set # CONFIG_PACKAGE_ip-full is not set # CONFIG_PACKAGE_lldpd is not set # CONFIG_PACKAGE_mcproxy is not set # CONFIG_PACKAGE_mwan3 is not set # CONFIG_PACKAGE_net-tools-route is not set # CONFIG_PACKAGE_olsrd is not set # CONFIG_PACKAGE_parprouted is not set # CONFIG_PACKAGE_quagga is not set # CONFIG_PACKAGE_redir is not set # CONFIG_PACKAGE_relayd is not set # CONFIG_PACKAGE_rinetd is not set CONFIG_PACKAGE_smcroute=y # CONFIG_PACKAGE_ss is not set # CONFIG_PACKAGE_sslh is not set # CONFIG_PACKAGE_tc is not set # CONFIG_PACKAGE_tcpproxy is not set # CONFIG_PACKAGE_udp-broadcast-relay is not set # CONFIG_PACKAGE_vis is not set # CONFIG_PACKAGE_vrrpd is not set # CONFIG_PACKAGE_wing is not set # # SSH # # CONFIG_PACKAGE_autossh is not set # CONFIG_PACKAGE_corkscrew is not set # CONFIG_PACKAGE_gesftpserver is not set # CONFIG_PACKAGE_openssh-client is not set # CONFIG_PACKAGE_openssh-client-utils is not set # CONFIG_PACKAGE_openssh-keygen is not set # CONFIG_PACKAGE_openssh-moduli is not set # CONFIG_PACKAGE_openssh-server is not set # CONFIG_PACKAGE_openssh-server-pam is not set # CONFIG_PACKAGE_openssh-sftp-client is not set # CONFIG_PACKAGE_openssh-sftp-server is not set # CONFIG_PACKAGE_rssh is not set # CONFIG_PACKAGE_sshtunnel is not set # # THC-IPv6 attack and analyzing toolkit # # CONFIG_PACKAGE_thc-ipv6-address6 is not set # CONFIG_PACKAGE_thc-ipv6-alive6 is not set # CONFIG_PACKAGE_thc-ipv6-covert-send6 is not set # CONFIG_PACKAGE_thc-ipv6-covert-send6d is not set # CONFIG_PACKAGE_thc-ipv6-denial6 is not set # CONFIG_PACKAGE_thc-ipv6-detect-new-ip6 is not set # CONFIG_PACKAGE_thc-ipv6-detect-sniffer6 is not set # CONFIG_PACKAGE_thc-ipv6-dnsdict6 is not set # CONFIG_PACKAGE_thc-ipv6-dnsrevenum6 is not set # CONFIG_PACKAGE_thc-ipv6-dos-new-ip6 is not set # CONFIG_PACKAGE_thc-ipv6-dump-router6 is not set # CONFIG_PACKAGE_thc-ipv6-exploit6 is not set # CONFIG_PACKAGE_thc-ipv6-fake-advertise6 is not set # CONFIG_PACKAGE_thc-ipv6-fake-dhcps6 is not set # CONFIG_PACKAGE_thc-ipv6-fake-dns6d is not set # CONFIG_PACKAGE_thc-ipv6-fake-dnsupdate6 is not set # CONFIG_PACKAGE_thc-ipv6-fake-mipv6 is not set # CONFIG_PACKAGE_thc-ipv6-fake-mld26 is not set # CONFIG_PACKAGE_thc-ipv6-fake-mld6 is not set # CONFIG_PACKAGE_thc-ipv6-fake-mldrouter6 is not set # CONFIG_PACKAGE_thc-ipv6-fake-router26 is not set # CONFIG_PACKAGE_thc-ipv6-fake-router6 is not set # CONFIG_PACKAGE_thc-ipv6-fake-solicitate6 is not set # CONFIG_PACKAGE_thc-ipv6-flood-advertise6 is not set # CONFIG_PACKAGE_thc-ipv6-flood-dhcpc6 is not set # CONFIG_PACKAGE_thc-ipv6-flood-mld26 is not set # CONFIG_PACKAGE_thc-ipv6-flood-mld6 is not set # CONFIG_PACKAGE_thc-ipv6-flood-mldrouter6 is not set # CONFIG_PACKAGE_thc-ipv6-flood-router26 is not set # CONFIG_PACKAGE_thc-ipv6-flood-router6 is not set # CONFIG_PACKAGE_thc-ipv6-flood-solicitate6 is not set # CONFIG_PACKAGE_thc-ipv6-fragmentation6 is not set # CONFIG_PACKAGE_thc-ipv6-fuzz-dhcpc6 is not set # CONFIG_PACKAGE_thc-ipv6-fuzz-dhcps6 is not set # CONFIG_PACKAGE_thc-ipv6-fuzz-ip6 is not set # CONFIG_PACKAGE_thc-ipv6-implementation6 is not set # CONFIG_PACKAGE_thc-ipv6-implementation6d is not set # CONFIG_PACKAGE_thc-ipv6-inverse-lookup6 is not set # CONFIG_PACKAGE_thc-ipv6-kill-router6 is not set # CONFIG_PACKAGE_thc-ipv6-ndpexhaust6 is not set # CONFIG_PACKAGE_thc-ipv6-node-query6 is not set # CONFIG_PACKAGE_thc-ipv6-parasite6 is not set # CONFIG_PACKAGE_thc-ipv6-passive-discovery6 is not set # CONFIG_PACKAGE_thc-ipv6-randicmp6 is not set # CONFIG_PACKAGE_thc-ipv6-redir6 is not set # CONFIG_PACKAGE_thc-ipv6-rsmurf6 is not set # CONFIG_PACKAGE_thc-ipv6-sendpees6 is not set # CONFIG_PACKAGE_thc-ipv6-sendpeesmp6 is not set # CONFIG_PACKAGE_thc-ipv6-smurf6 is not set # CONFIG_PACKAGE_thc-ipv6-thcping6 is not set # CONFIG_PACKAGE_thc-ipv6-toobig6 is not set # CONFIG_PACKAGE_thc-ipv6-trace6 is not set # # Telephony # # CONFIG_PACKAGE_smap-to-devinfo is not set # # Time Synchronization # # CONFIG_PACKAGE_chrony is not set # CONFIG_PACKAGE_htpdate is not set # CONFIG_PACKAGE_ntp-keygen is not set # CONFIG_PACKAGE_ntp-utils is not set # CONFIG_PACKAGE_ntpclient is not set # CONFIG_PACKAGE_ntpd is not set # CONFIG_PACKAGE_ntpdate is not set # CONFIG_PACKAGE_openntpd is not set # CONFIG_PACKAGE_ptpd is not set # # VPN # # CONFIG_PACKAGE_chaosvpn is not set # CONFIG_PACKAGE_etherpuppet is not set # CONFIG_PACKAGE_fastd is not set # CONFIG_PACKAGE_frickin is not set # CONFIG_PACKAGE_ipsec-tools is not set # CONFIG_PACKAGE_isakmpd is not set # CONFIG_PACKAGE_l2tpd is not set # CONFIG_PACKAGE_l2tpns is not set # CONFIG_PACKAGE_matrixtunnel is not set # CONFIG_PACKAGE_n2n is not set # CONFIG_PACKAGE_ocserv is not set # CONFIG_PACKAGE_openconnect is not set # CONFIG_PACKAGE_opennhrp is not set # CONFIG_PACKAGE_openswan is not set # CONFIG_PACKAGE_openvpn-easy-rsa is not set # CONFIG_PACKAGE_openvpn-nossl is not set CONFIG_PACKAGE_openvpn-openssl=y CONFIG_OPENVPN_openssl_ENABLE_LZO=y # CONFIG_OPENVPN_openssl_ENABLE_X509_ALT_USERNAME is not set CONFIG_OPENVPN_openssl_ENABLE_SERVER=y # CONFIG_OPENVPN_openssl_ENABLE_MANAGEMENT is not set CONFIG_OPENVPN_openssl_ENABLE_HTTP=y CONFIG_OPENVPN_openssl_ENABLE_SOCKS=y CONFIG_OPENVPN_openssl_ENABLE_FRAGMENT=y CONFIG_OPENVPN_openssl_ENABLE_MULTIHOME=y CONFIG_OPENVPN_openssl_ENABLE_PORT_SHARE=y CONFIG_OPENVPN_openssl_ENABLE_DEF_AUTH=y CONFIG_OPENVPN_openssl_ENABLE_PF=y # CONFIG_OPENVPN_openssl_ENABLE_IPROUTE2 is not set CONFIG_OPENVPN_openssl_ENABLE_SMALL=y # CONFIG_PACKAGE_openvpn-polarssl is not set # CONFIG_PACKAGE_peervpn is not set # CONFIG_PACKAGE_pptpd is not set # CONFIG_PACKAGE_quicktun is not set # CONFIG_PACKAGE_ssltunnel is not set # CONFIG_PACKAGE_strongswan is not set # CONFIG_PACKAGE_strongswan-charon is not set # CONFIG_PACKAGE_strongswan-default is not set # CONFIG_PACKAGE_strongswan-isakmp is not set # CONFIG_PACKAGE_strongswan-libtls is not set # CONFIG_PACKAGE_strongswan-minimal is not set # CONFIG_PACKAGE_strongswan-mod-addrblock is not set # CONFIG_PACKAGE_strongswan-mod-aes is not set # CONFIG_PACKAGE_strongswan-mod-af-alg is not set # CONFIG_PACKAGE_strongswan-mod-agent is not set # CONFIG_PACKAGE_strongswan-mod-attr is not set # CONFIG_PACKAGE_strongswan-mod-attr-sql is not set # CONFIG_PACKAGE_strongswan-mod-blowfish is not set # CONFIG_PACKAGE_strongswan-mod-ccm is not set # CONFIG_PACKAGE_strongswan-mod-cmac is not set # CONFIG_PACKAGE_strongswan-mod-connmark is not set # CONFIG_PACKAGE_strongswan-mod-constraints is not set # CONFIG_PACKAGE_strongswan-mod-coupling is not set # CONFIG_PACKAGE_strongswan-mod-ctr is not set # CONFIG_PACKAGE_strongswan-mod-curl is not set # CONFIG_PACKAGE_strongswan-mod-des is not set # CONFIG_PACKAGE_strongswan-mod-dhcp is not set # CONFIG_PACKAGE_strongswan-mod-dnskey is not set # CONFIG_PACKAGE_strongswan-mod-duplicheck is not set # CONFIG_PACKAGE_strongswan-mod-eap-identity is not set # CONFIG_PACKAGE_strongswan-mod-eap-md5 is not set # CONFIG_PACKAGE_strongswan-mod-eap-mschapv2 is not set # CONFIG_PACKAGE_strongswan-mod-eap-radius is not set # CONFIG_PACKAGE_strongswan-mod-eap-tls is not set # CONFIG_PACKAGE_strongswan-mod-farp is not set # CONFIG_PACKAGE_strongswan-mod-fips-prf is not set # CONFIG_PACKAGE_strongswan-mod-gcm is not set # CONFIG_PACKAGE_strongswan-mod-gcrypt is not set # CONFIG_PACKAGE_strongswan-mod-gmp is not set # CONFIG_PACKAGE_strongswan-mod-gmpdh is not set # CONFIG_PACKAGE_strongswan-mod-ha is not set # CONFIG_PACKAGE_strongswan-mod-hmac is not set # CONFIG_PACKAGE_strongswan-mod-kernel-libipsec is not set # CONFIG_PACKAGE_strongswan-mod-kernel-netlink is not set # CONFIG_PACKAGE_strongswan-mod-ldap is not set # CONFIG_PACKAGE_strongswan-mod-led is not set # CONFIG_PACKAGE_strongswan-mod-load-tester is not set # CONFIG_PACKAGE_strongswan-mod-md4 is not set # CONFIG_PACKAGE_strongswan-mod-md5 is not set # CONFIG_PACKAGE_strongswan-mod-mysql is not set # CONFIG_PACKAGE_strongswan-mod-nonce is not set # CONFIG_PACKAGE_strongswan-mod-openssl is not set # CONFIG_PACKAGE_strongswan-mod-pem is not set # CONFIG_PACKAGE_strongswan-mod-pgp is not set # CONFIG_PACKAGE_strongswan-mod-pkcs1 is not set # CONFIG_PACKAGE_strongswan-mod-pkcs11 is not set # CONFIG_PACKAGE_strongswan-mod-pkcs12 is not set # CONFIG_PACKAGE_strongswan-mod-pkcs7 is not set # CONFIG_PACKAGE_strongswan-mod-pkcs8 is not set # CONFIG_PACKAGE_strongswan-mod-pubkey is not set # CONFIG_PACKAGE_strongswan-mod-random is not set # CONFIG_PACKAGE_strongswan-mod-rc2 is not set # CONFIG_PACKAGE_strongswan-mod-resolve is not set # CONFIG_PACKAGE_strongswan-mod-revocation is not set # CONFIG_PACKAGE_strongswan-mod-sha1 is not set # CONFIG_PACKAGE_strongswan-mod-sha2 is not set # CONFIG_PACKAGE_strongswan-mod-smp is not set # CONFIG_PACKAGE_strongswan-mod-socket-default is not set # CONFIG_PACKAGE_strongswan-mod-socket-dynamic is not set # CONFIG_PACKAGE_strongswan-mod-sql is not set # CONFIG_PACKAGE_strongswan-mod-sqlite is not set # CONFIG_PACKAGE_strongswan-mod-sshkey is not set # CONFIG_PACKAGE_strongswan-mod-stroke is not set # CONFIG_PACKAGE_strongswan-mod-test-vectors is not set # CONFIG_PACKAGE_strongswan-mod-uci is not set # CONFIG_PACKAGE_strongswan-mod-unity is not set # CONFIG_PACKAGE_strongswan-mod-updown is not set # CONFIG_PACKAGE_strongswan-mod-whitelist is not set # CONFIG_PACKAGE_strongswan-mod-x509 is not set # CONFIG_PACKAGE_strongswan-mod-xauth-eap is not set # CONFIG_PACKAGE_strongswan-mod-xauth-generic is not set # CONFIG_PACKAGE_strongswan-mod-xcbc is not set # CONFIG_PACKAGE_strongswan-utils is not set # CONFIG_PACKAGE_tinc is not set # CONFIG_PACKAGE_uanytun is not set # CONFIG_PACKAGE_uanytun-nettle is not set # CONFIG_PACKAGE_uanytun-nocrypt is not set # CONFIG_PACKAGE_uanytun-sslcrypt is not set # CONFIG_PACKAGE_vpnc is not set # CONFIG_PACKAGE_vpnc-scripts is not set # CONFIG_PACKAGE_vpzone is not set # CONFIG_PACKAGE_vtun is not set # # Version Control Systems # # CONFIG_PACKAGE_fossil is not set # CONFIG_PACKAGE_git is not set # CONFIG_PACKAGE_mercurial is not set # CONFIG_PACKAGE_subversion-libs is not set # # Web Servers/Proxies # # CONFIG_PACKAGE_apache is not set # CONFIG_PACKAGE_appweb is not set # CONFIG_PACKAGE_axhttpd is not set # CONFIG_PACKAGE_axtlswrap is not set # CONFIG_PACKAGE_cgi-io is not set # CONFIG_PACKAGE_clamav is not set # CONFIG_PACKAGE_crowdcontrol is not set # CONFIG_PACKAGE_dansguardian is not set # CONFIG_PACKAGE_e2guardian is not set # CONFIG_PACKAGE_emailrelay is not set # CONFIG_PACKAGE_emailrelay-nossl is not set # CONFIG_PACKAGE_freshclam is not set # CONFIG_PACKAGE_gatling is not set # CONFIG_PACKAGE_haproxy is not set # CONFIG_PACKAGE_haproxy-nossl is not set # CONFIG_PACKAGE_hiawatha is not set # CONFIG_PACKAGE_lighttpd is not set # CONFIG_PACKAGE_mini-httpd is not set # CONFIG_PACKAGE_mini-httpd-htpasswd is not set # CONFIG_PACKAGE_mini-httpd-matrixssl is not set # CONFIG_PACKAGE_mini-httpd-openssl is not set # CONFIG_PACKAGE_nginx is not set # CONFIG_PACKAGE_obfsproxy is not set # CONFIG_PACKAGE_pdnsd is not set # CONFIG_PACKAGE_pepsal is not set # CONFIG_PACKAGE_polipo is not set # CONFIG_PACKAGE_privoxy is not set # CONFIG_PACKAGE_radicale-py2 is not set # CONFIG_PACKAGE_seeks is not set # CONFIG_PACKAGE_shadowsocks-client is not set # CONFIG_PACKAGE_sockd is not set # CONFIG_PACKAGE_socksify is not set # CONFIG_PACKAGE_spawn-fcgi is not set # CONFIG_PACKAGE_squid is not set # CONFIG_PACKAGE_srelay is not set # CONFIG_PACKAGE_tinyproxy is not set # CONFIG_PACKAGE_transocks is not set # CONFIG_PACKAGE_tsocks is not set # CONFIG_PACKAGE_uhttpd is not set # CONFIG_PACKAGE_uhttpd_debug is not set # CONFIG_PACKAGE_wccpd is not set # # dial-in/up # # CONFIG_PACKAGE_rp-l2tpd is not set # CONFIG_PACKAGE_rp-pppoe-relay is not set # CONFIG_PACKAGE_rp-pppoe-server is not set # CONFIG_PACKAGE_rp-pppoe-sniff is not set # # firmware # # # miredo: Teredo (IPv6 tunneling over UDP through NAT) # # CONFIG_PACKAGE_miredo-client is not set # CONFIG_PACKAGE_miredo-common is not set # CONFIG_PACKAGE_miredo-server is not set # # wide-dhcpv6 # # CONFIG_PACKAGE_wide-dhcpv6-client is not set # CONFIG_PACKAGE_wide-dhcpv6-control is not set # CONFIG_PACKAGE_wide-dhcpv6-relay is not set # CONFIG_PACKAGE_wide-dhcpv6-server is not set # # wireless # # CONFIG_PACKAGE_aircrack-ng is not set # CONFIG_PACKAGE_aircrack-ptw is not set # CONFIG_PACKAGE_airmon-ng is not set # CONFIG_PACKAGE_airpwn is not set CONFIG_PACKAGE_horst=y # CONFIG_PACKAGE_kismet-client is not set # CONFIG_PACKAGE_kismet-drone is not set # CONFIG_PACKAGE_kismet-server is not set # CONFIG_PACKAGE_mdk3 is not set # CONFIG_PACKAGE_reaver is not set # CONFIG_PACKAGE_snort-wireless is not set # CONFIG_PACKAGE_snort-wireless-mysql is not set # CONFIG_PACKAGE_snort-wireless-pgsql is not set CONFIG_PACKAGE_wavemon=y # CONFIG_PACKAGE_xsupplicant is not set # CONFIG_PACKAGE_464xlat is not set # CONFIG_PACKAGE_6in4 is not set # CONFIG_PACKAGE_6rd is not set # CONFIG_PACKAGE_6to4 is not set # CONFIG_PACKAGE_6tunnel is not set # CONFIG_PACKAGE_adblock is not set # CONFIG_PACKAGE_ahcpd is not set # CONFIG_PACKAGE_aiccu is not set # CONFIG_PACKAGE_aiccu-gnutls is not set # CONFIG_PACKAGE_alfred is not set # CONFIG_PACKAGE_aoetools is not set # CONFIG_PACKAGE_apcupsd is not set # CONFIG_PACKAGE_apcupsd-cgi is not set # CONFIG_PACKAGE_apf is not set # CONFIG_PACKAGE_apinger is not set # CONFIG_PACKAGE_aprx is not set # CONFIG_PACKAGE_arpd is not set # CONFIG_PACKAGE_arpwatch is not set # CONFIG_PACKAGE_authsae is not set # CONFIG_PACKAGE_batctl is not set # CONFIG_PACKAGE_bing is not set # CONFIG_PACKAGE_bmon is not set # CONFIG_PACKAGE_bwm is not set # CONFIG_PACKAGE_bwm-ng is not set # CONFIG_PACKAGE_bwping is not set # CONFIG_PACKAGE_cdp-tools is not set # CONFIG_PACKAGE_chat is not set # CONFIG_PACKAGE_cifsmount is not set # CONFIG_PACKAGE_crda is not set # CONFIG_PACKAGE_cshark is not set # CONFIG_PACKAGE_cutter is not set # CONFIG_PACKAGE_daemonlogger is not set # CONFIG_PACKAGE_darkstat is not set # CONFIG_PACKAGE_dhcp6-client is not set # CONFIG_PACKAGE_dhcp6-server is not set # CONFIG_PACKAGE_dhcpcd is not set # CONFIG_PACKAGE_dibbler-client is not set # CONFIG_PACKAGE_dibbler-relay is not set # CONFIG_PACKAGE_dibbler-requestor is not set # CONFIG_PACKAGE_dibbler-server is not set # CONFIG_PACKAGE_ditg is not set # CONFIG_PACKAGE_dmapd is not set # CONFIG_PACKAGE_dns2tcp is not set # CONFIG_PACKAGE_dns2tcpd is not set # CONFIG_PACKAGE_ds-lite is not set # CONFIG_PACKAGE_dsniff is not set # CONFIG_PACKAGE_e169-stats is not set # CONFIG_PACKAGE_eapol-test is not set # CONFIG_PACKAGE_elinks is not set # CONFIG_PACKAGE_esniper is not set # CONFIG_PACKAGE_etherwake is not set # CONFIG_PACKAGE_ethtool is not set # CONFIG_PACKAGE_ettercap is not set # CONFIG_PACKAGE_faifa is not set # CONFIG_PACKAGE_fakeidentd is not set # CONFIG_PACKAGE_flow-tools is not set # CONFIG_PACKAGE_fping is not set # CONFIG_PACKAGE_fprobe is not set # CONFIG_PACKAGE_fprobe-ulog is not set # CONFIG_PACKAGE_gnunet is not set # CONFIG_PACKAGE_gpsd is not set # CONFIG_PACKAGE_gpsd-clients is not set # CONFIG_PACKAGE_gre is not set # CONFIG_PACKAGE_gw6c is not set # CONFIG_PACKAGE_hnet-full is not set # CONFIG_PACKAGE_hnet-full-l2tp is not set # CONFIG_PACKAGE_hnet-full-secure is not set # CONFIG_PACKAGE_hnetd-nossl is not set # CONFIG_PACKAGE_hnetd-openssl is not set # CONFIG_PACKAGE_hostapd is not set CONFIG_PACKAGE_hostapd-common=y # CONFIG_PACKAGE_hostapd-common-old is not set # CONFIG_PACKAGE_hostapd-mini is not set # CONFIG_PACKAGE_hostapd-utils is not set # CONFIG_PACKAGE_hpavcfg is not set # CONFIG_PACKAGE_hping3 is not set # CONFIG_PACKAGE_httping is not set # CONFIG_PACKAGE_httping-nossl is not set # CONFIG_PACKAGE_ibrdtn-tools is not set # CONFIG_PACKAGE_ibrdtnd is not set CONFIG_PACKAGE_ifstat=y CONFIG_PACKAGE_iftop=y # CONFIG_PACKAGE_iotivity is not set # CONFIG_PACKAGE_ipcad is not set # CONFIG_PACKAGE_iperf is not set # CONFIG_PACKAGE_iperf-mt is not set CONFIG_PACKAGE_iperf3=y # CONFIG_PACKAGE_ipip is not set # CONFIG_PACKAGE_ipset is not set # CONFIG_PACKAGE_ipset-dns is not set # CONFIG_PACKAGE_iptraf is not set # CONFIG_PACKAGE_iputils-arping is not set # CONFIG_PACKAGE_iputils-clockdiff is not set # CONFIG_PACKAGE_iputils-ping is not set # CONFIG_PACKAGE_iputils-ping6 is not set # CONFIG_PACKAGE_iputils-tftpd is not set # CONFIG_PACKAGE_iputils-tracepath is not set # CONFIG_PACKAGE_iputils-tracepath6 is not set # CONFIG_PACKAGE_iputils-traceroute6 is not set # CONFIG_PACKAGE_ipv6calc is not set # CONFIG_PACKAGE_ipv6calc-mini is not set # CONFIG_PACKAGE_ipv6log is not set # CONFIG_PACKAGE_ipv6log-mini is not set CONFIG_PACKAGE_iw=y # CONFIG_PACKAGE_jtg is not set # CONFIG_PACKAGE_keepalived is not set # CONFIG_PACKAGE_keynote is not set # CONFIG_PACKAGE_knxd is not set # CONFIG_PACKAGE_knxd-tools is not set # CONFIG_PACKAGE_kplex is not set # CONFIG_PACKAGE_krb5-client is not set # CONFIG_PACKAGE_krb5-libs is not set # CONFIG_PACKAGE_krb5-server is not set # CONFIG_PACKAGE_l2tpv3tun is not set # CONFIG_PACKAGE_lft is not set # CONFIG_PACKAGE_linknx is not set # CONFIG_PACKAGE_lispd is not set # CONFIG_PACKAGE_lsm is not set # CONFIG_PACKAGE_mac-telnet-client is not set # CONFIG_PACKAGE_mac-telnet-discover is not set # CONFIG_PACKAGE_mac-telnet-ping is not set # CONFIG_PACKAGE_mac-telnet-server is not set # CONFIG_PACKAGE_mac-to-devinfo is not set # CONFIG_PACKAGE_madwimax is not set # CONFIG_PACKAGE_map is not set # CONFIG_PACKAGE_map-t is not set # CONFIG_PACKAGE_mdns is not set # CONFIG_PACKAGE_memcached is not set # CONFIG_PACKAGE_mgen is not set # CONFIG_PACKAGE_mii-tool is not set # CONFIG_PACKAGE_mini-snmpd is not set # CONFIG_PACKAGE_minimalist-pcproxy is not set # CONFIG_PACKAGE_mosquitto is not set # CONFIG_PACKAGE_mosquitto-client is not set # CONFIG_PACKAGE_mosquitto-client-nossl is not set # CONFIG_PACKAGE_mosquitto-nossl is not set # CONFIG_PACKAGE_mrd6 is not set # CONFIG_PACKAGE_mrtg is not set # CONFIG_PACKAGE_mtr is not set # CONFIG_PACKAGE_multiwan is not set # CONFIG_PACKAGE_mvprelay is not set # CONFIG_PACKAGE_nbd is not set # CONFIG_PACKAGE_nbd-server is not set # CONFIG_PACKAGE_nbtscan is not set # CONFIG_PACKAGE_ndppd is not set # CONFIG_PACKAGE_net-tools-arp is not set # CONFIG_PACKAGE_net-tools-hostname is not set # CONFIG_PACKAGE_net-tools-ifconfig is not set # CONFIG_PACKAGE_net-tools-ipmaddr is not set # CONFIG_PACKAGE_net-tools-iptunnel is not set # CONFIG_PACKAGE_net-tools-mii-tool is not set # CONFIG_PACKAGE_net-tools-nameif is not set # CONFIG_PACKAGE_net-tools-netstat is not set # CONFIG_PACKAGE_net-tools-plipconfig is not set # CONFIG_PACKAGE_net-tools-rarp is not set # CONFIG_PACKAGE_net-tools-slattach is not set # CONFIG_PACKAGE_netcat is not set # CONFIG_PACKAGE_netdiscover is not set # CONFIG_PACKAGE_netdiscover-to-devinfo is not set # CONFIG_PACKAGE_netio is not set # CONFIG_PACKAGE_netperf is not set # CONFIG_PACKAGE_netpipe is not set # CONFIG_PACKAGE_netstat-nat is not set # CONFIG_PACKAGE_ngrep is not set # CONFIG_PACKAGE_noping is not set # CONFIG_PACKAGE_nut is not set # CONFIG_PACKAGE_nuttcp is not set # CONFIG_PACKAGE_nuttcp-xinetd is not set CONFIG_PACKAGE_odhcp6c=y CONFIG_PACKAGE_odhcp6c_ext_cer_id=0 CONFIG_PACKAGE_odhcpd=y CONFIG_PACKAGE_odhcpd_ext_cer_id=0 # CONFIG_PACKAGE_oidentd is not set # CONFIG_PACKAGE_ola is not set # CONFIG_PACKAGE_omcproxy is not set # CONFIG_PACKAGE_openldap-server is not set # CONFIG_PACKAGE_openrrcp is not set # CONFIG_PACKAGE_openslp is not set # CONFIG_PACKAGE_oping is not set # CONFIG_PACKAGE_paris-traceroute is not set # CONFIG_PACKAGE_pen is not set # CONFIG_PACKAGE_pimbd is not set # CONFIG_PACKAGE_pingcheck is not set # CONFIG_PACKAGE_port-mirroring is not set # CONFIG_PACKAGE_portmap is not set # CONFIG_PACKAGE_ppp is not set # CONFIG_PACKAGE_ppp-multilink is not set # CONFIG_PACKAGE_pppossh is not set # CONFIG_PACKAGE_ptrtd is not set # CONFIG_PACKAGE_pyload is not set # CONFIG_PACKAGE_pyrit is not set # CONFIG_PACKAGE_qolyester is not set # CONFIG_PACKAGE_raddump is not set # CONFIG_PACKAGE_radiusclient-ng is not set # CONFIG_PACKAGE_radsecproxy is not set # CONFIG_PACKAGE_radvd is not set # CONFIG_PACKAGE_radvdump is not set # CONFIG_PACKAGE_redsocks is not set # CONFIG_PACKAGE_remserial is not set # CONFIG_PACKAGE_rrs is not set # CONFIG_PACKAGE_rrs-nossl is not set # CONFIG_PACKAGE_rssileds is not set # CONFIG_PACKAGE_rsyslog is not set # CONFIG_PACKAGE_samba36-client is not set # CONFIG_PACKAGE_samba36-server is not set # CONFIG_PACKAGE_scapy is not set # CONFIG_PACKAGE_scdp is not set # CONFIG_PACKAGE_sctp is not set # CONFIG_PACKAGE_sctp-tools is not set # CONFIG_PACKAGE_seafile-ccnet is not set # CONFIG_PACKAGE_seafile-seahub is not set # CONFIG_PACKAGE_seafile-server is not set # CONFIG_PACKAGE_send is not set # CONFIG_PACKAGE_ser2net is not set # CONFIG_PACKAGE_serialoverip is not set # CONFIG_PACKAGE_shadowsocks-libev is not set # CONFIG_PACKAGE_shadowsocks-libev-polarssl is not set # CONFIG_PACKAGE_shat is not set # CONFIG_PACKAGE_slurm is not set # CONFIG_PACKAGE_smartsnmpd is not set # CONFIG_PACKAGE_smtptrapd is not set # CONFIG_PACKAGE_snmp-utils is not set # CONFIG_PACKAGE_snmpd is not set # CONFIG_PACKAGE_snmpd-static is not set # CONFIG_PACKAGE_socat is not set # CONFIG_PACKAGE_softflowd is not set # CONFIG_PACKAGE_soloscli is not set # CONFIG_PACKAGE_sscep is not set # CONFIG_PACKAGE_sslcat is not set # CONFIG_PACKAGE_sslsniff is not set # CONFIG_PACKAGE_sslstrip is not set # CONFIG_PACKAGE_sstp-client is not set # CONFIG_PACKAGE_stun-client is not set # CONFIG_PACKAGE_stund is not set # CONFIG_PACKAGE_stunnel is not set # CONFIG_PACKAGE_synce-dccm is not set # CONFIG_PACKAGE_tayga is not set CONFIG_PACKAGE_tcpdump=y # CONFIG_PACKAGE_tcpdump-mini is not set # CONFIG_PACKAGE_tcptraceroute is not set # CONFIG_PACKAGE_tctool is not set # CONFIG_PACKAGE_tgt is not set # CONFIG_PACKAGE_tor is not set # CONFIG_PACKAGE_tor-fw-helper is not set # CONFIG_PACKAGE_tor-geoip is not set # CONFIG_PACKAGE_totd is not set # CONFIG_PACKAGE_tspc is not set # CONFIG_PACKAGE_tstat is not set # CONFIG_PACKAGE_ttcp is not set # CONFIG_PACKAGE_tunslip6 is not set # CONFIG_PACKAGE_u2pnpd is not set # CONFIG_PACKAGE_ucarp is not set CONFIG_PACKAGE_uclient-fetch=y # CONFIG_PACKAGE_ucspi-tcp is not set # CONFIG_PACKAGE_udpcast is not set # CONFIG_PACKAGE_udpxy is not set # CONFIG_PACKAGE_ulogd is not set # CONFIG_PACKAGE_uob-nomad is not set # CONFIG_PACKAGE_vblade is not set # CONFIG_PACKAGE_veth is not set # CONFIG_PACKAGE_vgp is not set # CONFIG_PACKAGE_vnc-reflector is not set # CONFIG_PACKAGE_vncrepeater is not set # CONFIG_PACKAGE_vnstat is not set # CONFIG_PACKAGE_vti is not set # CONFIG_PACKAGE_wdiag is not set # CONFIG_PACKAGE_whob is not set # CONFIG_PACKAGE_wiviz is not set # CONFIG_PACKAGE_wol is not set # CONFIG_PACKAGE_wpa-cli is not set # CONFIG_PACKAGE_wpa-supplicant is not set # CONFIG_WPA_SUPPLICANT_NO_TIMESTAMP_CHECK is not set CONFIG_WPA_SUPPLICANT_INTERNAL=y # CONFIG_WPA_SUPPLICANT_OPENSSL is not set CONFIG_WPA_RFKILL_SUPPORT=y CONFIG_WPA_MSG_MIN_PRIORITY=3 # CONFIG_DRIVER_WEXT_SUPPORT is not set CONFIG_DRIVER_11N_SUPPORT=y CONFIG_DRIVER_11W_SUPPORT=y # CONFIG_PACKAGE_wpa-supplicant-mesh is not set # CONFIG_PACKAGE_wpa-supplicant-mini is not set # CONFIG_PACKAGE_wpa-supplicant-p2p is not set CONFIG_PACKAGE_wpad=y # CONFIG_PACKAGE_wpad-mesh is not set # CONFIG_PACKAGE_wpad-mini is not set # CONFIG_PACKAGE_wpan-tools is not set # CONFIG_PACKAGE_wprobe-export is not set # CONFIG_PACKAGE_wprobe-util is not set # CONFIG_PACKAGE_wshaper is not set # CONFIG_PACKAGE_wwan is not set # CONFIG_PACKAGE_xinetd is not set # # Sound # # # cmus # # CONFIG_PACKAGE_cmus is not set # CONFIG_PACKAGE_cmus-plugin-oss is not set # CONFIG_PACKAGE_cmus-plugin-pulse is not set # CONFIG_PACKAGE_empcd is not set # CONFIG_PACKAGE_espeak is not set # CONFIG_PACKAGE_faad2 is not set # CONFIG_PACKAGE_flite is not set # CONFIG_PACKAGE_forked-daapd is not set # CONFIG_PACKAGE_ices is not set # CONFIG_PACKAGE_lame is not set # CONFIG_PACKAGE_lame-lib is not set # CONFIG_PACKAGE_listener is not set # CONFIG_PACKAGE_madplay is not set # CONFIG_PACKAGE_madplay-alsa is not set # CONFIG_PACKAGE_mpc is not set # CONFIG_PACKAGE_mpd-mini is not set # CONFIG_PACKAGE_mpdas is not set # CONFIG_PACKAGE_mpg123 is not set # CONFIG_PACKAGE_mt-daapd is not set # CONFIG_PACKAGE_pianobar is not set # CONFIG_PACKAGE_pianod is not set # CONFIG_PACKAGE_pianod-client is not set # CONFIG_PACKAGE_portaudio is not set # CONFIG_PACKAGE_pulseaudio-daemon is not set # CONFIG_PACKAGE_scmpc is not set # CONFIG_PACKAGE_shairplay is not set # CONFIG_PACKAGE_shairport is not set # CONFIG_PACKAGE_shairport-sync-mini is not set # CONFIG_PACKAGE_shairport-sync-openssl is not set # CONFIG_PACKAGE_shairport-sync-polarssl is not set # CONFIG_PACKAGE_shell-fm is not set # CONFIG_PACKAGE_shine is not set # CONFIG_PACKAGE_squeezelite-full is not set # CONFIG_PACKAGE_squeezelite-mini is not set # CONFIG_PACKAGE_svox is not set # CONFIG_PACKAGE_upmpdcli is not set # # Utilities # # # Boot Loaders # # # CPU tools # # CONFIG_PACKAGE_msr-tools is not set # # Compression # # CONFIG_PACKAGE_bzip2 is not set # CONFIG_PACKAGE_unrar is not set # CONFIG_PACKAGE_unzip is not set # CONFIG_PACKAGE_xz-utils is not set # CONFIG_PACKAGE_zip is not set # # Editors # # CONFIG_PACKAGE_joe is not set # CONFIG_PACKAGE_mg is not set # CONFIG_PACKAGE_nano is not set # CONFIG_PACKAGE_vim is not set # CONFIG_PACKAGE_vim-full is not set # CONFIG_PACKAGE_vim-help is not set # CONFIG_PACKAGE_vim-runtime is not set # CONFIG_PACKAGE_zile is not set # # Filesystem # # CONFIG_PACKAGE_acl is not set # CONFIG_PACKAGE_attr is not set # CONFIG_PACKAGE_badblocks is not set # CONFIG_PACKAGE_btrfs-progs is not set # CONFIG_PACKAGE_chattr is not set # CONFIG_PACKAGE_debugfs is not set # CONFIG_PACKAGE_disktype is not set # CONFIG_PACKAGE_dosfsck is not set # CONFIG_PACKAGE_dosfslabel is not set # CONFIG_PACKAGE_dumpe2fs is not set # CONFIG_PACKAGE_e2freefrag is not set # CONFIG_PACKAGE_e2fsprogs is not set # CONFIG_PACKAGE_f2fs-tools is not set # CONFIG_PACKAGE_filefrag is not set # CONFIG_PACKAGE_fuse-utils is not set # CONFIG_PACKAGE_hfsfsck is not set # CONFIG_PACKAGE_lsattr is not set # CONFIG_PACKAGE_mkdosfs is not set # CONFIG_PACKAGE_mkhfs is not set # CONFIG_PACKAGE_ncdu is not set # CONFIG_PACKAGE_nfs-utils is not set # CONFIG_PACKAGE_ntfs-3g is not set # CONFIG_PACKAGE_ntfs-3g-low is not set # CONFIG_PACKAGE_ntfs-3g-utils is not set # CONFIG_PACKAGE_ntfsprogs_ntfs-3g is not set # CONFIG_PACKAGE_owfs is not set # CONFIG_PACKAGE_owshell is not set # CONFIG_PACKAGE_reiserfsprogs is not set # CONFIG_PACKAGE_resize2fs is not set # CONFIG_PACKAGE_sysfsutils is not set # CONFIG_PACKAGE_tune2fs is not set # CONFIG_PACKAGE_xfs-fsck is not set # CONFIG_PACKAGE_xfs-growfs is not set # CONFIG_PACKAGE_xfs-mkfs is not set # # RTKLIB Suite # # CONFIG_PACKAGE_convbin is not set # CONFIG_PACKAGE_pos2kml is not set # CONFIG_PACKAGE_rnx2rtkp is not set # CONFIG_PACKAGE_rtkrcv is not set # CONFIG_PACKAGE_str2str is not set # # SSL # # CONFIG_PACKAGE_certtool is not set # CONFIG_PACKAGE_gnutls-utils is not set # # Sound # # CONFIG_PACKAGE_liblo-utils is not set # # Terminal # # CONFIG_PACKAGE_agetty is not set # CONFIG_PACKAGE_microcom is not set # CONFIG_PACKAGE_minicom is not set # CONFIG_PACKAGE_picocom is not set # CONFIG_PACKAGE_script-utils is not set # CONFIG_PACKAGE_setserial is not set # CONFIG_PACKAGE_setterm is not set # CONFIG_PACKAGE_wall is not set # # backup # # CONFIG_PACKAGE_boxbackup is not set # CONFIG_PACKAGE_rdiff-backup is not set # CONFIG_PACKAGE_rsnapshot is not set # # compression # # CONFIG_PACKAGE_libzip-utils is not set # # database # # CONFIG_PACKAGE_mysql-server is not set # CONFIG_PACKAGE_pgsql-cli is not set # CONFIG_PACKAGE_pgsql-server is not set # CONFIG_PACKAGE_sqlite2-cli is not set # CONFIG_PACKAGE_sqlite3-cli is not set # CONFIG_PACKAGE_unixodbc-tools is not set # # disc # # CONFIG_PACKAGE_blkdiscard is not set # CONFIG_PACKAGE_blkid is not set # CONFIG_PACKAGE_cfdisk is not set # CONFIG_PACKAGE_devio is not set # CONFIG_PACKAGE_fdisk is not set # CONFIG_PACKAGE_findfs is not set # CONFIG_PACKAGE_hd-idle is not set # CONFIG_PACKAGE_hdparm is not set # CONFIG_PACKAGE_lsblk is not set # CONFIG_PACKAGE_lvm2 is not set # CONFIG_PACKAGE_partx-utils is not set # CONFIG_PACKAGE_sdparm is not set # CONFIG_PACKAGE_sfdisk is not set # CONFIG_PACKAGE_swap-utils is not set # CONFIG_PACKAGE_wipefs is not set # # filemanager # # CONFIG_PACKAGE_deco is not set # # zoneinfo # # CONFIG_PACKAGE_zoneinfo-africa is not set # CONFIG_PACKAGE_zoneinfo-asia is not set # CONFIG_PACKAGE_zoneinfo-atlantic is not set # CONFIG_PACKAGE_zoneinfo-australia-nz is not set # CONFIG_PACKAGE_zoneinfo-core is not set # CONFIG_PACKAGE_zoneinfo-europe is not set # CONFIG_PACKAGE_zoneinfo-india is not set # CONFIG_PACKAGE_zoneinfo-northamerica is not set # CONFIG_PACKAGE_zoneinfo-pacific is not set # CONFIG_PACKAGE_zoneinfo-poles is not set # CONFIG_PACKAGE_zoneinfo-simple is not set # CONFIG_PACKAGE_zoneinfo-southamerica is not set # CONFIG_PACKAGE_alsa-utils is not set # CONFIG_PACKAGE_alsa-utils-seq is not set # CONFIG_PACKAGE_alsa-utils-tests is not set # CONFIG_PACKAGE_ap51-flash is not set # CONFIG_PACKAGE_at is not set # CONFIG_PACKAGE_avrdude is not set # CONFIG_PACKAGE_avrusbboot is not set # CONFIG_PACKAGE_bandwidthd is not set # CONFIG_PACKAGE_bandwidthd-pgsql is not set # CONFIG_PACKAGE_banhostlist is not set # CONFIG_PACKAGE_bash is not set # CONFIG_PACKAGE_bash-completion is not set # CONFIG_PACKAGE_bc is not set # CONFIG_PACKAGE_bluez-examples is not set # CONFIG_PACKAGE_boblight-client is not set # CONFIG_PACKAGE_boblight-daemon is not set # CONFIG_PACKAGE_bsdiff is not set # CONFIG_PACKAGE_byobu is not set # CONFIG_PACKAGE_cal is not set # CONFIG_PACKAGE_calcurse is not set # CONFIG_PACKAGE_calvaria is not set # CONFIG_PACKAGE_canutils is not set # CONFIG_PACKAGE_ccrypt is not set # CONFIG_PACKAGE_cdparanoia is not set # CONFIG_PACKAGE_cksfv is not set # CONFIG_PACKAGE_clish is not set # CONFIG_PACKAGE_cmdpad is not set CONFIG_PACKAGE_collectd=y # CONFIG_PACKAGE_COLLECTD_ENCRYPTED_NETWORK is not set # CONFIG_PACKAGE_collectd-mod-apache is not set # CONFIG_PACKAGE_collectd-mod-apcups is not set # CONFIG_PACKAGE_collectd-mod-ascent is not set # CONFIG_PACKAGE_collectd-mod-bind is not set CONFIG_PACKAGE_collectd-mod-conntrack=y # CONFIG_PACKAGE_collectd-mod-contextswitch is not set # CONFIG_PACKAGE_collectd-mod-cpu is not set # CONFIG_PACKAGE_collectd-mod-csv is not set # CONFIG_PACKAGE_collectd-mod-curl is not set # CONFIG_PACKAGE_collectd-mod-df is not set # CONFIG_PACKAGE_collectd-mod-disk is not set # CONFIG_PACKAGE_collectd-mod-dns is not set # CONFIG_PACKAGE_collectd-mod-email is not set CONFIG_PACKAGE_collectd-mod-entropy=y # CONFIG_PACKAGE_collectd-mod-exec is not set # CONFIG_PACKAGE_collectd-mod-filecount is not set # CONFIG_PACKAGE_collectd-mod-fscache is not set CONFIG_PACKAGE_collectd-mod-interface=y CONFIG_PACKAGE_collectd-mod-iptables=y # CONFIG_PACKAGE_collectd-mod-irq is not set CONFIG_PACKAGE_collectd-mod-iwinfo=y CONFIG_PACKAGE_collectd-mod-load=y # CONFIG_PACKAGE_collectd-mod-logfile is not set # CONFIG_PACKAGE_collectd-mod-madwifi is not set # CONFIG_PACKAGE_collectd-mod-memory is not set # CONFIG_PACKAGE_collectd-mod-modbus is not set # CONFIG_PACKAGE_collectd-mod-netlink is not set CONFIG_PACKAGE_collectd-mod-network=y # CONFIG_PACKAGE_collectd-mod-nginx is not set # CONFIG_PACKAGE_collectd-mod-ntpd is not set # CONFIG_PACKAGE_collectd-mod-nut is not set # CONFIG_PACKAGE_collectd-mod-olsrd is not set CONFIG_PACKAGE_collectd-mod-openvpn=y # CONFIG_PACKAGE_collectd-mod-ping is not set # CONFIG_PACKAGE_collectd-mod-postgresql is not set # CONFIG_PACKAGE_collectd-mod-powerdns is not set # CONFIG_PACKAGE_collectd-mod-processes is not set # CONFIG_PACKAGE_collectd-mod-protocols is not set # CONFIG_PACKAGE_collectd-mod-rrdtool is not set # CONFIG_PACKAGE_collectd-mod-sensors is not set # CONFIG_PACKAGE_collectd-mod-snmp is not set # CONFIG_PACKAGE_collectd-mod-syslog is not set # CONFIG_PACKAGE_collectd-mod-table is not set # CONFIG_PACKAGE_collectd-mod-tail is not set CONFIG_PACKAGE_collectd-mod-tcpconns=y # CONFIG_PACKAGE_collectd-mod-teamspeak2 is not set # CONFIG_PACKAGE_collectd-mod-ted is not set # CONFIG_PACKAGE_collectd-mod-thermal is not set # CONFIG_PACKAGE_collectd-mod-unixsock is not set # CONFIG_PACKAGE_collectd-mod-uptime is not set # CONFIG_PACKAGE_collectd-mod-users is not set # CONFIG_PACKAGE_collectd-mod-vmem is not set CONFIG_PACKAGE_collectd-mod-wireless=y # CONFIG_PACKAGE_collectd-mod-write-graphite is not set # CONFIG_PACKAGE_collectd-mod-write-http is not set # CONFIG_PACKAGE_comgt is not set # CONFIG_PACKAGE_comgt-ncm is not set # CONFIG_PACKAGE_coreutils is not set # CONFIG_PACKAGE_cpusage is not set # CONFIG_PACKAGE_crelay is not set # CONFIG_PACKAGE_crypto-tools is not set # CONFIG_PACKAGE_cryptsetup is not set # CONFIG_PACKAGE_cryptsetup-openssl is not set # CONFIG_PACKAGE_daemontools is not set # CONFIG_PACKAGE_dbus is not set # CONFIG_PACKAGE_devmem2 is not set # CONFIG_PACKAGE_dfu-programmer is not set # CONFIG_PACKAGE_dfu-util is not set # CONFIG_PACKAGE_dialog is not set # CONFIG_PACKAGE_digitemp is not set # CONFIG_PACKAGE_digitemp-usb is not set # CONFIG_PACKAGE_dir300-flash is not set # CONFIG_PACKAGE_dmesg is not set # CONFIG_PACKAGE_dropbearconvert is not set # CONFIG_PACKAGE_dstat is not set # CONFIG_PACKAGE_dt is not set # CONFIG_PACKAGE_dtach is not set # CONFIG_PACKAGE_dump1090 is not set # CONFIG_PACKAGE_empty is not set # CONFIG_PACKAGE_event_test is not set # CONFIG_PACKAGE_evtest is not set # CONFIG_PACKAGE_extract is not set # CONFIG_PACKAGE_fancontroled is not set # CONFIG_PACKAGE_fconfig is not set # CONFIG_PACKAGE_file is not set # CONFIG_PACKAGE_flashrom is not set # CONFIG_PACKAGE_flashrom-pci is not set # CONFIG_PACKAGE_flashrom-spi is not set # CONFIG_PACKAGE_flashrom-usb is not set # CONFIG_PACKAGE_flock is not set # CONFIG_PACKAGE_fortune-mod is not set # CONFIG_PACKAGE_fowsr is not set # CONFIG_PACKAGE_freecwmp is not set # CONFIG_PACKAGE_freenetconfd is not set # CONFIG_PACKAGE_freenetconfd-plugin-examples is not set # CONFIG_PACKAGE_freesub is not set # CONFIG_PACKAGE_ftdi_eeprom is not set # CONFIG_PACKAGE_gammu is not set # CONFIG_PACKAGE_gawk is not set # CONFIG_PACKAGE_getopt is not set # CONFIG_PACKAGE_gnokii is not set # CONFIG_PACKAGE_gnupg is not set # CONFIG_PACKAGE_gnuplot is not set # CONFIG_PACKAGE_gpioctl-sysfs is not set # CONFIG_PACKAGE_grep is not set # CONFIG_PACKAGE_gzip is not set # CONFIG_PACKAGE_hamlib is not set # CONFIG_PACKAGE_haserl is not set CONFIG_PACKAGE_haveged=y # CONFIG_PACKAGE_heyu is not set # CONFIG_PACKAGE_hplip is not set # CONFIG_PACKAGE_huaweiaktbbo is not set # CONFIG_PACKAGE_hub-ctrl is not set # CONFIG_PACKAGE_hwclock is not set # CONFIG_PACKAGE_i2c-tools is not set # CONFIG_PACKAGE_iconv is not set # CONFIG_PACKAGE_iioutils is not set # CONFIG_PACKAGE_ink is not set # CONFIG_PACKAGE_input-utils is not set # CONFIG_PACKAGE_io is not set # CONFIG_PACKAGE_ipmitool is not set # CONFIG_PACKAGE_iwcap is not set CONFIG_PACKAGE_iwinfo=y # CONFIG_PACKAGE_jpeg-tools is not set CONFIG_PACKAGE_jshn=y # CONFIG_PACKAGE_klish is not set # CONFIG_PACKAGE_kmemtrace-user is not set # CONFIG_PACKAGE_kmod is not set # CONFIG_PACKAGE_lcd4linux-custom is not set # CONFIG_PACKAGE_lcdproc is not set # CONFIG_PACKAGE_less is not set # CONFIG_PACKAGE_less-wide is not set # CONFIG_PACKAGE_libfreefare-examples is not set CONFIG_PACKAGE_libhavege=y # CONFIG_PACKAGE_libimobiledevice-utils is not set CONFIG_PACKAGE_libjson-script=y # CONFIG_PACKAGE_libplist-utils is not set # CONFIG_PACKAGE_libusbmuxd-utils is not set # CONFIG_PACKAGE_lirc is not set # CONFIG_PACKAGE_lm-sensors is not set # CONFIG_PACKAGE_lm-sensors-detect is not set # CONFIG_PACKAGE_lmbench is not set # CONFIG_PACKAGE_logger is not set # CONFIG_PACKAGE_logrotate is not set # CONFIG_PACKAGE_look is not set # CONFIG_PACKAGE_losetup is not set # CONFIG_PACKAGE_lrzsz is not set # CONFIG_PACKAGE_lsof is not set # CONFIG_PACKAGE_lxc is not set # CONFIG_PACKAGE_maccalc is not set # CONFIG_PACKAGE_macchanger is not set # CONFIG_PACKAGE_mbtools is not set # CONFIG_PACKAGE_mbus-serial is not set # CONFIG_PACKAGE_mbus-tcp is not set # CONFIG_PACKAGE_mc is not set # CONFIG_PACKAGE_mcookie is not set # CONFIG_PACKAGE_md5deep is not set # CONFIG_PACKAGE_mdadm is not set # CONFIG_PACKAGE_memtester is not set # CONFIG_PACKAGE_mgetty is not set # CONFIG_PACKAGE_mmc-utils is not set # CONFIG_PACKAGE_mosh-client is not set # CONFIG_PACKAGE_mosh-server is not set # CONFIG_PACKAGE_mount-utils is not set # CONFIG_PACKAGE_mpack is not set # CONFIG_PACKAGE_mt-st is not set # CONFIG_PACKAGE_mtd-utils is not set # CONFIG_PACKAGE_namei is not set # CONFIG_PACKAGE_nfc-utils is not set # CONFIG_PACKAGE_nprobe is not set # CONFIG_PACKAGE_ocf-crypto-headers is not set # CONFIG_PACKAGE_open-plc-utils is not set # CONFIG_PACKAGE_open2300 is not set # CONFIG_PACKAGE_openldap-utils is not set # CONFIG_PACKAGE_openocd is not set # CONFIG_PACKAGE_opensc-utils is not set # CONFIG_PACKAGE_openssl-util is not set # CONFIG_PACKAGE_opus-tools is not set # CONFIG_PACKAGE_owipcalc is not set # CONFIG_PACKAGE_oww is not set # CONFIG_PACKAGE_pciutils is not set # CONFIG_PACKAGE_pcscd is not set # CONFIG_PACKAGE_pipacs is not set # CONFIG_PACKAGE_powertop is not set # CONFIG_PACKAGE_pps-tools is not set # CONFIG_PACKAGE_prlimit is not set # CONFIG_PACKAGE_procps-ng is not set # CONFIG_PACKAGE_psmisc is not set # CONFIG_PACKAGE_psplash is not set # CONFIG_PACKAGE_pv is not set # CONFIG_PACKAGE_pwcrypt is not set # CONFIG_PACKAGE_pwgen is not set # CONFIG_PACKAGE_px5g is not set # CONFIG_PACKAGE_px5g-standalone is not set # CONFIG_PACKAGE_qrencode is not set # CONFIG_PACKAGE_rcs is not set # CONFIG_PACKAGE_remind is not set # CONFIG_PACKAGE_rename is not set # CONFIG_PACKAGE_rng-tools is not set # CONFIG_PACKAGE_rrdcgi is not set # CONFIG_PACKAGE_rrdcgi1 is not set # CONFIG_PACKAGE_rrdcollect10 is not set # CONFIG_PACKAGE_rrdcollect12 is not set # CONFIG_PACKAGE_rrdtool is not set # CONFIG_PACKAGE_rrdtool1 is not set # CONFIG_PACKAGE_rsyncrypto is not set # CONFIG_PACKAGE_rtl-ais is not set # CONFIG_PACKAGE_rtl-sdr is not set # CONFIG_PACKAGE_sane-backends is not set # CONFIG_PACKAGE_sane-daemon is not set # CONFIG_PACKAGE_sane-frontends is not set # CONFIG_PACKAGE_schedtool is not set # CONFIG_PACKAGE_scponly is not set # CONFIG_PACKAGE_screen is not set # CONFIG_PACKAGE_sed is not set # CONFIG_PACKAGE_serialconsole is not set # CONFIG_PACKAGE_shadow-utils is not set # CONFIG_PACKAGE_shtool is not set # CONFIG_PACKAGE_sispmctl is not set # CONFIG_PACKAGE_smartd is not set # CONFIG_PACKAGE_smartmontools is not set # CONFIG_PACKAGE_smstools3 is not set # CONFIG_PACKAGE_sockread is not set # CONFIG_PACKAGE_spi-tools is not set # CONFIG_PACKAGE_spidev-test is not set # CONFIG_PACKAGE_squashfs-tools-mksquashfs is not set # CONFIG_PACKAGE_squashfs-tools-unsquashfs is not set # CONFIG_PACKAGE_ssldump is not set # CONFIG_PACKAGE_stm32flash is not set # CONFIG_PACKAGE_stoken is not set # CONFIG_PACKAGE_strace is not set # CONFIG_PACKAGE_stress is not set # CONFIG_PACKAGE_sumo is not set # CONFIG_PACKAGE_sysstat is not set # CONFIG_PACKAGE_tar is not set # CONFIG_PACKAGE_taskwarrior is not set # CONFIG_PACKAGE_tcpser is not set # CONFIG_PACKAGE_tcsh is not set # CONFIG_PACKAGE_tesseract is not set # CONFIG_PACKAGE_tiff-utils is not set # CONFIG_PACKAGE_time is not set # CONFIG_PACKAGE_tmux is not set # CONFIG_PACKAGE_tracertools is not set # CONFIG_PACKAGE_triggerhappy is not set # CONFIG_PACKAGE_uboot-envtools is not set # CONFIG_PACKAGE_ugps is not set # CONFIG_PACKAGE_upx is not set # CONFIG_PACKAGE_usb-modeswitch is not set # CONFIG_PACKAGE_usbmuxd is not set # CONFIG_PACKAGE_usbreset is not set # CONFIG_PACKAGE_usbutils is not set # CONFIG_PACKAGE_uuidd is not set # CONFIG_PACKAGE_uuidgen is not set # CONFIG_PACKAGE_uvcdynctrl is not set # CONFIG_PACKAGE_v4l-utils is not set # CONFIG_PACKAGE_view1090 is not set # CONFIG_PACKAGE_watchcat is not set # CONFIG_PACKAGE_wattsup is not set # CONFIG_PACKAGE_whereis is not set # CONFIG_PACKAGE_whiptail is not set # CONFIG_PACKAGE_wifitoggle is not set # CONFIG_PACKAGE_wview is not set # CONFIG_PACKAGE_wx200d is not set # CONFIG_PACKAGE_xdelta3 is not set # CONFIG_PACKAGE_xsltproc is not set # CONFIG_PACKAGE_xxd is not set # CONFIG_PACKAGE_yanglint is not set # CONFIG_PACKAGE_yunbridge is not set # CONFIG_PACKAGE_zsh is not set # # Video Streaming # # CONFIG_PACKAGE_openrtsp is not set # # Xorg # # # libraries # # CONFIG_PACKAGE_orbit2 is not set CONFIG_OVERRIDE_PKGS="bsdiff" |
Máme-li nastaveno a zkompilováno, můžeme přistoupit k dalšímu kroku. Tím je přidání konfiguračního parametru do přeloženého jádra.
Přeložené jádro openwrt-rb532-vmlinux-kernel
nalezneme v adresáři bin/rb532
OpenWRT. Spolu s ním je zde umístěn soubor openwrt-rb532-rootfs.tar.gz
, který obsahuje kořenový adresář se všemi přeloženými balíčky.
NAND Flash RB512 je rozdělena na dvě logické části. To proto, že zavaděč RouterBOOT (BIOS) očekává v první (mtdblock0) jádro a ve druhé (mtdblock1) rootfs
. Rozdělení je popsáno na stránkách OpenWRT věnující se konkrétně RB532. My potřebujeme jádro instruovat, kde má rootfs
hledat. Za tímto účelem je k dispozici jaderný parametr root=
. Pro jeho zapsání do jádra slouží nástroj objcopy
, který je pro každou architekturu CPU jiný.
Než jej použijeme, musíme ho v systému najít. Díky tomu, že se nám povedlo jádro přeložit, je k dispozici i objcopy
pro MIPS32/mipsel.
1 2 3 4 5 6 7 |
[builder@builder openwrt]$ find /data/builder/openwrt/ -name objcopy /data/builder/openwrt/staging_dir/toolchain-mipsel_mips32_gcc-5.3.0_musl-1.1.14/initial/mipsel-openwrt-linux-musl/bin/objcopy /data/builder/openwrt/staging_dir/toolchain-mipsel_mips32_gcc-5.3.0_musl-1.1.14/mipsel-openwrt-linux-musl/bin/objcopy /data/builder/openwrt/staging_dir/toolchain-mips_34kc_gcc-5.3.0_musl-1.1.14/initial/mips-openwrt-linux-musl/bin/objcopy /data/builder/openwrt/staging_dir/toolchain-mips_34kc_gcc-5.3.0_musl-1.1.14/mips-openwrt-linux-musl/bin/objcopy /data/builder/openwrt/build_dir/toolchain-mipsel_mips32_gcc-5.3.0_musl-1.1.14/binutils-2.25.1/binutils/objcopy /data/builder/openwrt/build_dir/toolchain-mips_34kc_gcc-5.3.0_musl-1.1.14/binutils-2.25.1/binutils/objcopy |
Vybereme např. /data/builder/openwrt/staging_dir/toolchain-mipsel_mips32_gcc-5.3.0_musl-1.1.14/initial/mipsel-openwrt-linux-musl/bin/objcopy
. Můžeme použít i jiný, ale vždy je důležité zvolit správnou architekturu (MIPS32/mipsel = mipsel_mips32).
Nyní vytvoříme v adresáři s jádrem soubor kernel.params:
1 |
root=/dev/mtdblock1 |
a připojíme jeho obsah k souboru s jádrem:
1 |
[builder@builder rb532]$ /data/builder/openwrt/staging_dir/toolchain-mipsel_mips32_gcc-5.3.0_musl-1.1.14/initial/mipsel-openwrt-linux-musl/bin/objcopy --add-section kernparm=kernel.params openwrt-rb532-vmlinux-kernel |
V tuto chvíli máme připraveno jádro k instalaci do NAND Flash RB512.
Jádro openwrt-rb532-vmlinux-kernel
spolu se souborem openwrt-rb532-rootfs.tar.gz
překopírujeme na web server.
Instalační obraz OpenWRT
Pro instalaci potřebujeme na RB512 spustit nějaký funkční obraz s potřebnými nástroji. Můžeme např. použít openwrt-rb532-vmlinux-initramfs.elf z wifi.ozo.com – lokálně. Soubor je z roku 2015, ale pro nastartování prostředí pro instalaci postačí.
DHCP a TFTP server
Obraz openwrt-rb532-vmlinux-initramfs.elf z wifi.ozo.com (z předchozího odstavce) překopírujeme na náš TFTP server. O jeho instalaci se zmiňovat nebudu.
V konfiguračním souboru pro DHCP (viz Síťová infrastruktura pro domácí prostředí a malé firmy (SOHO) – síťové služby 2) musíme nastavit možnost stažení spustitelného obrazu OpenWRT z TFTP serveru:
1 2 3 4 5 6 7 |
host rb512 { ddns-hostname "rb512"; next-server 10.11.1.253; filename "openwrt-rb532-vmlinux-initramfs.elf"; hardware ethernet 00:0c:42:06:aa:bc; fixed-address 10.11.1.12; } |
Nastavení RB512 pro start ze sítě
RB512 podporuje start ze sítě pomocí protokolů DHCP a BOOTP.
V tomto kroku provedeme nastavení startu z DHCP.
Připojíme se přes sériový port a po připojení napájecího napětí k RB512 stiskneme na PC jakoukoli klávesu:
1 2 3 4 5 6 7 8 |
RouterBOOT booter 2.18 RouterBoard 512 CPU frequency: 330 MHz Memory size: 32 MB Press any key within 2 seconds to enter setup |
Změníme zařízení určené pro start systému:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
RouterBOOT-2.18 What do you want to configure? d - boot delay k - boot key s - serial console o - boot device u - cpu mode f - try cpu frequency c - keep cpu frequency r - reset booter configuration e - format nand g - upgrade firmware i - board info p - boot protocol t - do memory testing x - exit setup your choice: o - boot device |
Start z NAND Flash, v případě problému ze sítě – DHCP:
1 2 3 4 5 6 7 8 9 |
Select boot device: e - boot over Ethernet * n - boot from NAND, if fail then Ethernet c - boot from CompactFlash only 1 - boot Ethernet once, then NAND 2 - boot Ethernet once, then CompactFlash o - boot from NAND only b - boot chosen device your choice: n - boot from NAND, if fail then Ethernet |
Následně vymažeme NAND Flash, proto je pro nás tato volba dostačující.
Vymazání NAND Flash
Při připojení přes sériový port vymažeme původní RouterOS:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
RouterBOOT-2.18 What do you want to configure? d - boot delay k - boot key s - serial console o - boot device u - cpu mode f - try cpu frequency c - keep cpu frequency r - reset booter configuration e - format nand g - upgrade firmware i - board info p - boot protocol t - do memory testing x - exit setup your choice: e - format nand Do you realy want to format your nand? that would result in losing all your data type "yes" to confirm: yes formatting nand... done! |
Pokud máme připravený obraz OpenWRT na TFTP serveru a nastaven a restartován DHCP server, ukončíme RouterBOOT:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
RouterBOOT-2.18 What do you want to configure? d - boot delay k - boot key s - serial console o - boot device u - cpu mode f - try cpu frequency c - keep cpu frequency r - reset booter configuration e - format nand g - upgrade firmware i - board info p - boot protocol t - do memory testing x - exit setup your choice: x - exit setup |
Start instalačního obrazu
V tuto chvíli by měla být z DHCP serveru získána IP adresa a umístění instalačního obrazu:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
RouterBOOT booter 2.18 RouterBoard 512 CPU frequency: 330 MHz Memory size: 32 MB Press any key within 2 seconds to enter setup.. kernel not found trying bootp protocol... OK Got IP address: 10.11.1.12 resolved mac address B8:27:EB:E8:AA:BC Gateway: 10.11.1.253 *transfer started ........................ transfer ok, time=3.49s setting up elf image... OK |
Pokud nedostaneme IP adresu nastevenou v nové konfiguraci DHCP serveru, překontrolujeme ji znovu.
Pokud nebyl stažen instalační obraz nebo nebyl rozpoznán, překonfigurujeme DHCP server a TFTP.
V případě, že vše proběhlo v pořádku, uvidíme start OpenWRT:
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 |
jumping to kernel code Linux version 4.1.15 (alex@aifnis) (gcc version 5.2.0 (OpenWrt GCC 5.2.0 r48014) ) #18 Tue Dec 29 15:58:44 EET 2015 CPU0 revision is: 0001800a (MIPS 4Kc) Determined physical RAM map: memory: 47fe79fc @ b8018400 (usable) memory: 00245000 @ 00101000 (usable) memory: 000da000 @ 00346000 (usable after init) User-defined physical RAM map: memory: 02000000 @ 00000000 (usable) Initrd not found or empty - disabling initrd Zone ranges: Normal [mem 0x0000000000000000-0x0000000001ffffff] Movable zone start for each node Early memory node ranges node 0: [mem 0x0000000000000000-0x0000000001ffffff] Initmem setup node 0 [mem 0x0000000000000000-0x0000000001ffffff] Primary instruction cache 8kB, VIPT, 4-way, linesize 16 bytes. Primary data cache 8kB, 4-way, VIPT, no aliases, linesize 16 bytes Built 1 zonelists in Zone order, mobility grouping on. Total pages: 8128 Kernel command line: console=ttyS0,115200 gpio=16383 mem=32M kmac=00:0C:42:06:0E:FF board=500 boot=1 korina mac = 00:0C:42:06:0E:FF PID hash table entries: 128 (order: -3, 512 bytes) Dentry cache hash table entries: 4096 (order: 2, 16384 bytes) Inode-cache hash table entries: 2048 (order: 1, 8192 bytes) Memory: 28148K/32768K available (2010K kernel code, 114K rwdata, 192K rodata, 872K init, 65K bss, 4620K reserved, 0K cma-reserved) SLUB: HWalign=16, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 NR_IRQS:256 Initializing IRQ's: 168 out of 256 calculating r4koff... 000a1220(660000) CPU frequency 330.00 MHz clocksource MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 11583396645 ns sched_clock: 32 bits at 165MHz, resolution 6ns, wraps every 13015052284ns Calibrating delay loop... 327.42 BogoMIPS (lpj=654848) pid_max: default: 32768 minimum: 301 Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns NET: Registered protocol family 16 PCI: Initializing PCI PCI host bridge to bus 0000:00 pci_bus 0000:00: root bus resource [mem 0x50000000-0x5fffffff] pci_bus 0000:00: root bus resource [io 0x18800000-0x188fffff] pci_bus 0000:00: root bus resource [??? 0x00000000 flags 0x0] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff] pci 0000:00:00.0: [Firmware Bug]: reg 0x14: invalid BAR (can't size) pci 0000:00:00.0: [Firmware Bug]: reg 0x18: invalid BAR (can't size) pci 0000:00:04.0: BAR 0: assigned [mem 0x50000000-0x5000ffff] pci 0000:00:05.0: BAR 0: assigned [mem 0x50010000-0x5001ffff] Switched to clocksource MIPS NET: Registered protocol family 2 TCP established hash table entries: 1024 (order: 0, 4096 bytes) TCP bind hash table entries: 1024 (order: 0, 4096 bytes) TCP: Hash tables configured (established 1024 bind 1024) UDP hash table entries: 256 (order: 0, 4096 bytes) UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) NET: Registered protocol family 1 futex hash table entries: 256 (order: -1, 3072 bytes) io scheduler noop registered io scheduler deadline registered (default) Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled serial8250: ttyS0 at MMIO 0x0 (irq = 104, base_baud = 10312500) is a 16550A console [ttyS0] enabled console [ttyS0] disabled Linux version 4.1.15 (alex@aifnis) (gcc version 5.2.0 (OpenWrt GCC 5.2.0 r48014) ) #18 Tue Dec 29 15:58:44 EET 2015 CPU0 revision is: 0001800a (MIPS 4Kc) Determined physical RAM map: memory: 47fe79fc @ b8018400 (usable) memory: 00245000 @ 00101000 (usable) memory: 000da000 @ 00346000 (usable after init) User-defined physical RAM map: memory: 02000000 @ 00000000 (usable) Initrd not found or empty - disabling initrd Zone ranges: Normal [mem 0x0000000000000000-0x0000000001ffffff] Movable zone start for each node Early memory node ranges node 0: [mem 0x0000000000000000-0x0000000001ffffff] Initmem setup node 0 [mem 0x0000000000000000-0x0000000001ffffff] Primary instruction cache 8kB, VIPT, 4-way, linesize 16 bytes. Primary data cache 8kB, 4-way, VIPT, no aliases, linesize 16 bytes Built 1 zonelists in Zone order, mobility grouping on. Total pages: 8128 Kernel command line: console=ttyS0,115200 gpio=16383 mem=32M kmac=00:0C:42:06:0E:FF board=500 boot=1 korina mac = 00:0C:42:06:0E:FF PID hash table entries: 128 (order: -3, 512 bytes) Dentry cache hash table entries: 4096 (order: 2, 16384 bytes) Inode-cache hash table entries: 2048 (order: 1, 8192 bytes) Memory: 28148K/32768K available (2010K kernel code, 114K rwdata, 192K rodata, 872K init, 65K bss, 4620K reserved, 0K cma-reserved) SLUB: HWalign=16, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 NR_IRQS:256 Initializing IRQ's: 168 out of 256 calculating r4koff... 000a1220(660000) CPU frequency 330.00 MHz clocksource MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 11583396645 ns sched_clock: 32 bits at 165MHz, resolution 6ns, wraps every 13015052284ns Calibrating delay loop... 327.42 BogoMIPS (lpj=654848) pid_max: default: 32768 minimum: 301 Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns NET: Registered protocol family 16 PCI: Initializing PCI PCI host bridge to bus 0000:00 pci_bus 0000:00: root bus resource [mem 0x50000000-0x5fffffff] pci_bus 0000:00: root bus resource [io 0x18800000-0x188fffff] pci_bus 0000:00: root bus resource [??? 0x00000000 flags 0x0] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff] pci 0000:00:00.0: [Firmware Bug]: reg 0x14: invalid BAR (can't size) pci 0000:00:00.0: [Firmware Bug]: reg 0x18: invalid BAR (can't size) pci 0000:00:04.0: BAR 0: assigned [mem 0x50000000-0x5000ffff] pci 0000:00:05.0: BAR 0: assigned [mem 0x50010000-0x5001ffff] Switched to clocksource MIPS NET: Registered protocol family 2 TCP established hash table entries: 1024 (order: 0, 4096 bytes) TCP bind hash table entries: 1024 (order: 0, 4096 bytes) TCP: Hash tables configured (established 1024 bind 1024) UDP hash table entries: 256 (order: 0, 4096 bytes) UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) NET: Registered protocol family 1 futex hash table entries: 256 (order: -1, 3072 bytes) io scheduler noop registered io scheduler deadline registered (default) Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled serial8250: ttyS0 at MMIO 0x0 (irq = 104, base_baud = 10312500) is a 16550A console [ttyS0] enabled console [ttyS0] disabled serial8250.0: ttyS0 at MMIO 0x0 (irq = 104, base_baud = 10312500) is a 16550A console [ttyS0] enabled nand: device found, Manufacturer ID: 0xad, Chip ID: 0xf1 nand: Hynix NAND 128MiB 3,3V 8-bit nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 Scanning device for bad blocks Bad eraseblock 512 at 0x000004000000 Bad eraseblock 617 at 0x000004d20000 Creating 2 MTD partitions on "gen_nand": 0x000000000000-0x000000400000 : "Routerboard NAND boot" 0x000000400000-0x000008000000 : "rootfs_onboard" eth0: korina-0.10 04Mar2008 NET: Registered protocol family 17 Freeing unused kernel memory: 872K (80346000 - 80420000) init: Console is alive init: - preinit - Press the [f] key and hit [enter] to enter failsafe mode Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level procd: - early - procd: - ubus - random: ubusd urandom read with 37 bits of entropy available procd: - init - Please press Enter to activate this console. random: nonblocking pool is initialized BusyBox v1.24.1 (2015-12-28 16:49:38 EET) built-in shell (ash) _______ ________ __ | |.-----.-----.-----.| | | |.----.| |_ | - || _ | -__| || | | || _|| _| |_______|| __|_____|__|__||________||__| |____| |__| W I R E L E S S F R E E D O M ----------------------------------------------------- DESIGNATED DRIVER (Bleeding Edge, r48014) ----------------------------------------------------- * 2 oz. Orange Juice Combine all juices in a * 2 oz. Pineapple Juice tall glass filled with * 2 oz. Grapefruit Juice ice, stir well. * 2 oz. Cranberry Juice ----------------------------------------------------- root@OpenWrt:/# |
Instalace OpenWRT do NAND Flash
Jakmile je systém nastartován, připojíme první logickou část NAND Flash do adresáře /mnt:
1 2 3 4 5 |
root@OpenWrt:/# mount /dev/mtdblock0 /mnt yaffs: dev is 32505856 name is "mtdblock0" rw yaffs: passed flags "" root@OpenWrt:/# cd /mnt |
Z našeho web serveru stáhneme nově zkompilované jádro a nastavíme jej jako spustitelné:
1 2 3 4 5 |
root@OpenWrt:/mnt# wget -O kernel 10.11.1.253/openwrt-rb532-vmlinux-kernel Connecting to 10.11.1.253 (10.11.1.253:80) kernel 100% |*******************************| 1389k 0:00:00 ETA root@OpenWrt:/mnt# chmod +x kernel |
Odpojíme NAND Flash:
1 2 3 |
root@OpenWrt:/mnt# cd / root@OpenWrt:/# umount /mnt |
Podobně připojíme druhou logickou část NAND Flash:
1 2 3 4 5 |
root@OpenWrt:/# mount /dev/mtdblock1 /mnt yaffs: dev is 32505857 name is "mtdblock1" rw yaffs: passed flags "" root@OpenWrt:/# cd /mnt |
Stáhneme a rozbalíme rootfs:
1 2 3 4 5 6 7 8 9 |
root@OpenWrt:/mnt# wget 10.11.1.253/openwrt-rb532-rootfs.tar.gz Connecting to 10.11.1.253 (10.11.1.253:80) openwrt-rb532-rootfs 100% |*******************************| 4417k 0:00:00 ETA root@OpenWrt:/mnt# gunzip openwrt-rb532-rootfs.tar.gz root@OpenWrt:/mnt# tar xf openwrt-rb532-rootfs.tar root@OpenWrt:/mnt# rm openwrt-rb532-rootfs.tar |
Odpojíme NAND Flash:
1 2 3 |
root@OpenWrt:/mnt# cd / root@OpenWrt:/# umount /mnt |
Provedeme restart:
1 2 3 4 |
root@OpenWrt:/# sync root@OpenWrt:/# reboot reboot: Restarting system |
Nově nainstalovaný a spuštěný systém
Pokud vše proběhlo bez problému, máme k dispozici námi přeložený operační systém OpenWRT:
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 |
RouterBOOT booter 2.18 RouterBoard 512 CPU frequency: 330 MHz Memory size: 32 MB Press any key within 2 seconds to enter setup.. loading kernel from nand... OK setting up elf image... OK jumping to kernel code [ 0.000000] Linux version 4.1.20 (builder@builder.brichacek.net) (gcc version 5.3.0 (OpenWrt GCC 5.3.0 r49195) ) #8 Wed Apr 20 14:45:47 UTC 2016 [ 0.000000] CPU0 revision is: 0001800a (MIPS 4Kc) [ 0.000000] Determined physical RAM map: [ 0.000000] memory: 47fe79fc @ b8018400 (usable) [ 0.000000] memory: 0040e000 @ 00101000 (usable) [ 0.000000] memory: 00031000 @ 0050f000 (usable after init) [ 0.000000] User-defined physical RAM map: [ 0.000000] memory: 02000000 @ 00000000 (usable) [ 0.000000] Initrd not found or empty - disabling initrd [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000000000000-0x0000000001ffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000001ffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000001ffffff] [ 0.000000] Primary instruction cache 8kB, VIPT, 4-way, linesize 16 bytes. [ 0.000000] Primary data cache 8kB, 4-way, VIPT, no aliases, linesize 16 bytes [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 8128 [ 0.000000] Kernel command line: root=/dev/mtdblock1 console=ttyS0,115200 gpio=16383 mem=32M kmac=00:0C:42:06:0E:FF board=500 boot=1 [ 0.000000] korina mac = 00:0C:42:06:0E:FF [ 0.000000] PID hash table entries: 128 (order: -3, 512 bytes) [ 0.000000] Dentry cache hash table entries: 4096 (order: 2, 16384 bytes) [ 0.000000] Inode-cache hash table entries: 2048 (order: 1, 8192 bytes) [ 0.000000] Memory: 26852K/32768K available (3263K kernel code, 142K rwdata, 736K rodata, 196K init, 195K bss, 5916K reserved, 0K cma-reserved) [ 0.000000] NR_IRQS:256 [ 0.000000] Initializing IRQ's: 168 out of 256 [ 0.000000] calculating r4koff... 000a1220(660000) [ 0.000000] CPU frequency 330.00 MHz [ 0.000000] clocksource MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 11583396645 ns [ 0.000037] sched_clock: 32 bits at 165MHz, resolution 6ns, wraps every 13015052284ns [ 0.000827] Calibrating delay loop... 328.70 BogoMIPS (lpj=657408) [ 0.036375] pid_max: default: 32768 minimum: 301 [ 0.037332] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.037428] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.045072] devtmpfs: initialized [ 0.048093] clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.051657] NET: Registered protocol family 16 [ 0.057105] PCI: Initializing PCI [ 0.116953] SCSI subsystem initialized [ 0.120023] PCI host bridge to bus 0000:00 [ 0.120116] pci_bus 0000:00: root bus resource [mem 0x50000000-0x5fffffff] [ 0.120194] pci_bus 0000:00: root bus resource [io 0x18800000-0x188fffff] [ 0.120270] pci_bus 0000:00: root bus resource [??? 0x00000000 flags 0x0] [ 0.120339] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff] [ 0.146486] pci 0000:00:00.0: [Firmware Bug]: reg 0x14: invalid BAR (can't size) [ 0.146567] pci 0000:00:00.0: [Firmware Bug]: reg 0x18: invalid BAR (can't size) [ 0.742119] pci 0000:00:04.0: BAR 0: assigned [mem 0x50000000-0x5000ffff] [ 0.742232] pci 0000:00:05.0: BAR 0: assigned [mem 0x50010000-0x5001ffff] [ 0.744942] Switched to clocksource MIPS [ 0.758369] NET: Registered protocol family 2 [ 0.760856] TCP established hash table entries: 1024 (order: 0, 4096 bytes) [ 0.761078] TCP bind hash table entries: 1024 (order: 0, 4096 bytes) [ 0.761168] TCP: Hash tables configured (established 1024 bind 1024) [ 0.761469] UDP hash table entries: 256 (order: 0, 4096 bytes) [ 0.761579] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) [ 0.762470] NET: Registered protocol family 1 [ 0.766933] futex hash table entries: 256 (order: -1, 3072 bytes) [ 0.775974] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.776075] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.783355] io scheduler noop registered [ 0.783455] io scheduler deadline registered (default) [ 0.784581] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 0.805238] serial8250: ttyS0 at MMIO 0x0 (irq = 104, base_baud = 10312500) is a 16550A [ 1.235338] console [ttyS0] enabled [ 1.242360] console [ttyS0] disabled [ 0.000000] Linux version 4.1.20 (builder@builder.brichacek.net) (gcc version 5.3.0 (OpenWrt GCC 5.3.0 r49195) ) #8 Wed Apr 20 14:45:47 UTC 2016 [ 0.000000] CPU0 revision is: 0001800a (MIPS 4Kc) [ 0.000000] Determined physical RAM map: [ 0.000000] memory: 47fe79fc @ b8018400 (usable) [ 0.000000] memory: 0040e000 @ 00101000 (usable) [ 0.000000] memory: 00031000 @ 0050f000 (usable after init) [ 0.000000] User-defined physical RAM map: [ 0.000000] memory: 02000000 @ 00000000 (usable) [ 0.000000] Initrd not found or empty - disabling initrd [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000000000000-0x0000000001ffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000001ffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000001ffffff] [ 0.000000] Primary instruction cache 8kB, VIPT, 4-way, linesize 16 bytes. [ 0.000000] Primary data cache 8kB, 4-way, VIPT, no aliases, linesize 16 bytes [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 8128 [ 0.000000] Kernel command line: root=/dev/mtdblock1 console=ttyS0,115200 gpio=16383 mem=32M kmac=00:0C:42:06:0E:FF board=500 boot=1 [ 0.000000] korina mac = 00:0C:42:06:0E:FF [ 0.000000] PID hash table entries: 128 (order: -3, 512 bytes) [ 0.000000] Dentry cache hash table entries: 4096 (order: 2, 16384 bytes) [ 0.000000] Inode-cache hash table entries: 2048 (order: 1, 8192 bytes) [ 0.000000] Memory: 26852K/32768K available (3263K kernel code, 142K rwdata, 736K rodata, 196K init, 195K bss, 5916K reserved, 0K cma-reserved) [ 0.000000] NR_IRQS:256 [ 0.000000] Initializing IRQ's: 168 out of 256 [ 0.000000] calculating r4koff... 000a1220(660000) [ 0.000000] CPU frequency 330.00 MHz [ 0.000000] clocksource MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 11583396645 ns [ 0.000037] sched_clock: 32 bits at 165MHz, resolution 6ns, wraps every 13015052284ns [ 0.000827] Calibrating delay loop... 328.70 BogoMIPS (lpj=657408) [ 0.036375] pid_max: default: 32768 minimum: 301 [ 0.037332] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.037428] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.045072] devtmpfs: initialized [ 0.048093] clocksource jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.051657] NET: Registered protocol family 16 [ 0.057105] PCI: Initializing PCI [ 0.116953] SCSI subsystem initialized [ 0.120023] PCI host bridge to bus 0000:00 [ 0.120116] pci_bus 0000:00: root bus resource [mem 0x50000000-0x5fffffff] [ 0.120194] pci_bus 0000:00: root bus resource [io 0x18800000-0x188fffff] [ 0.120270] pci_bus 0000:00: root bus resource [??? 0x00000000 flags 0x0] [ 0.120339] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff] [ 0.146486] pci 0000:00:00.0: [Firmware Bug]: reg 0x14: invalid BAR (can't size) [ 0.146567] pci 0000:00:00.0: [Firmware Bug]: reg 0x18: invalid BAR (can't size) [ 0.742119] pci 0000:00:04.0: BAR 0: assigned [mem 0x50000000-0x5000ffff] [ 0.742232] pci 0000:00:05.0: BAR 0: assigned [mem 0x50010000-0x5001ffff] [ 0.744942] Switched to clocksource MIPS [ 0.758369] NET: Registered protocol family 2 [ 0.760856] TCP established hash table entries: 1024 (order: 0, 4096 bytes) [ 0.761078] TCP bind hash table entries: 1024 (order: 0, 4096 bytes) [ 0.761168] TCP: Hash tables configured (established 1024 bind 1024) [ 0.761469] UDP hash table entries: 256 (order: 0, 4096 bytes) [ 0.761579] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) [ 0.762470] NET: Registered protocol family 1 [ 0.766933] futex hash table entries: 256 (order: -1, 3072 bytes) [ 0.775974] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.776075] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.783355] io scheduler noop registered [ 0.783455] io scheduler deadline registered (default) [ 0.784581] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 0.805238] serial8250: ttyS0 at MMIO 0x0 (irq = 104, base_baud = 10312500) is a 16550A [ 1.235338] console [ttyS0] enabled [ 1.242360] console [ttyS0] disabled [ 1.266606] serial8250.0: ttyS0 at MMIO 0x0 (irq = 104, base_baud = 10312500) is a 16550A [ 1.713883] console [ttyS0] enabled [ 1.727559] scsi host0: pata-rb532-cf [ 1.732653] ata1: PATA max PIO4 irq 149 [ 1.738596] nand: device found, Manufacturer ID: 0xad, Chip ID: 0xf1 [ 1.745773] nand: Hynix NAND 128MiB 3,3V 8-bit [ 1.750829] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 [ 1.759366] Scanning device for bad blocks [ 1.816508] Bad eraseblock 512 at 0x000004000000 [ 1.832471] Bad eraseblock 617 at 0x000004d20000 [ 1.884311] Creating 2 MTD partitions on "gen_nand": [ 1.889969] 0x000000000000-0x000000400000 : "Routerboard NAND boot" [ 1.901907] 0x000000400000-0x000008000000 : "rootfs_onboard" [ 1.917483] eth0: korina-0.10 04Mar2008 [ 1.922781] rc32434_wdt: Stopped watchdog timer [ 1.932841] rc32434_wdt: Watchdog Timer version 1.0, timer margin: 20 sec [ 1.942862] NET: Registered protocol family 10 [ 1.954459] NET: Registered protocol family 17 [ 1.959752] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this. [ 1.973903] 8021q: 802.1Q VLAN Support v1.8 [ 2.038200] yaffs: dev is 32505857 name is "mtdblock1" ro [ 2.044298] yaffs: passed flags "" [ 2.104688] VFS: Mounted root (yaffs filesystem) readonly on device 31:1. [ 2.120854] devtmpfs: mounted [ 2.125314] Freeing unused kernel memory: 196K (8050f000 - 80540000) failed to find a module named zram failed to find a module named ext4 [ 3.370351] init: Can't open /sys/block/zram0/disksize: No such file or directory [ 3.379593] init: Console is alive [ 3.383893] rc32434_wdt: Started watchdog timer [ 3.389266] init: - watchdog - [ 3.392759] rc32434_wdt: timeout value must be between 0 and 26 [ 3.481361] init: - preinit - Press the [f] key and hit [enter] to enter failsafe mode Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level [ 6.940803] mount_root: mounting /dev/root [ 6.973427] procd: - early - [ 6.977028] procd: - watchdog - [ 6.980617] rc32434_wdt: timeout value must be between 0 and 26 [ 7.605893] procd: - ubus - [ 7.664423] random: ubusd urandom read with 28 bits of entropy available [ 7.678423] procd: - init - Please press Enter to activate this console. [ 9.011127] tun: Universal TUN/TAP device driver, 1.6 [ 9.016857] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com> [ 9.036756] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 9.080653] input: rb532 button as /devices/platform/rb532-button/input/input0 [ 9.110277] Loading modules backported from Linux version v4.4-rc5-1913-gc8fdf68 [ 9.118602] Backport generated by backports.git backports-20151218-0-g2f58d9d [ 9.133738] ip_tables: (C) 2000-2006 Netfilter Core Team [ 9.162761] nf_conntrack version 0.5.0 (422 buckets, 1688 max) [ 9.207185] Netfilter messages via NETLINK v0.30. [ 9.288182] xt_time: kernel timezone is -0000 [ 9.489757] ctnetlink v0.93: registering with nfnetlink. [ 9.526041] PCI: Enabling device 0000:00:04.0 (0000 -> 0002) [ 9.532832] ath5k 0000:00:04.0: registered as 'phy0' [ 13.984286] ath5k: phy0: Atheros AR5213A chip found (MAC: 0x59, PHY: 0x43) [ 13.992058] ath5k: phy0: RF5112B multiband radio found (0x36) [ 13.998983] PCI: Enabling device 0000:00:05.0 (0000 -> 0002) [ 14.005776] ath5k 0000:00:05.0: registered as 'phy1' [ 18.416217] ath5k: phy1: Atheros AR5213A chip found (MAC: 0x59, PHY: 0x43) [ 18.423983] ath5k: phy1: RF5112B multiband radio found (0x36) [ 33.477115] random: nonblocking pool is initialized BusyBox v1.24.2 () built-in shell (ash) _______ ________ __ | |.-----.-----.-----.| | | |.----.| |_ | - || _ | -__| || | | || _|| _| |_______|| __|_____|__|__||________||__| |____| |__| W I R E L E S S F R E E D O M ----------------------------------------------------- DESIGNATED DRIVER (Bleeding Edge, r49195) ----------------------------------------------------- * 2 oz. Orange Juice Combine all juices in a * 2 oz. Pineapple Juice tall glass filled with * 2 oz. Grapefruit Juice ice, stir well. * 2 oz. Cranberry Juice ----------------------------------------------------- root@OpenWrt:/# |
Závěr
Popravdě, trvalo mi docela dlouho, než jsem úspěšně nainstaloval OpenWRT do NAND Flash. Ono není problém přeložit systém ze zdrojových kódů, ale protože není určen primárně pro RB512, ale pro RB532, očekává se instalace na CompactFlash, která u RB512 bohužel chybí.
Pokud chceme provést update, je nejlepším způsobem zálohování nastavení, kompletní reinstalace a opětovné obnovení zazálohovaných dat.
Pingback: Anonymous transparent proxy through Tor on OpenWRT/LEDE | brichacek.net
Thanks to your blog post I was able to setup my old rb532 to running with OpenWRT openwrt 17.01.4. The device got a second life :)
Dobry den,
instaluji Open WRT do RB433. Vše proběhlo ok,
postup s malými změnami mohu poslat.
Nyní jsem zasekly na příkazu mount,
abych připojil NAND do adresare nmt.
NAND mám již vymazaný parametrem „e“
Nejde mount, zde je vysledek:
list mtd je takto:
root@OpenWrt:~# cat /proc/mtd
dev: size erasesize name
mtd0: 0000b000 00001000 „routerboot“
mtd1: 00001000 00001000 „hard_config“
mtd2: 00002000 00001000 „bios“
mtd3: 00001000 00001000 „soft_config“
mtd4: 00040000 00004000 „booter“
mtd5: 003c0000 00004000 „kernel“
mtd6: 03c00000 00004000 „ubi“
root@OpenWrt:~#
root@OpenWrt:~# mount /dev/mtdblock1 /mnt/
mount: mounting /dev/mtdblock1 on /mnt/ failed: Invalid argument
Nevíte proč?