/tools/binman/ |
A D | cmdline.py | 26 extract_parser.add_argument('-F', '--format', type=str, 30 extract_parser.add_argument('-f', '--filename', type=str, 34 extract_parser.add_argument('paths', type=str, nargs='*', 77 pars.add_argument('-O', '--outdir', type=str, 97 parser.add_argument('--tooldir', type=str, 102 parser.add_argument('-T', '--threads', type=int, 117 build_parser.add_argument('-b', '--board', type=str, 119 build_parser.add_argument('-d', '--dt', type=str, 156 list_parser.add_argument('paths', type=str, nargs='*', 167 replace_parser.add_argument('-f', '--filename', type=str, [all …]
|
A D | fdt_test.py | 49 self.assertEqual(str, type(val)) 53 self.assertEqual(fdt.Type.INT, prop.type) 57 self.assertEqual(fdt.Type.INT, prop.type) 58 self.assertEqual(list, type(prop.value)) 64 self.assertEqual(fdt.Type.BYTE, prop.type) 68 self.assertEqual(fdt.Type.BYTE, prop.type) 69 self.assertEqual(list, type(prop.value)) 70 self.assertEqual(str, type(prop.value[0])) 75 self.assertEqual(fdt.Type.INT, prop.type) 79 self.assertEqual(fdt.Type.STRING, prop.type) [all …]
|
/tools/binman/test/yaml/ |
A D | schema.yaml | 9 type: integer 13 type: integer 17 type: integer 21 type: object 24 type: object 27 type: object 34 type: array 40 type: array 44 type: object
|
A D | schema_notype.yaml | 9 type: integer 13 type: integer 17 type: integer 21 type: object 24 type: object 27 type: object 34 type: array
|
/tools/ |
A D | mtk_nand_headers.c | 431 .type = NAND_BOOT_AP_HEADER, 435 .type = NAND_BOOT_AP_HEADER, 439 .type = NAND_BOOT_AP_HEADER, 443 .type = NAND_BOOT_AP_HEADER, 447 .type = NAND_BOOT_AP_HEADER, 451 .type = NAND_BOOT_AP_HEADER, 455 .type = NAND_BOOT_AP_HEADER, 459 .type = NAND_BOOT_AP_HEADER, 463 .type = NAND_BOOT_AP_HEADER, 518 switch (hdr_nand->type) { in mtk_nand_header_size() [all …]
|
A D | ifwitool.c | 94 uint16_t type; member 196 uint8_t type; member 884 if (e[i].type == type) in __find_entry_by_type() 951 type = e[i].type; in read_subpart_buf() 960 type, subparts[type].name); in read_subpart_buf() 1288 int i, type; in bpdt_entries_init_header_order() local 1313 curr->e[*count_ptr].type = type; in bpdt_entries_init_header_order() 1345 int i, type; in bpdt_entries_init_pack_order() local 1776 subparts[type].name, type); in ifwi_dir_add() 1867 subparts[type].name, type); in ifwi_dir_extract() [all …]
|
A D | default_image.c | 26 static int image_check_image_types(uint8_t type) in image_check_image_types() argument 28 if (((type > IH_TYPE_INVALID) && (type < IH_TYPE_FLATDT)) || in image_check_image_types() 29 (type == IH_TYPE_KERNEL_NOLOAD) || (type == IH_TYPE_FIRMWARE_IVT) || in image_check_image_types() 30 (type == IH_TYPE_FDT_LEGACY)) in image_check_image_types() 118 int type; in image_set_header() local 130 if (params->type == IH_TYPE_FIRMWARE_IVT) in image_set_header() 138 if (params->type == IH_TYPE_FDT_LEGACY) in image_set_header() 139 type = IH_TYPE_FLATDT; in image_set_header() 141 type = params->type; in image_set_header() 157 image_set_type(hdr, type); in image_set_header()
|
A D | mkimage.c | 27 .type = IH_TYPE_KERNEL, 151 cont->type = type; in add_content() 205 int type = IH_TYPE_INVALID; in process_args() local 286 params.type = IH_TYPE_FLATDT; in process_args() 355 type = genimg_get_type_id(optarg); in process_args() 356 if (type < 0) { in process_args() 394 params.fit_image_type = type ? type : IH_TYPE_KERNEL; in process_args() 403 params.type = type; in process_args() 609 if (!params.skipcpy && params.type != IH_TYPE_MULTI && params.type != IH_TYPE_SCRIPT) { in main() 876 (((params.type > IH_TYPE_INVALID) && (params.type < IH_TYPE_FLATDT)) || in copy_file() [all …]
|
A D | mips-relocs.c | 105 uint8_t type; member 110 static int add_reloc(unsigned int type, uint64_t off) in add_reloc() argument 115 switch (type) { in add_reloc() 143 .type = type, in add_reloc() 153 uint32_t off, type; in parse_mips32_rel() local 159 type = ELF32_R_TYPE(type); in parse_mips32_rel() 161 return add_reloc(type, off); in parse_mips32_rel() 167 uint64_t off, type; in parse_mips64_rela() local 172 type = rel->r_info >> (64 - 8); in parse_mips64_rela() 174 return add_reloc(type, off); in parse_mips64_rela() [all …]
|
A D | fdtgrep.c | 127 disp->types_inc |= type; in value_add() 129 disp->types_exc |= type; in value_add() 143 node->type = type; in value_add() 533 if (!(type & val->type)) in check_type_include() 552 if ((type & disp->types_exc) && (none_match & type)) { in check_type_include() 1123 int type = 0; in scan_args() local 1142 type = FDT_IS_COMPAT; in scan_args() 1157 type = FDT_ANY_GLOBAL; in scan_args() 1178 type = FDT_IS_NODE; in scan_args() 1197 type = FDT_IS_PROP; in scan_args() [all …]
|
/tools/buildman/ |
A D | cmdline.py | 30 parser.add_argument('-b', '--branch', type=str, 35 parser.add_argument('--boards', type=str, action='append', 62 parser.add_argument('--fetch-arch', type=str, 69 parser.add_argument('-g', '--git', type=str, 71 parser.add_argument('-G', '--config-file', type=str, 135 parser.add_argument('--process-limit', type=int, 145 parser.add_argument('--step', type=int, 154 parser.add_argument('-T', '--threads', type=int, 157 parser.add_argument('--target', type=str, 172 type=str, action='append', [all …]
|
/tools/binman/test/ |
A D | 009_pack_extra.dts | 15 type = "u-boot"; 20 type = "u-boot"; 26 type = "u-boot"; 31 type = "u-boot"; 37 type = "u-boot";
|
A D | 008_pack.dts | 12 type = "u-boot"; 17 type = "u-boot"; 22 type = "u-boot"; 26 type = "u-boot";
|
A D | 186_compress_extra.dts | 9 type = "section"; 22 type = "section"; 28 type = "blob"; 33 type = "u-boot";
|
A D | 105_cbfs_raw_compress.dts | 13 type = "text"; 15 cbfs-type = "raw"; 19 type = "text"; 21 cbfs-type = "raw";
|
A D | 066_text.dts | 14 type = "text"; 18 type = "text"; 23 type = "text"; 29 type = "text";
|
A D | 131_pack_align_section.dts | 11 type = "section"; 17 type = "section"; 22 type = "section";
|
A D | 110_cbfs_name.dts | 14 cbfs-type = "raw"; 18 type = "blob"; 20 cbfs-type = "raw";
|
A D | 346_nxp_ddrfw_imx95.dts | 11 type = "nxp-header-ddrfw"; 15 type = "blob-ext"; 20 type = "blob-ext";
|
A D | 170_fit_fdt.dts | 20 type = "firmware"; 27 type = "firmware"; 34 type = "kernel"; 51 type = "flat_dt";
|
A D | 333_fit_fdt_dir.dts | 20 type = "firmware"; 27 type = "firmware"; 34 type = "kernel"; 51 type = "flat_dt";
|
A D | 345_fit_fdt_name.dts | 20 type = "firmware"; 27 type = "firmware"; 34 type = "kernel"; 51 type = "flat_dt";
|
A D | 088_extend_size.dts | 22 type = "u-boot"; 26 type = "section"; 37 type = "fill";
|
A D | 127_list.dts | 17 cbfs-type = "raw"; 21 type = "text"; 23 cbfs-type = "raw";
|
A D | 223_fit_fdt_oper.dts | 20 type = "firmware"; 27 type = "firmware"; 34 type = "kernel"; 52 type = "flat_dt";
|