Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions kconfiglib.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from Kconfig (https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt)
configuration systems.

See the homepage at https://github.com/zephyrproject-rtos/Kconfiglib for a longer
See the homepage at https://github.com/sysprog21/Kconfiglib for a longer
overview.

Since Kconfiglib 12.0.0, the library version is available in
Expand All @@ -24,8 +24,8 @@
scripts/kconfig/Makefile patch, which can be applied with either 'git am' or
the 'patch' utility:

$ wget -qO- https://raw.githubusercontent.com/zephyrproject-rtos/Kconfiglib/master/makefile.patch | git am
$ wget -qO- https://raw.githubusercontent.com/zephyrproject-rtos/Kconfiglib/master/makefile.patch | patch -p1
$ wget -qO- https://raw.githubusercontent.com/sysprog21/Kconfiglib/refs/heads/main/makefile.patch | git am
$ wget -qO- https://raw.githubusercontent.com/sysprog21/Kconfiglib/refs/heads/main/makefile.patch | patch -p1

Warning: Not passing -p1 to patch will cause the wrong file to be patched.

Expand All @@ -39,7 +39,7 @@
If you do not wish to install Kconfiglib via pip, the Makefile patch is set up
so that you can also just clone Kconfiglib into the kernel root:

$ git clone git://github.com/zephyrproject-rtos/Kconfiglib.git
$ git clone https://github.com/sysprog21/Kconfiglib
$ git am Kconfiglib/makefile.patch (or 'patch -p1 < Kconfiglib/makefile.patch')

Warning: The directory name Kconfiglib/ is significant in this case, because
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
encoding="utf-8"
).read(),

url="https://github.com/zephyrproject-rtos/Kconfiglib",
url="https://github.com/sysprog21/Kconfiglib",
author='Zephyr Project',
author_email="ci@zephyrproject.org",
keywords="kconfig, kbuild, menuconfig, configuration-management",
Expand Down Expand Up @@ -68,8 +68,8 @@
python_requires=">=2.7,!=3.0.*,!=3.1.*",

project_urls={
"GitHub repository": "https://github.com/zephyrproject-rtos/Kconfiglib",
"Examples": "https://github.com/zephyrproject-rtos/Kconfiglib/tree/master/examples",
"GitHub repository": "https://github.com/sysprog21/Kconfiglib",
"Examples": "https://github.com/sysprog21/Kconfiglib/tree/main/examples",
},

classifiers=[
Expand Down