Skip to content

Commit 5ddc79e

Browse files
authored
Merge pull request #13 from sysprog21/refine-hyperlinks
Refine hyperlinks
2 parents 037e4da + f5eb602 commit 5ddc79e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

kconfiglib.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from Kconfig (https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt)
1010
configuration systems.
1111
12-
See the homepage at https://github.com/zephyrproject-rtos/Kconfiglib for a longer
12+
See the homepage at https://github.com/sysprog21/Kconfiglib for a longer
1313
overview.
1414
1515
Since Kconfiglib 12.0.0, the library version is available in
@@ -24,8 +24,8 @@
2424
scripts/kconfig/Makefile patch, which can be applied with either 'git am' or
2525
the 'patch' utility:
2626
27-
$ wget -qO- https://raw.githubusercontent.com/zephyrproject-rtos/Kconfiglib/master/makefile.patch | git am
28-
$ wget -qO- https://raw.githubusercontent.com/zephyrproject-rtos/Kconfiglib/master/makefile.patch | patch -p1
27+
$ wget -qO- https://raw.githubusercontent.com/sysprog21/Kconfiglib/refs/heads/main/makefile.patch | git am
28+
$ wget -qO- https://raw.githubusercontent.com/sysprog21/Kconfiglib/refs/heads/main/makefile.patch | patch -p1
2929
3030
Warning: Not passing -p1 to patch will cause the wrong file to be patched.
3131
@@ -39,7 +39,7 @@
3939
If you do not wish to install Kconfiglib via pip, the Makefile patch is set up
4040
so that you can also just clone Kconfiglib into the kernel root:
4141
42-
$ git clone git://github.com/zephyrproject-rtos/Kconfiglib.git
42+
$ git clone https://github.com/sysprog21/Kconfiglib
4343
$ git am Kconfiglib/makefile.patch (or 'patch -p1 < Kconfiglib/makefile.patch')
4444
4545
Warning: The directory name Kconfiglib/ is significant in this case, because

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
encoding="utf-8"
2121
).read(),
2222

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

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

7575
classifiers=[

0 commit comments

Comments
 (0)