/external/u-boot/scripts/ |
dtc-version.sh | 3 # dtc-version dtc-command 5 # Prints the dtc version of `dtc-command' in a canonical 6-digit form 6 # such as `010404' for dtc 1.4.4 9 dtc="$*" 11 if [ ${#dtc} -eq 0 ]; then 12 echo "Error: No dtc command specified." 13 printf "Usage:\n\t$0 <dtc-command>\n" 17 MAJOR=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 1 [all...] |
Makefile | 22 subdir-$(CONFIG_DTC) += dtc
|
/external/u-boot/scripts/dtc/ |
Makefile | 2 # scripts/dtc makefile 4 hostprogs-y := dtc 7 dtc-objs := dtc.o flattree.o fstree.o data.o livetree.o treesource.o \ 9 dtc-objs += dtc-lexer.lex.o dtc-parser.tab.o 29 $(obj)/dtc-lexer.lex.o: $(obj)/dtc-parser.tab.h
|
update-dtc-source.sh | 3 # Simple script to update the version of DTC carried by the Linux kernel 5 # This script assumes that the dtc and the linux git trees are in the 6 # same directory. After building dtc in the dtc directory, it copies the 7 # source files and generated source file(s) into the scripts/dtc directory 12 # $ ./scripts/dtc/update-dtc-source.sh 14 # The script will change into the dtc tree, build and test dtc, copy the 16 # message will need to be modified to reflect the version of DTC bein [all...] |
/external/u-boot/test/ |
run | 19 DTC_DIR=build-sandbox_spl/scripts/dtc 21 PYTHONPATH=${DTC_DIR}/pylibfdt DTC=${DTC_DIR}/dtc run_test \ 25 PYTHONPATH=${DTC_DIR}/pylibfdt DTC=${DTC_DIR}/dtc run_test ./tools/dtoc/dtoc -t 31 PYTHONPATH=${DTC_DIR}/pylibfdt DTC=${DTC_DIR}/dtc run_test \
|
/external/dtc/scripts/ |
kup-dtc | 3 REMOTE_GIT=/pub/scm/utils/dtc/dtc.git 4 REMOTE_PATH=/pub/software/utils/dtc 13 PREFIX="dtc-$VERSION/" 14 TAR="dtc-$VERSION.tar"
|
/external/dtc/ |
dtdiff | 8 DTC=dtc 30 $DTC -I $IFORMAT -O dts -qq -f -s -o - "$DT"
|
Makefile | 97 (echo "#define DTC_VERSION \"DTC $(dtc_version)\""; ) 115 include Makefile.dtc 119 BIN += dtc 219 dtc: $(DTC_OBJS) 234 git archive --format=tar --prefix=dtc-$(dtc_version)/ HEAD \ 235 > ../dtc-$(dtc_version).tar 236 cat ../dtc-$(dtc_version).tar | \ 237 gzip -9 > ../dtc-$(dtc_version).tar.gz 262 KUPDIR = /pub/software/utils/dtc 265 $(GPG) --detach-sign --armor -o ../dtc-$(dtc_version).tar.sign [all...] |
/external/u-boot/lib/libfdt/ |
Makefile | 25 ccflags-y := -I$(srctree)/scripts/dtc/libfdt
|
/external/dtc/tests/ |
tests.sh | 21 DTC=../dtc
|
run_tests.sh | 129 printf "dtc $*: " 130 base_run_test wrap_test $VALGRIND $DTC "$@" 180 # Test to exercise libfdt overlay application without dtc's overlay support 216 # Tests to exercise dtc's overlay generation support 218 # Overlay tests for dtc 284 run_sh_test dtc-checkfails.sh "$@" -- -I dts -O dtb $tree 286 run_sh_test dtc-checkfails.sh "$@" -- -I dtb -O dtb $tree.test.dtb 393 run_wrap_error_test $DTC division-by-zero.dts 394 run_wrap_error_test $DTC bad-octal-literal.dts 396 run_wrap_error_test $DTC nul-in-line-info1.dt [all...] |
/external/u-boot/test/py/tests/ |
test_vboot.py | 33 @pytest.mark.requiredtool('dtc') 46 def dtc(dts): function in function:test_vboot 56 util.run_and_log(cons, 'dtc %s %s%s -O dtb ' 121 dtc('sandbox-kernel.dts') 122 dtc('sandbox-u-boot.dts') 134 dtc('sandbox-u-boot.dts')
|
/device/ti/beagle_x15/boot_fit/ |
Android.mk | 5 DTC := $(HOST_OUT_EXECUTABLES)/dtc 20 $(BOOTIMG_FIT): $(BOARD_DIR)/$(ITS) $(MKIMAGE) $(DTC) $(wildcard $(LOCAL_KERNEL)/*.dtb)
|
/external/u-boot/tools/dtoc/ |
fdt_util.py | 81 dtc = os.environ.get('DTC') or 'dtc' 82 command.Run(dtc, *args)
|
/external/dtc/Documentation/ |
dtc-paper.tex | 35 \newcommand{\dtc}{\texttt{dtc}\xspace} 48 The ``blob'' representing the device tree can be created using \dtc 206 included as part of the \dtc (see \S\ref{sec:dtc}) git tree, 315 \label{sec:dtc} 367 \caption{Example \dtc source} 386 so is tedious. The ``device tree compiler'', \dtc{}\footnote{\dtc can 394 source, \dtc can convert a device tree between a number o [all...] |
/external/ltp/testcases/misc/math/fptests/ |
fptest01.c | 88 double dtc, dts, alpha; /* timing parameters */ variable 104 dtc = 0.01; 264 return (dtc);
|
fptest02.c | 88 double dtc, dts, alpha; /* timing parameters */ variable 103 dtc = 0.01; 245 return (dtc);
|
/device/google/cuttlefish_common/host/libs/vm_manager/ |
cf_qemu.sh | 61 dtc_binary=${dtc_binary:-dtc}
|
/external/u-boot/tools/ |
imagetool.h | 56 char *dtc; member in struct:image_tool_params
|
mkimage.c | 23 .dtc = MKIMAGE_DEFAULT_DTC_OPTIONS, 186 params.dtc = optarg;
|
Makefile | 63 # The following files are synced with upstream DTC. 64 # Use synced versions from scripts/dtc/libfdt/. 248 -I$(srctree)/scripts/dtc/libfdt \
|
/device/ti/beagle_x15/ |
uboot.mk | 58 UBOOT_DTC := $(HOST_OUT_EXECUTABLES)/dtc 136 DTC="$(UBOOT_DTC_ABS)" \
|
/external/u-boot/dts/ |
Kconfig | 8 config DTC 27 select DTC 289 string "Path to dtc binary for use within mkimage" 290 default "dtc" 293 calls to the dtc application in order to create the output. In 294 some cases the system dtc may not support all required features
|
/external/python/dateutil/dateutil/ |
rrule.py | 255 comp = lambda dc, dtc: dc >= dtc 257 comp = lambda dc, dtc: dc > dtc [all...] |
/external/cldr/tools/java/org/unicode/cldr/test/ |
DisplayAndInputProcessor.java | 291 static final DateTimeCanonicalizer dtc = new DateTimeCanonicalizer(FIX_YEARS); field in class:DisplayAndInputProcessor 364 value = dtc.getCanonicalDatePattern(path, value, datetimePatternType); [all...] |