Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | build system: (try to) get rid of bb_config.h hack | Denis Vlasenko | 2006-10-19 | 1 | -1788/+0 |
| | |||||
* | Standardize on the vi editing directives being on the first line. | "Robert P. J. Day" | 2006-07-02 | 1 | -0/+1 |
| | |||||
* | - use strtol instead of strtoll if the latter does not exist | Bernhard Reutner-Fischer | 2006-05-26 | 1 | -3/+19 |
| | | | | | - add and use wrapper for attribute - add and use replacement for vasprintf if it is unavailable | ||||
* | quick copy-paste typo | "Vladimir N. Oleynik" | 2006-02-17 | 1 | -1/+1 |
| | |||||
* | moved BB_BANNER to applets/version.c file: make kernel like version, | "Vladimir N. Oleynik" | 2006-02-16 | 1 | -3/+14 |
| | | | | removed depend loop: busybox.h depend with BB_BT, and all sources depend with busybox.h | ||||
* | full removed config.h, use bb_config.h only | "Vladimir N. Oleynik" | 2006-02-15 | 1 | -12/+8 |
| | |||||
* | - commentary typos | Bernhard Reutner-Fischer | 2006-02-14 | 1 | -3/+3 |
| | |||||
* | commentary typos. Thank by aldot | "Vladimir N. Oleynik" | 2006-02-14 | 1 | -16/+16 |
| | |||||
* | New USE() macros | Rob Landley | 2006-02-13 | 1 | -65/+866 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For each CONFIG_SYMBOL, include/bb_config.h now has both ENABLE_SYMBOL and USE_SYMBOL(x). ENABLE_SYMBOL is still always defined (1 or 0) so that if(ENABLE) should optimize out when it's zero. The USE_SYMBOL(X) will only splice in X if the symbol is defined, otherwise it'll be empty. Thus we can convert this: #ifdef CONFIG_ARGS opt = bb_getopt_ulflags(argc, argv, "ab:c" #ifdef CONFIG_THINGY "d:" #endif , &bvalue #ifdef CONFIG_THINGY , &thingy #endif ); #endif into this: if (ENABLE_ARGS) { opt = bb_getopt_ulflags(argc, argv, "ab:c" USE_THINGY("d:"), &bvalue USE_THINGY(, &thingy)); } And it should produce the same code. Unlike the old versions in include/_usage.h, the new USE_SYMBOL(x) can handle commas in its arguments (as shown above). (The _usage.h file is obsolete and no longer generated.) Nobody should need to include config.h directly anymore, bb_config.h should define all the configuration stuff we need. Someday, the CONFIG_SYMBOL versions should go away in favor of ENABLE_SYMBOL and USE_SYMBOL(). Thanks to vodz for the new version of bb_mkdep.c that works with function macros. | ||||
* | - commentary typos | Bernhard Reutner-Fischer | 2006-02-12 | 1 | -18/+16 |
| | |||||
* | bb_mkdep: Rewroted. removed problem "include name must uniq", speed up * 3. | "Vladimir N. Oleynik" | 2005-10-10 | 1 | -396/+415 |
| | | | | | e2fsprogs: remove confuse bb_mkdep. Use internal e2fsprogs includes only. other: remove confuse bb_mkdep. | ||||
* | fast replace if src outside | "Vladimir N. Oleynik" | 2005-10-07 | 1 | -29/+21 |
| | |||||
* | update documentation | "Vladimir N. Oleynik" | 2005-10-06 | 1 | -3/+3 |
| | |||||
* | bb_mkdep can use src outside now | "Vladimir N. Oleynik" | 2005-10-06 | 1 | -1/+21 |
| | |||||
* | speed up * 2 | "Vladimir N. Oleynik" | 2005-10-03 | 1 | -105/+94 |
| | |||||
* | small bug found after strength test | "Vladimir N. Oleynik" | 2005-09-19 | 1 | -1/+2 |
| | |||||
* | speed up +10%, update (c), make CONFIG_FEATURE_MOD2_4 as config/feature/mod_2_4 | "Vladimir N. Oleynik" | 2005-09-16 | 1 | -26/+30 |
| | |||||
* | bb_mkdep version 2.0. speed up *2, remove problem of find e2fsprogs/uu*.h, ↵ | "Vladimir N. Oleynik" | 2005-09-14 | 1 | -242/+248 |
| | | | | spelling corrections by Bernhard Fischer | ||||
* | bb_mkdep release. speed up *3, clearing, more comments | "Vladimir N. Oleynik" | 2005-09-13 | 1 | -217/+266 |
| | |||||
* | bb_mkdep speed up * 10! | "Vladimir N. Oleynik" | 2005-09-12 | 1 | -82/+112 |
| | |||||
* | new my scripts/mm_mkdep, dependences work now | "Vladimir N. Oleynik" | 2005-09-12 | 1 | -0/+855 |