aboutsummaryrefslogtreecommitdiff
path: root/pylibfdt
diff options
context:
space:
mode:
authorAppana Durga Kedareswara rao <appana.durga.rao@xilinx.com>2019-07-03 10:38:07 +0530
committerDavid Gibson <david@gibson.dropbear.id.au>2019-07-04 12:56:47 +1000
commitd6de81b81b68f9e559adf42366574233be338fd8 (patch)
tree6da22dda119c7bec630c75407cd8f208b47ee085 /pylibfdt
parent1c17714dbb3aa43e5b7927dfc073e5e88ae20655 (diff)
downloaddtc-d6de81b81b68f9e559adf42366574233be338fd8.zip
dtc-d6de81b81b68f9e559adf42366574233be338fd8.tar.gz
dtc-d6de81b81b68f9e559adf42366574233be338fd8.tar.bz2
pylibfdt: Add support for fdt_get_alias()
Add this into the class to simplify use of this function. Signed-off-by: Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com> Message-Id: <1562130487-27028-1-git-send-email-appana.durga.rao@xilinx.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'pylibfdt')
-rw-r--r--pylibfdt/libfdt.i12
1 files changed, 12 insertions, 0 deletions
diff --git a/pylibfdt/libfdt.i b/pylibfdt/libfdt.i
index ecec4dd..feb8c9c 100644
--- a/pylibfdt/libfdt.i
+++ b/pylibfdt/libfdt.i
@@ -431,6 +431,18 @@ class FdtRo(object):
"""
return fdt_get_phandle(self._fdt, nodeoffset)
+ def get_alias(self, name):
+ """Get the full path referenced by a given alias
+
+ Args:
+ name: name of the alias to lookup
+
+ Returns:
+ Full path to the node for the alias named 'name', if it exists
+ None, if the given alias or the /aliases node does not exist
+ """
+ return fdt_get_alias(self._fdt, name)
+
def parent_offset(self, nodeoffset, quiet=()):
"""Get the offset of a node's parent