Update buildroot 2018.11 (#274)

This commit is contained in:
Pascal Vizeli
2018-12-02 16:25:21 +01:00
committed by GitHub
parent d6ad746fda
commit 76fad70ebe
86 changed files with 1185 additions and 268 deletions

View File

@@ -94,9 +94,10 @@ def get_all_depends(pkgs, get_depends_func):
# The Graphviz "dot" utility doesn't like dashes in node names. So for
# node names, we strip all dashes.
# node names, we strip all dashes. Also, nodes can't start with a number,
# so we prepend an underscore.
def pkg_node_name(pkg):
return pkg.replace("-", "")
return "_" + pkg.replace("-", "")
TARGET_EXCEPTIONS = [