[Crosstoolchain-logs] [device-tree-compiler] branch upstream/latest updated (558cd81 -> 22a65c5)

Vagrant Cascadian vagrant at moszumanska.debian.org
Thu Sep 28 22:03:54 UTC 2017


This is an automated email from the git hooks/post-receive script.

vagrant pushed a change to branch upstream/latest
in repository device-tree-compiler.

      from  558cd81   dtc: Bump version to v1.4.4
       new  33c3985   checks: Add bus checks for PCI buses
       new  4c15d5d   checks: Add bus checks for simple-bus buses
       new  cdbb2b6   checks: Warn on node name unit-addresses with '0x' or leading 0s
       new  50f2507   Add an initial Python library for libfdt
       new  12cfb74   Add tests for pylibfdt
       new  b40aa83   Mention pylibfdt in the documentation
       new  8cb3896   Adjust libfdt.h to work with swig
       new  756ffc4   Build pylibfdt as part of the normal build process
       new  6afd7d9   Correct typo: s/pylibgfdt/pylibfdt/
       new  4e0e0d0   pylibfdt: Allow pkg-config to be supplied in the environment
       new  89a5062   pylibfdt: Use environment to pass C flags and files
       new  14c4171   pylibfdt: Use package_dir to set the package directory
       new  741cdff   .travis.yml: Add builds with and without Python library prerequisites
       new  8a892fd   pylibfdt: Allow building to be disabled
       new  e91c652   pylibfdt: Enable installation of Python module
       new  9f2e3a3   pylibfdt: Use the correct libfdt version in the module
       new  ab15256   pylibfdt: Use the call function to simplify the Makefile
       new  580a9f6   Add a libfdt function to write a property placeholder
       new  1c5170d   pylibfdt: Rename libfdt.swig to libfdt.i
       new  b04a2cf   pylibfdt: Fix code style in setup.py
       new  e20d965   Add Coverity Scan support
       new  90db6d9   pylibfdt: Allow setup.py to operate stand-alone
       new  896f1c1   pylibfdt: Use Makefile constructs to implement NO_PYTHON
       new  e56f2b0   pylibfdt: Use setup.py to build the swig file
       new  9067ee4   Fix a few whitespace and style nits
       new  c225884   fdtdump: Fix over-zealous version check
       new  548aea2   fdtdump: Discourage use of fdtdump
       new  a10cb3c   Fix get_node_by_path string equality check
       new  2a42b14   dtc: check.c fix compile error
       new  21a2bc8   Suppress expected error message in fdtdump test
       new  51f56de   Clean up shared library compile/link options
       new  d990b80   Makefile: Fix build on MSYS2 and Cygwin
       new  13ce6e1   dtc: fix sprintf() format string error, again
       new  aae2272   manual: Document missing options
       new  4240914   fdtoverlay: A tool that applies overlays
       new  e3b9a95   tests: fdtoverlay unit test
       new  0016f8c   dtc: change default phandles to ePAPR style instead of both
       new  a33c224   Introduce fdt_setprop_placeholder() method
       new  1bb0065   fdt: Allow stacked overlays phandle references
       new  36f511f   tests: Add stacked overlay tests on fdtoverlay
       new  ab78860   pylibfdt: Add stdint include to fix uint32_t
       new  50e5cd0   pylibfdt: Add a test for use of uint32_t
       new  155faf6   pylibfdt: Use local pylibfdt module
       new  b9eba92   tests: Return a failure code when any tests fail
       new  a198af8   pylibfdt: Add support for fdt_get_phandle()
       new  a3ae437   pylibfdt: Add support for fdt_parent_offset()
       new  46f31b6   pylibfdt: Add support for fdt_node_offset_by_phandle()
       new  5bed86a   pylibfdt: Add support for fdt_subnode_offset()
       new  62d8123   README: Add a note about test_tree1.dts
       new  fe50bd1   fdtget: Split out cell list display into a new function
       new  b3bbac0   checks: add phandle with arg property checks
       new  c1e7738   checks: add gpio binding properties check
       new  ee3d26f   checks: add interrupts property check
       new  8c1eb15   pylibfdt: Use Python2 explicitly
       new  b6a6f94   fdtoverlay: Sanity check blob size
       new  c575d80   Add fdtoverlay to .gitignore
       new  22a65c5   dtc: Bump version to v1.4.5

