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

Vagrant Cascadian vagrant at moszumanska.debian.org
Mon Sep 25 16:23:50 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  8f70ac3   checks: Pass boot_info instead of root node
       new  a2c92ca   dtc: Document the dynamic plugin internals
       new  20f29d8   dtc: Plugin and fixup support
       new  9637e3f   tests: Add check_path test
       new  e7b3c3b   tests: Add overlay tests
       new  72e1ad8   tests: Make overlay/plugin tests unconditional
       new  47b4d66   tests: Test auto-alias generation on base tree, not overlay
       new  3ea879d   tests: Split overlay tests into those with do/don't exercise dtc plugin generation
       new  b4dc0ed   tests: Fix double expansion bugs in test code
       new  7d8ef6e   tests: Correct fdt handling of overlays without fixups and base trees without symbols
       new  6ea8cd9   tests: More thorough tests of libfdt overlay application without dtc
       new  ba765b2   tests: Clarify dtc overlay tests
       new  6638153   tests: Remove "suppression of fixups" tests
       new  c96cb3c   tests: Don't use -@ on plugin de/recompile tests
       new  e3c769a   dtc: Don't always generate __symbols__ for plugins
       new  1ef86ad   dtc: Clean up /dts-v1/ and /plugin/ handling in grammar
       new  00fbb86   Rename boot_info
       new  f888654   dtc: Fix memory leak in character literal parsing
       new  0931cea   dtc: fdtdump: check fdt if not in scanning mode
       new  4baf15f   Makefile: Add tags rule
       new  43eb551   manual: Fix typo it -> in
       new  3b9c970   dtc: Fix NULL pointer use in dtlabel + dtref case
       new  95d5772   livetree.c: Fix memory leak
       new  00d7bb1   dtc: pos parameter to srcpos_string() can't be NULL
       new  ef0e8f0   checks: Add Warning for stricter property name character checking
       new  852e9ec   checks: Add Warning for stricter node name character checking
       new  120775e   dtc: Use streq() in preference to strcmp()
       new  acd1b53   Print output filename as part of warning messages
       new  69a1bd6   libfdt: Remove undefined behaviour setting empty properties
       new  397d5ef   libfdt: Add fdt_setprop_empty()
       new  f72508e   Correct some broken printf() like format mismatches
       new  34a9886   Add printf format attributes
       new  fa8bc7f   dtc: Bump version to v1.4.3
       new  49300f2   dtc: Don't abuse struct fdt_reserve_entry
       new  672ac09   Clean up gcc attributes
       new  bad5b28   Fix assorted sparse warnings
       new  881012e   libfdt: Change names of sparse helper macros
       new  9ffdf60   dtc: Simplify asm_emit_string() implementation
       new  921cc17   libfdt: overlay: Check the value of the right variable
       new  d922ecd   tests: Make realloc_fdt() really allocate *fdt
       new  194d5ca   fdtget: Use @return to document the return value
       new  c17a811   fdtput: Remove star from value_len documentation
       new  558cd81   dtc: Bump version to v1.4.4

The 42 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:
 Documentation/dt-object-internal.txt               | 310 ++++++++++++++++++++
 Documentation/manual.txt                           |  23 +-
 Makefile                                           |   8 +-
 checks.c                                           | 218 ++++++++------
 convert-dtsv0-lexer.l                              |   2 +-
 data.c                                             |  16 +-
 dtc-lexer.l                                        |  24 +-
 dtc-parser.y                                       |  39 ++-
 dtc.c                                              |  63 ++--
 dtc.h                                              |  44 ++-
 fdtdump.c                                          |  29 +-
 fdtget.c                                           |   4 +-
 fdtput.c                                           |   4 +-
 flattree.c                                         |  78 +++--
 fstree.c                                           |   5 +-
 libfdt/fdt_overlay.c                               |  30 +-
 libfdt/fdt_rw.c                                    |   3 +-
 libfdt/libfdt.h                                    |  30 ++
 libfdt/libfdt_env.h                                |  26 +-
 livetree.c                                         | 317 +++++++++++++++++++--
 srcpos.c                                           |   2 +-
 srcpos.h                                           |  11 +-
 tests/.gitignore                                   |   1 +
 tests/Makefile.tests                               |   3 +-
 tests/char_literal.c                               |   2 +-
 tests/{overlay_bad_fixup.c => check_path.c}        |  49 ++--
 tests/dtbs_equal_ordered.c                         |   2 +-
 tests/dtbs_equal_unordered.c                       |  10 +-
 tests/dumptrees.c                                  |   2 +-
 tests/integer-expressions.c                        |   4 +-
 tests/node_offset_by_prop_value.c                  |   2 +-
 tests/nopulate.c                                   |   2 +-
 tests/overlay.c                                    |   5 +-
 ...ay_base.dts => overlay_base_manual_symbols.dts} |   4 +
 ...overlay_overlay_dtc.dts => overlay_overlay.dts} |   1 +
 tests/overlay_overlay_manual_fixups.dts            | 112 ++++++++
 ...lay_nodtc.dts => overlay_overlay_no_fixups.dts} |   0
 tests/overlay_overlay_simple.dts                   |  12 +
 tests/property_iterate.c                           |   4 +-
 tests/references.c                                 |   4 +-
 tests/run_tests.sh                                 |  75 ++++-
 tests/setprop.c                                    |   2 +-
 tests/sized_cells.c                                |   6 +-
 tests/subnode_iterate.c                            |   4 +-
 tests/sw_tree1.c                                   |   4 +-
 tests/test_label_ref.dts                           |   9 +
 tests/tests.h                                      |   6 +-
 tests/value-labels.c                               |   6 +-
 treesource.c                                       |  20 +-
 util.c                                             |  11 +-
 util.h                                             |  24 +-
 51 files changed, 1326 insertions(+), 346 deletions(-)
 create mode 100644 Documentation/dt-object-internal.txt
 copy tests/{overlay_bad_fixup.c => check_path.c} (63%)
 copy tests/{overlay_base.dts => overlay_base_manual_symbols.dts} (75%)
 rename tests/{overlay_overlay_dtc.dts => overlay_overlay.dts} (96%)
 create mode 100644 tests/overlay_overlay_manual_fixups.dts
 rename tests/{overlay_overlay_nodtc.dts => overlay_overlay_no_fixups.dts} (100%)
 create mode 100644 tests/overlay_overlay_simple.dts
 create mode 100644 tests/test_label_ref.dts

-- 
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