blob: 54a3ef2e46e97bd4338f6571cdc2179322f9a710 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/python
#
# Copyright (C) 2016 Google, Inc
# Written by Simon Glass <sjg@chromium.org>
#
# SPDX-License-Identifier: GPL-2.0+
#
# Bring in either the normal fdt library (which relies on libfdt) or the
# fallback one (which uses fdtget and is slower). Both provide the same
# interface for this file to use.
import fdt_normal
def FdtScan(fname):
"""Returns a new Fdt object from the implementation we are using"""
dtb = fdt_normal.FdtNormal(fname)
dtb.Scan()
return dtb
|