You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
README: Update links to point to zephyrproject-rtos repo
This commit updates all the old 'ulfalizer' Kconfiglib repository links
in the README file to point to the new 'zephyrproject-rtos' Kconfiglib
repository.
Signed-off-by: Stephanos Ioannidis <[email protected]>
I did my best with the images, but some are definitely only art adjacent.
@@ -610,23 +610,23 @@ Examples
610
610
Example scripts
611
611
~~~~~~~~~~~~~~~
612
612
613
-
The `examples/ <https://github.com/ulfalizer/Kconfiglib/blob/master/examples>`_ directory contains some simple example scripts. Among these are the following ones. Make sure you run them with the latest version of Kconfiglib, as they might make use of newly added features.
613
+
The `examples/ <https://github.com/zephyrproject-rtos/Kconfiglib/blob/master/examples>`_ directory contains some simple example scripts. Among these are the following ones. Make sure you run them with the latest version of Kconfiglib, as they might make use of newly added features.
614
614
615
-
- `eval_expr.py <https://github.com/ulfalizer/Kconfiglib/blob/master/examples/eval_expr.py>`_ evaluates an expression in the context of a configuration.
615
+
- `eval_expr.py <https://github.com/zephyrproject-rtos/Kconfiglib/blob/master/examples/eval_expr.py>`_ evaluates an expression in the context of a configuration.
616
616
617
-
- `find_symbol.py <https://github.com/ulfalizer/Kconfiglib/blob/master/examples/find_symbol.py>`_ searches through expressions to find references to a symbol, also printing a "backtrace" with parents for each reference found.
617
+
- `find_symbol.py <https://github.com/zephyrproject-rtos/Kconfiglib/blob/master/examples/find_symbol.py>`_ searches through expressions to find references to a symbol, also printing a "backtrace" with parents for each reference found.
618
618
619
-
- `help_grep.py <https://github.com/ulfalizer/Kconfiglib/blob/master/examples/help_grep.py>`_ searches for a string in all help texts.
619
+
- `help_grep.py <https://github.com/zephyrproject-rtos/Kconfiglib/blob/master/examples/help_grep.py>`_ searches for a string in all help texts.
620
620
621
-
- `print_tree.py <https://github.com/ulfalizer/Kconfiglib/blob/master/examples/print_tree.py>`_ prints a tree of all configuration items.
621
+
- `print_tree.py <https://github.com/zephyrproject-rtos/Kconfiglib/blob/master/examples/print_tree.py>`_ prints a tree of all configuration items.
622
622
623
-
- `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.
623
+
- `print_config_tree.py <https://github.com/zephyrproject-rtos/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.
624
624
625
-
- `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.
625
+
- `list_undefined.py <https://github.com/zephyrproject-rtos/Kconfiglib/blob/master/examples/list_undefined.py>`_ finds references to symbols that are not defined by any architecture in the Linux kernel.
626
626
627
-
- `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.
627
+
- `merge_config.py <https://github.com/zephyrproject-rtos/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.
628
628
629
-
- `menuconfig_example.py <https://github.com/ulfalizer/Kconfiglib/blob/master/examples/menuconfig_example.py>`_ implements a configuration interface that uses notation similar to ``make menuconfig``. It's deliberately kept as simple as possible to demonstrate just the core concepts.
629
+
- `menuconfig_example.py <https://github.com/zephyrproject-rtos/Kconfiglib/blob/master/examples/menuconfig_example.py>`_ implements a configuration interface that uses notation similar to ``make menuconfig``. It's deliberately kept as simple as possible to demonstrate just the core concepts.
630
630
631
631
Real-world examples
632
632
~~~~~~~~~~~~~~~~~~~
@@ -743,7 +743,7 @@ The following log should give some idea of the functionality available in the AP
743
743
>>> kconf.write_config("myconfig") # Save a .config
744
744
>>> ^D
745
745
$ cat myconfig
746
-
# Generated by Kconfiglib (https://github.com/ulfalizer/Kconfiglib)
746
+
# Generated by Kconfiglib (https://github.com/zephyrproject-rtos/Kconfiglib)
747
747
CONFIG_64BIT=y
748
748
CONFIG_X86_64=y
749
749
CONFIG_X86=y
@@ -780,10 +780,10 @@ discard ``stderr``.
780
780
The test suite consists of a set of selftests and a set of compatibility tests that
781
781
compare configurations generated by Kconfiglib with
782
782
configurations generated by the C tools, for a number of cases. See
0 commit comments