The 57 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |   1 +
 .travis.yml                                        |  25 +
 Documentation/manual.txt                           |  20 +-
 Makefile                                           |  72 ++-
 Makefile.utils                                     |   6 +
 README                                             |  77 ++++
 checks.c                                           | 511 +++++++++++++++++++++
 dtc.c                                              |   2 +-
 dtc.h                                              |   7 +
 fdtdump.c                                          |   7 +-
 fdtget.c                                           |  49 +-
 fdtoverlay.c                                       | 175 +++++++
 libfdt/fdt_empty_tree.c                            |   1 -
 libfdt/fdt_overlay.c                               | 228 ++++++++-
 libfdt/fdt_ro.c                                    |   4 +-
 libfdt/fdt_rw.c                                    |  24 +-
 libfdt/fdt_sw.c                                    |  16 +-
 libfdt/fdt_wip.c                                   |   4 +-
 libfdt/libfdt.h                                    |  68 ++-
 livetree.c                                         |   9 +-
 pylibfdt/.gitignore                                |   3 +
 pylibfdt/Makefile.pylibfdt                         |  24 +
 pylibfdt/libfdt.i                                  | 493 ++++++++++++++++++++
 pylibfdt/setup.py                                  | 121 +++++
 tests/Makefile.tests                               |   6 +-
 tests/bad-gpio.dts                                 |  13 +
 tests/bad-interrupt-cells.dts                      |  12 +
 tests/bad-phandle-cells.dts                        |  11 +
 tests/fdtoverlay-runtest.sh                        |  40 ++
 tests/include7.dts                                 |   1 +
 tests/path-references.c                            |  12 +-
 tests/path-references.dts                          |  13 +
 tests/pylibfdt_tests.py                            | 334 ++++++++++++++
 tests/run_tests.sh                                 |  81 +++-
 tests/stacked_overlay_bar.dts                      |  13 +
 tests/stacked_overlay_base.dts                     |   6 +
 tests/stacked_overlay_baz.dts                      |  13 +
 tests/sw_tree1.c                                   |   5 +
 tests/test_tree1.dts                               |   1 +
 tests/test_tree1_label_noderef.dts                 |   1 +
 tests/tests.sh                                     |   1 +
 tests/trees.S                                      |   2 +
 ...hout-unit-addr.dts => unit-addr-leading-0s.dts} |   6 +-
 ...hout-unit-addr.dts => unit-addr-leading-0x.dts} |   6 +-
 44 files changed, 2450 insertions(+), 74 deletions(-)
 create mode 100644 fdtoverlay.c
 create mode 100644 pylibfdt/.gitignore
 create mode 100644 pylibfdt/Makefile.pylibfdt
 create mode 100644 pylibfdt/libfdt.i
 create mode 100755 pylibfdt/setup.py
 create mode 100644 tests/bad-gpio.dts
 create mode 100644 tests/bad-interrupt-cells.dts
 create mode 100644 tests/bad-phandle-cells.dts
 create mode 100644 tests/fdtoverlay-runtest.sh
 create mode 100644 tests/pylibfdt_tests.py
 create mode 100644 tests/stacked_overlay_bar.dts
 create mode 100644 tests/stacked_overlay_base.dts
 create mode 100644 tests/stacked_overlay_baz.dts
 copy tests/{reg-without-unit-addr.dts => unit-addr-leading-0s.dts} (61%)
 copy tests/{reg-without-unit-addr.dts => unit-addr-leading-0x.dts} (61%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/crosstoolchain/device-tree-compiler.git



More information about the Crosstoolchain-logs mailing list