| /netbsd-src/sys/external/bsd/libfdt/conf/ |
| H A D | files.libfdt | 1 define libfdt 2 makeoptions libfdt CPPFLAGS+="-I$S/external/bsd/libfdt/dist" 4 file external/bsd/libfdt/dist/fdt.c libfdt 5 file external/bsd/libfdt/dist/fdt_addresses.c libfdt 6 file external/bsd/libfdt/dist/fdt_empty_tree.c libfdt 7 file external/bsd/libfdt/dist/fdt_ro.c libfdt 8 file external/bsd/libfdt/dist/fdt_rw.c libfdt 9 file external/bsd/libfdt/dist/fdt_strerror.c libfdt 10 file external/bsd/libfdt/dist/fdt_sw.c libfdt 11 file external/bsd/libfdt/dist/fdt_wip.c libfdt
|
| /netbsd-src/external/gpl2/dtc/dist/tests/ |
| H A 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)) 67 return libfdt.Fdt(open(fname, mode='rb').read()) 120 self.assertEquals(type(libfdt), types.ModuleType) 125 fdt = libfdt.Fdt(b'a string') 126 self.assertEquals(e.exception.err, -libfdt.BADMAGIC) 135 self.assertEquals(e.exception.err, -libfdt.NOTFOUND) 146 self.assertEquals(e.exception.err, -libfdt.NOTFOUND) 148 -libfdt.NOTFOUND) [all …]
|
| H A D | run_tests.sh | 22 export LD_LIBRARY_PATH=../libfdt
|
| /netbsd-src/external/gpl2/dtc/dist/ |
| H A 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 …]
|
| H A 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
|
| H A D | Makefile | 19 CPPFLAGS = -I libfdt -I . 147 all: $(BIN) libfdt 186 LIBFDT_dir = libfdt 187 LIBFDT_archive = $(LIBFDT_dir)/libfdt.a 192 include $(LIBFDT_dir)/Makefile.libfdt 194 .PHONY: libfdt 195 libfdt: $(LIBFDT_archive) $(LIBFDT_lib) target 225 ln -sf $(LIBFDT_soname) $(DESTDIR)$(LIBDIR)/libfdt.$(SHAREDLIB_EXT)
|
| /netbsd-src/sys/external/bsd/libfdt/dist/ |
| H A 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)
|
| H A D | .gitignore | 1 libfdt.so.1
|
| H A D | TODO | 3 - Complete libfdt.h documenting comments
|
| /netbsd-src/tools/dtc/ |
| H A D | Makefile | 5 LIBFDT_DIR= ${.CURDIR}/../../sys/external/bsd/libfdt/dist 11 FDTOBJ!= cd ${.CURDIR}/../libfdt && ${PRINTOBJDIR}
|
| /netbsd-src/external/gpl2/dtc/dist/pylibfdt/ |
| H A D | Makefile.pylibfdt | 5 PYLIBFDT_srcs = $(PYLIBFDT_dir)/libfdt.i 7 PYLIBFDT_CLEANFILES_L = libfdt_wrap.c libfdt.py *.pyc *.so
|
| H A D | .gitignore | 1 libfdt.py
|
| H A D | libfdt.i | 8 %module libfdt 33 # Error codes, corresponding to FDT_ERR_... in libfdt.h 1118 %include <libfdt.h>
|
| /netbsd-src/external/gpl2/dtc/ |
| H A D | dtc2netbsd | 88 mv $d/dtc/libfdt $d/libfdt
|
| H A D | Makefile.inc | 5 LIBFDTDIST= ${NETBSDSRCDIR}/sys/external/bsd/libfdt/dist
|
| /netbsd-src/external/gpl2/dtc/lib/ |
| H A D | Makefile | 3 SUBDIR+= libfdt
|
| /netbsd-src/sys/stand/efiboot/ |
| H A D | Makefile.efiboot | 33 .PATH: ${S}/external/bsd/libfdt/dist 34 CPPFLAGS+= -I${S}/external/bsd/libfdt/dist
|
| /netbsd-src/tools/libfdt/ |
| H A D | Makefile | 7 LIBFDT_DIR= ${.CURDIR}/../../sys/external/bsd/libfdt/dist
|
| /netbsd-src/sys/dev/fdt/ |
| H A D | files.fdt | 3 include "external/bsd/libfdt/conf/files.libfdt" 5 defflag opt_fdt.h FDTBASE : libfdt, ofw_subr
|
| /netbsd-src/usr.sbin/installboot/ |
| H A D | Makefile | 40 FDTDIR= ${.CURDIR}/../../sys/external/bsd/libfdt/dist
|
| /netbsd-src/tools/ |
| H A D | Makefile | 231 SUBDIR+= libfdt .WAIT
|
| /netbsd-src/external/gpl2/dtc/dist/Documentation/ |
| H A D | manual.txt | 21 III - libfdt 294 using the libfdt code. 647 III - libfdt
|
| /netbsd-src/external/gpl3/binutils/dist/ |
| H A D | ChangeLog.git | 171461 The dtc/libfdt project (which is the standard in other projects) processes 171474 the processing (e.g. libfdt). Either way, this device.c code would all get
|