Go to file
Brandon Maier 7b8a30ecea pylibfdt: fix Python version
In commit "pylibfdt: Remove some apparently deprecated options from
setup.py" the scm version tracking was removed. But it was not replaced
with the fixed version. This causes the Python modules to be installed
as version '0.0.0'.

Signed-off-by: Brandon Maier <brandon.maier@collins.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2024-07-01 11:43:43 +10:00
.github/workflows github: enforce testing pylibfdt and yaml support 2024-03-19 15:31:56 +11:00
Documentation dtc: Add an option to generate __local_fixups__ and __fixups__ 2023-05-26 21:11:32 +10:00
libfdt libfdt: overlay: Refactor overlay_fixup_phandle 2024-05-01 16:50:50 +10:00
pylibfdt pylibfdt/Makefile.pylibfdt: fix Python library being rebuild during install 2024-06-26 11:38:31 +10:00
scripts github: add workflow for Meson builds 2023-09-03 22:20:35 +10:00
tests pylibfdt/meson.build: fix Python library being rebuilt during install 2024-06-26 11:38:22 +10:00
.editorconfig editorconfig: use tab indentation for version.lds 2023-08-04 18:02:21 +10:00
.gitignore libfdt: rename libfdt-X.Y.Z.so to libfdt.so.X.Y.Z 2023-08-06 14:53:29 +10:00
BSD-2-Clause README.license: Update to reflect SPDX tag usage 2019-06-21 21:06:10 +10:00
CONTRIBUTING.md Add description of Signed-off-by lines 2022-07-29 12:55:15 +10:00
GPL Update the GPL2 text to the latest revision 2019-05-21 09:58:37 +10:00
MANIFEST.in Update README in MANIFEST.in and setup.py to README.md 2022-07-30 13:42:39 +10:00
Makefile Makefile: do not hardcode the `install` program path 2024-02-14 19:19:50 +11:00
Makefile.convert-dtsv0 dtc: Add GPLv2 SPDX tags to files missing license text 2019-06-21 21:06:10 +10:00
Makefile.dtc dtc: Replace GPLv2 boilerplate/reference with SPDX tags 2019-06-21 21:06:10 +10:00
Makefile.utils dtc: Add GPLv2 SPDX tags to files missing license text 2019-06-21 21:06:10 +10:00
README.license README.license: Update to reflect SPDX tag usage 2019-06-21 21:06:10 +10:00
README.md Split out information for contributors to CONTRIBUTING.md 2022-07-28 16:25:56 +10:00
TODO dtc: Update TODO files 2007-12-19 08:20:26 -06:00
VERSION.txt move release version into VERSION.txt 2023-08-06 14:53:29 +10:00
checks.c checks: Check the overall length of "interrupt-map" 2024-06-01 18:05:00 +10:00
convert-dtsv0-lexer.l convert-dtsv0: Fix signedness comparisons warning 2020-10-13 15:48:40 +11:00
data.c dtc: Fix signedness comparisons warnings: Wrap (-1) 2020-10-13 15:58:53 +11:00
dtc-lexer.l dtc: introduce label relative path references 2022-01-25 17:10:47 +11:00
dtc-parser.y Make name_node() xstrdup its name argument 2023-03-01 17:55:35 +11:00
dtc.c dtc: fix missing string in usage_opts_help 2023-09-05 11:44:10 +10:00
dtc.h Make name_node() xstrdup its name argument 2023-03-01 17:55:35 +11:00
dtdiff dtc: Add GPLv2 SPDX tags to files missing license text 2019-06-21 21:06:10 +10:00
fdtdump.c fdtdump: fix -Werror=int-to-pointer-cast 2021-08-26 10:58:26 +10:00
fdtget.c Support 'r' format for printing raw bytes with fdtget 2021-12-09 17:48:58 +11:00
fdtoverlay.c fdtoverlay: Drop a a repeated article 2023-04-28 16:26:39 +10:00
fdtput.c Support 'r' format for printing raw bytes with fdtget 2021-12-09 17:48:58 +11:00
flattree.c Delay xstrdup() of node and property names coming from a flat tree 2023-03-01 17:53:27 +11:00
fstree.c Make build_property() xstrdup its name argument 2023-03-01 17:47:27 +11:00
livetree.c livetree: fix off-by-one in propval_cell_n() bounds check 2023-05-14 15:22:09 +10:00
meson.build meson: fix dependencies of tests 2024-03-19 15:25:39 +11:00
meson_options.txt meson: allow disabling tests 2023-07-29 13:28:40 +10:00
setup.py pylibfdt: fix Python version 2024-07-01 11:43:43 +10:00
srcpos.c srcpos.c: fix -Wwrite-strings 2023-03-01 15:36:40 +11:00
srcpos.h dtc: Replace GPLv2 boilerplate/reference with SPDX tags 2019-06-21 21:06:10 +10:00
treesource.c treesource: Restore string list output when no type markers 2023-11-04 12:43:38 +11:00
util.c util: introduce xstrndup helper 2022-01-25 17:10:47 +11:00
util.h fix MinGW format attribute 2024-03-06 14:28:43 +11:00
version_gen.h.in build-sys: add meson build 2020-10-21 14:36:07 +11:00
yamltree.c Fix use of <ctype.h> functions 2023-07-28 20:55:34 +10:00

README.md

Device Tree Compiler and libfdt

The source tree contains the Device Tree Compiler (dtc) toolchain for working with device tree source and binary files and also libfdt, a utility library for reading and manipulating the binary format.

dtc and libfdt are maintained by:

Python library

A Python library wrapping libfdt is also available. To build this you will need to install swig and Python development files. On Debian distributions:

$ sudo apt-get install swig python3-dev

The library provides an Fdt class which you can use like this:

$ PYTHONPATH=../pylibfdt python3
>>> import libfdt
>>> fdt = libfdt.Fdt(open('test_tree1.dtb', mode='rb').read())
>>> node = fdt.path_offset('/subnode@1')
>>> print(node)
124
>>> prop_offset = fdt.first_property_offset(node)
>>> prop = fdt.get_property_by_offset(prop_offset)
>>> print('%s=%s' % (prop.name, prop.as_str()))
compatible=subnode1
>>> node2 = fdt.path_offset('/')
>>> print(fdt.getprop(node2, 'compatible').as_str())
test_tree1

You will find tests in tests/pylibfdt_tests.py showing how to use each method. Help is available using the Python help command, e.g.:

$ cd pylibfdt
$ python3 -c "import libfdt; help(libfdt)"

If you add new features, please check code coverage:

$ sudo apt-get install python3-coverage
$ cd tests
# It's just 'coverage' on most other distributions
$ python3-coverage run pylibfdt_tests.py
$ python3-coverage html
# Open 'htmlcov/index.html' in your browser

The library can be installed with pip from a local source tree:

$ pip install . [--user|--prefix=/path/to/install_dir]

Or directly from a remote git repo:

$ pip install git+git://git.kernel.org/pub/scm/utils/dtc/dtc.git@main

The install depends on libfdt shared library being installed on the host system first. Generally, using --user or --prefix is not necessary and pip will use the default location for the Python installation which varies if the user is root or not.

You can also install everything via make if you like, but pip is recommended.

To install both libfdt and pylibfdt you can use:

$ make install [PREFIX=/path/to/install_dir]

To disable building the python library, even if swig and Python are available, use:

$ make NO_PYTHON=1

More work remains to support all of libfdt, including access to numeric values.

Mailing lists