<feed xmlns='http://www.w3.org/2005/Atom'>
<title>Kconfiglib.git/menuconfig.py, branch v7.0.0</title>
<subtitle>Fork of https://github.com/zephyrproject-rtos/Kconfiglib.git</subtitle>
<id>https://git.mcdonnell.dev/Kconfiglib.git/atom?h=v7.0.0</id>
<link rel='self' href='https://git.mcdonnell.dev/Kconfiglib.git/atom?h=v7.0.0'/>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/'/>
<updated>2018-06-18T17:46:16Z</updated>
<entry>
<title>Add Nordic Semiconductor ASA as shared menuconfig copyright holder</title>
<updated>2018-06-18T17:46:16Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-06-18T17:38:00Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=255969e85ca6bb452a685aa64b4741822b6f4bbb'/>
<id>urn:sha1:255969e85ca6bb452a685aa64b4741822b6f4bbb</id>
<content type='text'>
Largely paid work, and it's copied into Zephyr, so it was a request.

All other source files are still copyright me.

Nothing changes in practice. I went for shared copyright to make sure
the ISC license can never be changed.
</content>
</entry>
<entry>
<title>menuconfig: Remove redundant int() argument</title>
<updated>2018-06-14T22:35:42Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-06-14T22:35:42Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=c67d3c49e58a3affb17259c36176fb8b947cda8d'/>
<id>urn:sha1:c67d3c49e58a3affb17259c36176fb8b947cda8d</id>
<content type='text'>
Base 10 is the default.
</content>
</entry>
<entry>
<title>menuconfig: Fix searching for nonexistent objects</title>
<updated>2018-06-12T13:42:17Z</updated>
<author>
<name>Tomasz Gorochowik</name>
<email>tgorochowik@antmicro.com</email>
</author>
<published>2018-06-12T13:24:40Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=3d59127ca3a3138d255887f45af90bc91b37713c'/>
<id>urn:sha1:3d59127ca3a3138d255887f45af90bc91b37713c</id>
<content type='text'>
This commit fixes an issue when user searches for a nonexistent object
(e.g. adsdsaasda) and presses enter.

Having all the key checks in one continuous if statement makes sure that
the very last 'else' statement does not get executed when enter is
pressed.

Note - backported from:
https://github.com/zephyrproject-rtos/zephyr/pull/8332
</content>
</entry>
<entry>
<title>menuconfig: Support viewing symbol info from within the jump-to dialog</title>
<updated>2018-06-11T11:38:16Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-06-11T11:33:47Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=330017a99cd7619c9eb1fe5fccbb02f5d9e7f6c5'/>
<id>urn:sha1:330017a99cd7619c9eb1fe5fccbb02f5d9e7f6c5</id>
<content type='text'>
Ctrl-F (Ctrl-H clashes with backspace) brings up the information dialog
for the selected item in the jump-to dialog.

Since it's now possible to jump directly from the information dialog to
the jump-to dialog and vice versa, recursive invocation becomes
possible. Work around it with a flag to _info_dialog() that makes '/'
return if the information dialog was launched from within the jump-to
dialog. (Recursive invocations work code-wise, but act in a confusing
way.)
</content>
</entry>
<entry>
<title>menuconfig: Support starting a search from the info dialog</title>
<updated>2018-06-11T11:04:40Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-06-11T11:04:40Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=4af3e0c5a96567d476570924a76527f82156ff6c'/>
<id>urn:sha1:4af3e0c5a96567d476570924a76527f82156ff6c</id>
<content type='text'>
It's annoying to have to leave the information dialog just to do a
search related to something you saw in the information dialog.

Stay in the information dialog if the search is canceled.
</content>
</entry>
<entry>
<title>Add license tags to scripts</title>
<updated>2018-06-06T06:57:32Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-06-06T06:57:04Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=a607db8a47fde00bd301d785ba1fbb8a5eab06da'/>
<id>urn:sha1:a607db8a47fde00bd301d785ba1fbb8a5eab06da</id>
<content type='text'>
Everything's ISC.
</content>
</entry>
<entry>
<title>menuconfig: Fix outdated comment</title>
<updated>2018-05-31T04:36:09Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-05-31T04:36:09Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=aeb987e17f089c3a10db96f4cf86000af99fcfde'/>
<id>urn:sha1:aeb987e17f089c3a10db96f4cf86000af99fcfde</id>
<content type='text'>
cached_search_strings was renamed to cached_search_nodes.
</content>
</entry>
<entry>
<title>Add tool helper for loading/saving .config files</title>
<updated>2018-05-30T19:40:27Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-05-30T19:18:49Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=f9b158ebb3d81c923461981d2b087989c284c2d4'/>
<id>urn:sha1:f9b158ebb3d81c923461981d2b087989c284c2d4</id>
<content type='text'>
Removes repeated KCONFIG_CONFIG boilerplate.

Also make allyesconfig use KCONFIG_CONFIG when writing (oversight), and
document the sys.exit() behavior for standard_kconfig().
</content>
</entry>
<entry>
<title>Add tool helper for selecting the top-level Kconfig</title>
<updated>2018-05-30T18:38:11Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-05-30T18:19:08Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=791b930930b9ddcb752c97c8a8ef859b7afbeb0e'/>
<id>urn:sha1:791b930930b9ddcb752c97c8a8ef859b7afbeb0e</id>
<content type='text'>
standard_kconfig() gets the top-level Kconfig file from the first
command-line argument, defaulting to "Kconfig". This removes some
boilerplate from tools.
</content>
</entry>
<entry>
<title>menuconfig: Always prompt for save when output file is missing</title>
<updated>2018-05-27T16:12:35Z</updated>
<author>
<name>Ulf Magnusson</name>
<email>ulfalizer@gmail.com</email>
</author>
<published>2018-05-27T16:09:41Z</published>
<link rel='alternate' type='text/html' href='https://git.mcdonnell.dev/Kconfiglib.git/commit/?id=02f7330b450faf99716dbc7eefe3d6d2bdba0253'/>
<id>urn:sha1:02f7330b450faf99716dbc7eefe3d6d2bdba0253</id>
<content type='text'>
An output file should still be generated if you're happy with the
default settings.
</content>
</entry>
</feed>
