summaryrefslogtreecommitdiff
path: root/tools/dtoc/fdt_select.py
blob: d6337ea22773ad18606af5e547312df53d405a36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python
#
# Copyright (C) 2016 Google, Inc
# Written by Simon Glass <sjg@chromium.org>
#
# SPDX-License-Identifier:      GPL-2.0+
#

# Bring in the normal fdt library (which relies on libfdt)
import fdt

def FdtScan(fname):
    """Returns a new Fdt object from the implementation we are using"""
    dtb = fdt.Fdt(fname)
    dtb.Scan()
    return dtb