Home
last modified time | relevance | path

Searched full:tools (Results 1 – 25 of 162) sorted by relevance

1234567

/rk3399_rockchip-uboot/scripts/
H A DREADME.rockchip7 Example usage of scripts/tools for Rockchip
11 - Get more detail information by scripts/tools help
38 [tools]
40 ./tools/resource_tool rk-kernel.dtb logo_kernel.bmp logo.bmp
41 ./tools/resource_tool --unpack --image=resource.img out/
44 ./tools/trust_merger ./RKTRUST/RK3399TRUST.ini
45 ./tools/trust_merger --unpack trust.img
48 ./tools/boot_merger ./RKBOOT/RK3399MINIALL.ini
49 ./tools/boot_merger --unpack rk3399_loader_v1.17.115.bin
52 ./tools/loaderimage --pack --uboot ./u-boot.bin uboot.img 0x60000000 --size 1024 2
[all …]
H A DMakefile.spl154 cmd_mkimage = $(objtree)/tools/mkimage $(MKIMAGEFLAGS_$(@F)) -d $< $@ \
168 MKIMAGEFLAGS_boot.bin += -n $(shell $(obj)/../tools/atmel_pmecc_params)
170 boot.bin: $(obj)/../tools/atmel_pmecc_params
279 cmd_dtocc = $(pythonpath) $(srctree)/tools/dtoc/dtoc -d $(obj)/$(SPL_BIN).dtb -o $@ platdata
282 cmd_dtoch = $(pythonpath) $(srctree)/tools/dtoc/dtoc -d $(obj)/$(SPL_BIN).dtb -o $@ struct
308 $(if $(wildcard $(objtree)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl),\
309 $(objtree)/spl/board/samsung/$(BOARD)/tools/mk$(BOARD)spl,\
310 $(objtree)/tools/mkexynosspl) $(VAR_SIZE_PARAM) $< $@
346 cmd_mksunxiboot = $(objtree)/tools/mksunxiboot \
352 cmd_sunxi_spl_image_builder = $(objtree)/tools/sunxi-spl-image-builder \
/rk3399_rockchip-uboot/dts/
H A DMakefile37 cmd_fdtgrep = $(objtree)/tools/fdtgrep $(fdtgrep_props) -RT $< \
39 $(objtree)/tools/fdtgrep -r -O dtb - -o $@ \
43 cmd_fdtgrep_uboot = $(objtree)/tools/fdtgrep $(fdtgrep_props) -RT $< \
45 $(objtree)/tools/fdtgrep -r -O dtb - -o $@ \
50 cmd_fdtgrep_tpl = $(objtree)/tools/fdtgrep $(fdtgrep_tpl_props) -RT $< \
52 $(objtree)/tools/fdtgrep -r -O dtb - -o $@ \
57 cmd_fdtgrep_spl_minimum = $(objtree)/tools/fdtgrep $(fdtgrep_spl_minimum_props) -RT $< \
59 $(objtree)/tools/fdtgrep -r -O dtb - -o $@ \
62 $(obj)/dt-tpl.dtb: $(DTB) $(objtree)/tools/fdtgrep FORCE
66 $(obj)/dt-spl.dtb: $(DTB) $(objtree)/tools/fdtgrep FORCE
[all …]
/rk3399_rockchip-uboot/doc/
H A DREADME.menu82 to pick from a list of tools. The item key and data are the same.
86 char *tools[] = {
99 m = menu_create("Tools", 0, 1, NULL);
101 for(i = 0; tools[i]; i++) {
102 if (menu_item_add(m, tools[i], tools[i]) != 1) {
H A DREADME.rockusb11 Tools
13 There are many tools can support Rockusb protocol. rkdeveloptool
17 (https://github.com/rockchip-linux/rkbin/blob/master/tools/rkdeveloptool)
/rk3399_rockchip-uboot/board/samsung/origen/
H A DMakefile11 hostprogs-y := tools/mkorigenspl
18 # Fix the root cause in tools/mkorigenspl.c and delete the following work-around
19 $(obj)/tools/mkorigenspl: HOSTCFLAGS:=$(filter-out -O2,$(HOSTCFLAGS))
/rk3399_rockchip-uboot/tools/binman/etype/
H A Dentry.py18 import tools
103 if tools.NotPowerOfTwo(self.align):
109 if tools.NotPowerOfTwo(self.align_size):
147 self.pos = tools.Align(pos, self.align)
149 needed = tools.Align(needed, self.align_size)
154 aligned_pos = tools.Align(new_pos, self.align_end)
168 if self.size != tools.Align(self.size, self.align_size):
171 if self.pos != tools.Align(self.pos, self.align):
H A Du_boot_spl_bss_pad.py14 import tools
21 fname = tools.GetInputFilename('spl/u-boot-spl')
H A Dblob.py11 import tools
20 self._pathname = tools.GetInputFilename(self._filename)
/rk3399_rockchip-uboot/tools/dtoc/
H A Dfdt_util.py15 import tools
62 dts_input = tools.GetOutputFilename('source.dts')
63 dtb_output = tools.GetOutputFilename('source.dtb')
74 # If we don't have a directory, put it in the tools tempdir
H A Dtest_dtoc.py24 import tools
66 tools.PrepareOutputDir(None)
70 tools._RemoveOutputDir()
124 output = tools.GetOutputFilename('output')
138 output = tools.GetOutputFilename('output')
240 output = tools.GetOutputFilename('output')
302 output = tools.GetOutputFilename('output')
332 output = tools.GetOutputFilename('output')
384 output = tools.GetOutputFilename('output')
424 output = tools.GetOutputFilename('output')
[all …]
/rk3399_rockchip-uboot/tools/binman/
H A Dcontrol.py12 import tools
93 tools.SetInputDirs(options.indir)
94 tools.PrepareOutputDir(options.outdir, options.preserve)
114 tools.FinaliseOutputDir()
H A Dbinman.py61 cmd = ('PYTHONPATH=%s/sandbox_spl/tools coverage run '
62 '--include "tools/binman/*.py" --omit "*test*,*binman.py" '
63 'tools/binman/binman.py -t' % options.build_dir)
H A Dbinman61 cmd = ('PYTHONPATH=%s/sandbox_spl/tools coverage run '
62 '--include "tools/binman/*.py" --omit "*test*,*binman.py" '
63 'tools/binman/binman.py -t' % options.build_dir)
H A Dimage.py15 import tools
71 if tools.NotPowerOfTwo(self._align_size):
98 size = tools.Align(size, self._align_size)
105 if self._size != tools.Align(self._size, self._align_size):
222 fname = tools.GetOutputFilename(self._filename)
/rk3399_rockchip-uboot/
H A D.travis.yml60 - if [[ "${TOOLCHAIN}" == *m68k* ]]; then ./tools/buildman/buildman --fetch-arch m68k ; fi
61 …- if [[ "${TOOLCHAIN}" == *microblaze* ]]; then ./tools/buildman/buildman --fetch-arch microblaze …
62 - if [[ "${TOOLCHAIN}" == *mips* ]]; then ./tools/buildman/buildman --fetch-arch mips ; fi
63 - if [[ "${TOOLCHAIN}" == *or32* ]]; then ./tools/buildman/buildman --fetch-arch or32 ; fi
64 - if [[ "${TOOLCHAIN}" == *sh4* ]]; then ./tools/buildman/buildman --fetch-arch sh4 ; fi
66 ./tools/buildman/buildman --fetch-arch x86_64;
73 - if [[ "${TOOLCHAIN}" == *xtensa* ]]; then ./tools/buildman/buildman --fetch-arch xtensa ; fi
98 tools/buildman/buildman -P ${BUILDMAN};
101 tools/buildman/buildman -sdeP ${BUILDMAN};
/rk3399_rockchip-uboot/test/image/
H A Dtest-imagetools.sh5 # Sanity check for mkimage and dumpimage tools
26 MKIMAGE=${BASEDIR}/tools/mkimage
27 DUMPIMAGE=${BASEDIR}/tools/dumpimage
204 # List contents of multi-file image and compares output from tools
216 # List contents of FIT image and compares output from tools
/rk3399_rockchip-uboot/arch/arm/include/asm/mach-imx/
H A Dimximage.cfg9 * NOTE: This file must be kept in sync with tools/imximage.h because
10 * tools/imximage.c can not cross-include headers from arch/arm/
/rk3399_rockchip-uboot/env/
H A Dembedded.c34 * U-Boot proper. The host based program "tools/envcrc" does not need
37 #if defined(USE_HOSTCC) /* Native for 'tools/envcrc' */
86 * tools/envcrc, they are placed in the
/rk3399_rockchip-uboot/board/rockchip/evb_rk3328/
H A DREADME58 > ./rkbin/tools/trust_merger rkbin/tools/RK3328TRUST.ini
59 > ./rkbin/tools/loaderimage --pack --uboot u-boot/u-boot-dtb.bin uboot.img
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-sunxi/
H A Dspl.h35 * by the boot ROM. To be compatible with Allwinner tools we
47 * (E.g. sunxi-tools "fel" utility can pass information there.)
65 * by flash programming tools for providing nice informative messages
/rk3399_rockchip-uboot/scripts/kconfig/
H A Dmerge_config.sh8 # http://git.yoctoproject.org/cgit/cgit.cgi/yocto-kernel-tools/tree/tools/kconf_check
9 # http://git.yoctoproject.org/cgit/cgit.cgi/yocto-kernel-tools/tree/tools/generate_cfg
/rk3399_rockchip-uboot/tools/env/
H A DMakefile9 # built with cross tools. Although it may look weird, we only replace "HOSTCC"
15 -idirafter $(srctree)/tools/env \
/rk3399_rockchip-uboot/board/rockchip/evb_rk3399/
H A DREADME81 > tools/mkimage -n rk3399 -T rksd -d spl/u-boot-spl.bin idbspl.img
89 > ./rkbin/tools/trust_merger rkbin/tools/RK3399TRUST.ini
90 > ./rkbin/tools/loaderimage --pack --uboot u-boot/u-boot-dtb.bin uboot.img
/rk3399_rockchip-uboot/tools/gdb/
H A DMakefile22 BFD_ROOT_DIR = /usr/local/tools
35 # Use native tools and options

1234567