mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
b1839fcf75
Fix the error message to not use dst and use self as it is copying the
properties to self.
While using templating if there are no subnodes defined, we end up in
this situation where "dst" isn't defined and it tries to print the error
message and fails.
'UnboundLocalError: local variable 'dst' referenced before assignment'
Fixes:
|
||
---|---|---|
.. | ||
test | ||
.gitignore | ||
__init__.py | ||
dtb_platdata.py | ||
dtoc | ||
fdt.py | ||
fdt_util.py | ||
main.py | ||
pyproject.toml | ||
README.rst | ||
setup.py | ||
src_scan.py | ||
test_dtoc.py | ||
test_fdt | ||
test_fdt.py | ||
test_src_scan.py |
.. SPDX-License-Identifier: GPL-2.0+ Devicetree-to-C generator ========================= This is a Python program and associated utilities, which supports converting devicetree files into C code. It generates header files containing struct definitions, as well as C files containing the data. It does not require any modification of the devicetree files. Some high-level libraries are provided for working with devicetree. These may be useful in other projects. This package also includes some U-Boot-specific features, such as creating `struct udevice` and `struct uclass` entries for devicetree nodes.