<feed xmlns='http://www.w3.org/2005/Atom'>
<title>Kconfiglib.git/genconfig.py, branch v10.49.0</title>
<subtitle>Fork of https://github.com/zephyrproject-rtos/Kconfiglib.git</subtitle>
<id>https://git.mcdonnell.dev/Kconfiglib.git/atom?h=v10.49.0</id>
<link rel='self' href='https://git.mcdonnell.dev/Kconfiglib.git/atom?h=v10.49.0'/>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/'/>
<updated>2019-03-22T19:43:30Z</updated>
<entry>
<title>Whitespace consistency nit</title>
<updated>2019-03-22T19:43:30Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2019-03-22T19:43:21Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=5cec7cc7ecc78e8fe52c715c7465b0256392f428'/>
<id>urn:sha1:5cec7cc7ecc78e8fe52c715c7465b0256392f428</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Convert some comments to module docstrings in utilities</title>
<updated>2019-03-22T16:29:12Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2019-03-22T14:42:45Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=c70a45eb935dc536ce59ec860c17b4c1c531a663'/>
<id>urn:sha1:c70a45eb935dc536ce59ec860c17b4c1c531a663</id>
<content type='text'>
This makes running pydoc(3) on the utilities helpful.

Reuse the module docstring for the --help text for utilities that use
argparse.

Also fix some copy-paste errors in the all*config.py descriptions and
clean up the language a bit.

Piggyback removal of an optimization in allmodconfig.py that's pretty
irrelevant now.
</content>
</entry>
<entry>
<title>Use a consistent style in small utilities</title>
<updated>2019-03-06T01:03:41Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2019-03-06T00:58:06Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=553cca8e7417ad863b923758e6d402296d05de9c'/>
<id>urn:sha1:553cca8e7417ad863b923758e6d402296d05de9c</id>
<content type='text'>
Also remove some no longer used imports.
</content>
</entry>
<entry>
<title>genconfig: Get rid of DESCRIPTION variable</title>
<updated>2019-03-06T00:55:57Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2019-03-06T00:55:57Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=b07c2053de324d974521c83e7a073ff1330b74d8'/>
<id>urn:sha1:b07c2053de324d974521c83e7a073ff1330b74d8</id>
<content type='text'>
Used in a single place.
</content>
</entry>
<entry>
<title>Update copyright years for 2019</title>
<updated>2019-01-15T22:12:10Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2019-01-15T22:11:34Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=770abd61a5c90837d9336afd972090eebbc26b0b'/>
<id>urn:sha1:770abd61a5c90837d9336afd972090eebbc26b0b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>genconfig: Do not generate *.old files for --config-out</title>
<updated>2018-12-08T13:44:27Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-12-08T13:44:27Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=e8f9751218fe8995d17c8c809e23d965df08d6ec'/>
<id>urn:sha1:e8f9751218fe8995d17c8c809e23d965df08d6ec</id>
<content type='text'>
Configuration files generated by --config-out would usually be an
internal detail of the build system, so it's probably not helpful to
generate *.old files for them. Pass save_old=False to write_config() to
skip it.
</content>
</entry>
<entry>
<title>Make {load,write}_config(filename=None) implement the standard behavior</title>
<updated>2018-12-08T02:28:52Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-12-07T23:41:01Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=7b4f72fa7a19b7c38312a6f6fd553ca45f04e9a6'/>
<id>urn:sha1:7b4f72fa7a19b7c38312a6f6fd553ca45f04e9a6</id>
<content type='text'>
Make the previously obligatory 'filename' argument to load_config() and
write_config() default to None, and have that implement the behavior
you'd usually want: read/write either KCONFIG_CONFIG or ".config" if
unset, and read the 'option defconfig_list' configuration file if
KCONFIG_CONFIG/".config" doesn't exist.

For load_config(), filename=None also allows the configuration file to
be missing without raising an error. load_config() returns True if a
local configuration file was loaded, which is useful to check in the
menuconfig (if no local configuration file exists, we always want to
prompt for saving the configuration when exiting).

Also add a 'verbose' argument (default True) to load_config() and
read_config() that makes them print which files were read/written in
filename=None mode.

Also generalize olddefconfig.py and oldconfig.py to not require there to
already be a local configuration file. This was a bit silly for
olddefconfig.py in particular.

Remove the examples/defconfig.py script. It's a duplicate of
olddefconfig.py.
</content>
</entry>
<entry>
<title>Update genconfig usage description</title>
<updated>2018-10-06T02:43:00Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-10-06T02:43:00Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=5d15df94df761e17d499c4430bd6dbe889490b97'/>
<id>urn:sha1:5d15df94df761e17d499c4430bd6dbe889490b97</id>
<content type='text'>
Didn't mention --config-out.
</content>
</entry>
<entry>
<title>genconfig: Allow writing a full .config without incremental build info</title>
<updated>2018-10-03T06:05:59Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-10-03T05:19:43Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=4602028ba2450903b63f043377cc63ac5e5e36de'/>
<id>urn:sha1:4602028ba2450903b63f043377cc63ac5e5e36de</id>
<content type='text'>
For projects that don't use incremental build information, it's a bit
wasteful to generate it just to get an updated .config file to include
in Makefiles. Add a '--config-out &lt;filename&gt;' option that just writes
the updated .config file, for those cases.

Also remove a redundant default=None argument for --sync-deps. None is
the default value.
</content>
</entry>
<entry>
<title>genconfig: Remove unused sys import</title>
<updated>2018-06-22T12:03:12Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-06-22T12:00:56Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=7a76c470b5f79d2ed2b8e359c0d99612226dd1e5'/>
<id>urn:sha1:7a76c470b5f79d2ed2b8e359c0d99612226dd1e5</id>
<content type='text'>
</content>
</entry>
</feed>
