summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorRicardo F <rfrail3@users.noreply.github.com>2018-03-18 22:01:21 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2018-03-18 22:01:21 +0100
commitef6fca713ce44bf5577ae348a3de092e1df0aa1c (patch)
treed085f7c8383f54b8466860f247d91c0706e76102 /README.rst
parent47b05501d9dd3852102a0493534890b85f832ab9 (diff)
Add print_config_tree.py example script (#42)
Works like menuconfig.py, but just dumps the tree, with a specified .config file as base. Handy for diffing.
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.rst b/README.rst
index 518fc0d..5b320d0 100644
--- a/README.rst
+++ b/README.rst
@@ -238,6 +238,8 @@ The `examples/ <https://github.com/ulfalizer/Kconfiglib/blob/master/examples>`_
- `print_tree.py <https://github.com/ulfalizer/Kconfiglib/blob/master/examples/print_tree.py>`_ prints a tree of all configuration items.
+- `print_config_tree.py <https://github.com/ulfalizer/Kconfiglib/blob/master/examples/print_config_tree.py>`_ is similar to ``print_tree.py``, but dumps the tree as it would appear in ``menuconfig``, including values. This can be handy for visually diffing between ``.config`` files and different versions of ``Kconfig`` files.
+
- `list_undefined.py <https://github.com/ulfalizer/Kconfiglib/blob/master/examples/list_undefined.py>`_ finds references to symbols that are not defined by any architecture in the Linux kernel.
- `merge_config.py <https://github.com/ulfalizer/Kconfiglib/blob/master/examples/merge_config.py>`_ merges configuration fragments to produce a complete .config, similarly to ``scripts/kconfig/merge_config.sh`` from the kernel.