diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2022-02-23 08:35:46 +0100 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2022-02-24 16:55:32 +0100 |
commit | 2b709a7209ef43f02607815a2ab8027e5593ed1a (patch) | |
tree | 887c992e0e0b530d71e734dc9566773670f52667 /Documentation/devicetree/bindings/writing-schema.rst | |
parent | dt-bindings: usb: do not use deprecated synopsys prefix (diff) | |
download | linux-2b709a7209ef43f02607815a2ab8027e5593ed1a.tar.xz linux-2b709a7209ef43f02607815a2ab8027e5593ed1a.zip |
dt-bindings: writing-schema: Install from PyPI repository
Installing dtschema from github.com/devicetree-org is not needed anymore
because dtschema is now part of regular PyPI repository. In certain
cases it might cause some troubles as it brings latest master version,
not the stable release:
$ pip3 show dtschema
Version: 2020.8.2.dev4+g341f3e3
$ make dt_binding_check
dtschema minimum version is v2020.8.1
Reported-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20220223073547.8746-1-krzysztof.kozlowski@canonical.com
Diffstat (limited to 'Documentation/devicetree/bindings/writing-schema.rst')
-rw-r--r-- | Documentation/devicetree/bindings/writing-schema.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/writing-schema.rst b/Documentation/devicetree/bindings/writing-schema.rst index ea21c72aeb37..4004dd9209a6 100644 --- a/Documentation/devicetree/bindings/writing-schema.rst +++ b/Documentation/devicetree/bindings/writing-schema.rst @@ -118,7 +118,7 @@ The DT schema project must be installed in order to validate the DT schema binding documents and validate DTS files using the DT schema. The DT schema project can be installed with pip:: - pip3 install git+https://github.com/devicetree-org/dt-schema.git@master + pip3 install dtschema Several executables (dt-doc-validate, dt-mk-schema, dt-validate) will be installed. Ensure they are in your PATH (~/.local/bin by default). |