| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-02-16 | Warn about and ignore the "allnoconfig_y" Kconfig option | Jakub Sitnicki | |
| A new option has appeared in Linux 3.15-rc1. Ignore it for now. | |||
| 2013-08-07 | Add Symbol and Choice interfaces for getting prompt strings. | Ulf Magnusson | |
| 2012-12-19 | Use regexes instead of frozensets to lex ids/keywords. | Ulf Magnusson | |
| Faster and a bit more readable. | |||
| 2012-12-18 | Flesh out Symbol docstring. | Ulf Magnusson | |
| 2012-12-18 | Flesh out Config docstring. | Ulf Magnusson | |
| 2012-12-18 | Remove redundant invalidation from load_config(). | Ulf Magnusson | |
| unset_user_values() will indirectly invalidate everything, so we don't need to do it ourselves. | |||
| 2012-12-18 | Properly unescape .config string assignments. | Ulf Magnusson | |
| 2012-12-18 | Simplify load_config() a bit. | Ulf Magnusson | |
| 2012-12-18 | Escape \ and " when writing .config entries for strings. | Ulf Magnusson | |
| 2012-12-17 | Tighten up string literal parsing a bit more. | Ulf Magnusson | |
| 2012-12-17 | Fix comment re. fast path. | Ulf Magnusson | |
| 2012-12-17 | Small simplification. | Ulf Magnusson | |
| 2012-12-17 | Add a fast path for string literal lexing. | Ulf Magnusson | |
| Speeds up _tokenize() by ~20%. | |||
| 2012-12-16 | Use 'while 1' instead of 'while True'. | Ulf Magnusson | |
| Bit faster (http://wiki.python.org/moin/PythonSpeed). | |||
| 2012-12-16 | Use | and |= instead of set.union() and set.update(). | Ulf Magnusson | |
| 2012-12-16 | Mention UNAME_RELEASE in is_special() docstring. | Ulf Magnusson | |
| 2012-12-16 | Remove redundant elif. | Ulf Magnusson | |
| 2012-12-16 | Fix 'source' error message. | Ulf Magnusson | |
| 2012-12-15 | Remove redundant newline. | Ulf Magnusson | |
| 2012-12-15 | Spell nit. | Ulf Magnusson | |
| 2012-12-15 | Remove unused variable. | Ulf Magnusson | |
| 2012-12-15 | Add comment about m && MODULES rewriting. | Ulf Magnusson | |
| 2012-12-15 | Remove redundant elif. | Ulf Magnusson | |
| 2012-12-15 | Simplify _parse_error(). | Ulf Magnusson | |
| 2012-12-15 | Add optimization note for write_config(). | Ulf Magnusson | |
| 2012-12-15 | Optimize Symbol._make_conf(). | Ulf Magnusson | |
| - Remove _should_write(). - Remove redundant get_value() calls. | |||
| 2012-12-14 | Reference another example in the intro. | Ulf Magnusson | |
| 2012-12-14 | Simplify _get_dependent(). | Ulf Magnusson | |
| 2012-12-14 | Remove superfluous variable in get_value(). | Ulf Magnusson | |
| 2012-12-14 | Clarify comment on the value of undefined symbols. | Ulf Magnusson | |
| 2012-12-14 | Make _comment() preserve trailing newlines. | Ulf Magnusson | |
| 2012-12-13 | Small get_value() clarification. | Ulf Magnusson | |
| 2012-12-13 | Make _comment() correctly comment an empty line. | Ulf Magnusson | |
| 2012-12-13 | Do not indent user-provided .config header. | Ulf Magnusson | |
| Inflexible. | |||
| 2012-12-13 | Return constant instead. | Ulf Magnusson | |
| 2012-12-13 | Fix loading of .config files with empty assignments. | Ulf Magnusson | |
| "CONFIG_FOO=" was broken because _strip_quotes() could not handle empty strings. | |||
| 2012-12-13 | Rewrap some docstrings. | Ulf Magnusson | |
| 2012-12-13 | Remove outdated comment. | Ulf Magnusson | |
| 2012-12-13 | Add get_config() for Menu, Choice, and Comment. | Ulf Magnusson | |
| Omission. | |||
| 2012-12-13 | Add Comment.get_visibility(). | Ulf Magnusson | |
| Omission. | |||
| 2012-12-13 | Rename Menu.get_depends_on_visibility() to Menu.get_visibility(). | Ulf Magnusson | |
| 2012-12-13 | Rename some APIs to be more consistent and intuitive. | Ulf Magnusson | |
| 2012-12-13 | Get rid of some "in (" in favor of direct comparisons. | Ulf Magnusson | |
| Slightly faster and no less readable. | |||
| 2012-12-13 | Clean up get_value() for hex/int and fix edge cases. | Ulf Magnusson | |
| If a range is active and no defaults are active, the low end of the range should be used for the default if no valid user value is set. | |||
| 2012-12-12 | Rename kconfigtest.py to testsuite.py. | Ulf Magnusson | |
| 2012-12-12 | Break encapsulation a bit to clarify code. | Ulf Magnusson | |
| Perhaps the public API should be properties instead of functions for things like .name that are very unlikely to not be static as well. Would take more work to document though. | |||
| 2012-12-12 | Re-enable set_user_value() warning for symbols with no prompts. | Ulf Magnusson | |
| Disable warnings in allnoconfig_simpler.py instead. | |||
| 2012-12-12 | Remove redundant check. | Ulf Magnusson | |
| 2012-12-12 | Use 'type' instead of 'get_type()' internally. | Ulf Magnusson | |
| 2012-12-12 | Always count non-bool/tristate symbols as 'n' in tristate context. | Ulf Magnusson | |
| Previously a string symbol that happened to have the value "y" would count as "y" in tristate context, which is incorrect. | |||
