Searched refs:libfdt (Results 1 – 25 of 39) sorted by relevance
12
/external/dtc/tests/ |
D | pylibfdt_tests.py | 13 import libfdt 14 from libfdt import Fdt, FdtSw, FdtException, QUIET_NOTFOUND, QUIET_ALL 56 return 'pylibfdt error %d: %s' % (-err_code, libfdt.strerror(-err_code)) 68 return libfdt.Fdt(f.read()) 121 self.assertEqual(type(libfdt), types.ModuleType) 126 fdt = libfdt.Fdt(b'a string') 127 self.assertEqual(e.exception.err, -libfdt.BADMAGIC) 136 self.assertEqual(e.exception.err, -libfdt.NOTFOUND) 147 self.assertEqual(e.exception.err, -libfdt.NOTFOUND) 149 -libfdt.NOTFOUND) [all …]
|
/external/dtc/ |
D | README.license | 1 Licensing and contribution policy of dtc and libfdt 5 libfdt which comprises the files in the libfdt/ subdirectory. These 7 dtc does not incorporate or rely on libfdt for its operation, nor vice 17 libfdt, however, is GPL/BSD dual-licensed. That is, it may be used 24 I made the decision to license libfdt in this way because I want to 27 tools. Allowing libfdt to be used under the terms of the BSD license 30 This does mean that libfdt code could be "stolen" - say, included in a 32 back to the libfdt mainline. While I hope that doesn't happen, I 33 believe the goal of allowing libfdt to be widely used is more 34 important than avoiding that. libfdt is quite small, and hardly [all …]
|
D | README | 2 working with device tree source and binary files and also libfdt, a 22 >>> import libfdt 23 >>> fdt = libfdt.Fdt(open('test_tree1.dtb', mode='rb').read()) 39 $ python3 -c "import libfdt; help(libfdt)" 59 To install both libfdt and pylibfdt you can use: 70 More work remains to support all of libfdt, including access to numeric 87 The following list is for discussion about dtc and libfdt implementation
|
D | Makefile | 23 CPPFLAGS = -I libfdt -I . -DFDT_ASSUME_MASK=$(ASSUME_MASK) 153 all: $(BIN) libfdt 179 ifneq ($(MAKECMDGOALS),libfdt) 194 LIBFDT_dir = libfdt 195 LIBFDT_archive = $(LIBFDT_dir)/libfdt.a 200 include $(LIBFDT_dir)/Makefile.libfdt 202 .PHONY: libfdt 203 libfdt: $(LIBFDT_archive) $(LIBFDT_lib) target 233 ln -sf $(LIBFDT_soname) $(DESTDIR)$(LIBDIR)/libfdt.$(SHAREDLIB_EXT) 323 ifneq ($(MAKECMDGOALS),libfdt)
|
/external/arm-trusted-firmware/lib/libfdt/ |
D | libfdt.mk | 7 LIBFDT_SRCS := $(addprefix lib/libfdt/libfdt/, \ 17 INCLUDES += -Iinclude/lib/libfdt/
|
/external/dtc/libfdt/ |
D | Makefile.libfdt | 7 LIBFDT_soname = libfdt.$(SHAREDLIB_EXT).1 8 LIBFDT_INCLUDES = fdt.h libfdt.h libfdt_env.h 13 LIBFDT_LIB = libfdt-$(DTC_VERSION).$(SHAREDLIB_EXT)
|
D | .gitignore | 1 libfdt.so.1
|
D | TODO | 3 - Complete libfdt.h documenting comments
|
D | Android.bp | 12 name: "libfdt",
|
/external/dtc/pylibfdt/ |
D | Makefile.pylibfdt | 5 PYLIBFDT_srcs = $(PYLIBFDT_dir)/libfdt.i 7 PYLIBFDT_CLEANFILES_L = libfdt_wrap.c libfdt.py *.pyc *.so
|
D | .gitignore | 1 libfdt.py
|
/external/arm-trusted-firmware/plat/allwinner/common/ |
D | allwinner-common.mk | 8 include lib/libfdt/libfdt.mk
|
/external/arm-trusted-firmware/plat/nvidia/tegra/soc/t194/ |
D | platform_t194.mk | 78 include lib/libfdt/libfdt.mk
|
/external/arm-trusted-firmware/plat/rockchip/rk3288/ |
D | platform.mk | 61 include lib/libfdt/libfdt.mk
|
/external/arm-trusted-firmware/plat/rockchip/rk3368/ |
D | platform.mk | 59 include lib/libfdt/libfdt.mk
|
/external/arm-trusted-firmware/plat/rockchip/px30/ |
D | platform.mk | 69 include lib/libfdt/libfdt.mk
|
/external/arm-trusted-firmware/plat/rpi/rpi4/ |
D | platform.mk | 7 include lib/libfdt/libfdt.mk
|
/external/arm-trusted-firmware/plat/rockchip/rk3328/ |
D | platform.mk | 63 include lib/libfdt/libfdt.mk
|
/external/arm-trusted-firmware/plat/rockchip/rk3399/ |
D | platform.mk | 74 include lib/libfdt/libfdt.mk
|
/external/arm-trusted-firmware/plat/qemu/qemu_sbsa/ |
D | platform.mk | 9 include lib/libfdt/libfdt.mk
|
/external/arm-trusted-firmware/plat/arm/board/arm_fpga/ |
D | platform.mk | 7 include lib/libfdt/libfdt.mk
|
/external/arm-trusted-firmware/plat/arm/board/a5ds/ |
D | platform.mk | 11 include lib/libfdt/libfdt.mk
|
/external/arm-trusted-firmware/plat/arm/board/fvp_ve/ |
D | platform.mk | 129 include lib/libfdt/libfdt.mk
|
/external/arm-trusted-firmware/plat/renesas/rzg/ |
D | platform.mk | 174 include lib/libfdt/libfdt.mk
|
/external/arm-trusted-firmware/plat/rpi/rpi3/ |
D | platform.mk | 7 include lib/libfdt/libfdt.mk
|
12