Home
last modified time | relevance | path

Searched full:path (Results 1 – 25 of 50) sorted by relevance

12

/mcuboot-3.6.0/
D.gitmodules2 path = ext/mbedtls
5 path = boot/cypress/libs/mtb-pdl-cat1
8 path = boot/cypress/libs/pdl/psoc6pdl
11 path = boot/cypress/libs/retarget-io
14 path = boot/cypress/libs/core-lib
17 path = boot/cypress/libs/psoc6hal
20 path = boot/cypress/libs/cy-mbedtls-acceleration
/mcuboot-3.6.0/.github/workflows/
Dimgtool.yaml23 path: ~/.cache/pip
27 export PATH="$HOME/.local/bin:$PATH"
33 export PATH="$HOME/.local/bin:$PATH"
Dzephyr_build.yaml67 path: 'repos/zephyr'
80 path: 'repos/bootloader/mcuboot'
102 path: |
/mcuboot-3.6.0/scripts/imgtool/keys/
Decdsa_test.py8 import os.path
17 sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '../..')))
27 return os.path.join(self.test_dir.name, base)
Ded25519_test.py9 import os.path
17 sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '../..')))
28 return os.path.join(self.test_dir.name, base)
Drsa_test.py17 # Setup sys path so 'imgtool' is in it.
18 sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__),
31 return os.path.join(self.test_dir.name, base)
Ded25519.py40 def export_private(self, path, passwd=None): argument
43 def export_public(self, path): argument
48 with open(path, 'wb') as f:
89 def export_private(self, path, passwd=None): argument
102 with open(path, 'wb') as f:
Dx25519.py46 def export_private(self, path, passwd=None): argument
49 def export_public(self, path): argument
54 with open(path, 'wb') as f:
94 def export_private(self, path, passwd=None): argument
107 with open(path, 'wb') as f:
Decdsa.py6 import os.path
49 def export_private(self, path, passwd=None): argument
52 def export_public(self, path): argument
57 with open(path, 'wb') as f:
78 print(os.path.basename(__file__) +
129 def export_private(self, path, passwd=None): argument
140 with open(path, 'wb') as f:
Drsa.py56 def export_private(self, path, passwd=None): argument
59 def export_public(self, path): argument
64 with open(path, 'wb') as f:
153 def export_private(self, path, passwd=None): argument
164 with open(path, 'wb') as f:
D__init__.py46 def load(path, passwd=None): argument
47 """Try loading a key from the given path.
49 with open(path, 'rb') as f:
/mcuboot-3.6.0/boot/cypress/
DREADME.md77 *Make* - make sure it is added to system's `PATH` variable and correct path is first in the list;
79 *Python/Python3* - make sure you have correct path referenced in `PATH`;
81 *Msys2* - to use systems PATH navigate to msys2 folder, open `msys2_shell.cmd`, uncomment set `MSYS…
83 This will inherit system's PATH so should find `python3.7` installed in regular way as well as imgt…
/mcuboot-3.6.0/scripts/
Dassemble.py28 import os.path
99 dot_config = os.path.join(bootdir, "zephyr", ".config")
130 sys.path.insert(0, os.path.join(zephyr_base, "scripts", "dts", "python-devicetree", "src"))
135 edt_pickle = os.path.join(args.bootdir, "zephyr", "edt.pickle")
142 output.add_image(os.path.join(args.bootdir, 'zephyr', 'zephyr.bin'), 'mcuboot')
/mcuboot-3.6.0/boot/zephyr/
DCMakeLists.txt15 # Path to "boot" subdirectory of repository root.
17 # Path to top-level repository root directory.
19 # Path to tinycrypt library source subdirectory of MCUBOOT_DIR.
24 # Path to crypto-fiat
27 # Path to mbed-tls' asn1 parser library.
391 dt_prop(erase_size_slot0 PATH "${slot0_flash}" PROPERTY "erase-block-size")
392 dt_prop(write_size_slot0 PATH "${slot0_flash}" PROPERTY "write-block-size")
393 dt_prop(erase_size_slot1 PATH "${slot1_flash}" PROPERTY "erase-block-size")
394 dt_prop(write_size_slot1 PATH "${slot1_flash}" PROPERTY "write-block-size")
420 dt_prop(erase_size PATH "${slot0_flash}" PROPERTY "erase-block-size")
[all …]
DKconfig142 You can use either absolute or relative path.
143 In case relative path is used, the build system assumes that it starts
146 path that starts from the MCUBoot repository root directory.
228 uses a much simpler code path.
249 mode results in a simpler code path and smaller code size.
374 You can use either absolute or relative path.
375 In case relative path is used, the build system assumes that it starts
378 path that starts from the MCUBoot repository root directory.
/mcuboot-3.6.0/samples/mcuboot_config/
Dmcuboot_config.template.h15 * include path can find it as mcuboot_config/mcuboot_config.h, and
41 * with simpler code path, which only supports overwriting the existing image
49 /* Uncomment to enable the overwrite-only code path. */
58 /* Uncomment to enable the direct-xip code path. */
63 /* Uncomment to enable the ram-load code path. */
/mcuboot-3.6.0/scripts/imgtool/
Dimage.py30 import os.path
212 def load(self, path): argument
214 ext = os.path.splitext(path)[1][1:].lower()
217 ih = IntelHex(path)
221 with open(path, 'rb') as f:
236 def save(self, path, hex_addr=None): argument
238 ext = os.path.splitext(path)[1][1:].lower()
265 h.tofile(path, 'hex')
269 with open(path, 'wb') as f:
340 print(os.path.basename(__file__) + ": sign the payload")
[all …]
/mcuboot-3.6.0/boot/cypress/MCUBootApp/
DREADME.md214 *Make* - make sure it is added to system's `PATH` variable and correct path is first in the list;
216 *Python/Python3* - make sure you have correct path referenced in `PATH`;
218 *Msys2* - to use systems PATH navigate to msys2 folder, open `msys2_shell.cmd`, uncomment set `MSYS…
220 This will iherit system's PATH so should find `python3.7` installed in regular way as well as imgto…
/mcuboot-3.6.0/boot/espressif/hal/include/mcuboot_config/
Dmcuboot_config.h40 * with simpler code path, which only supports overwriting the existing image
48 /* Uncomment to enable the overwrite-only code path. */
57 /* Uncomment to enable the direct-xip code path. */
60 /* Uncomment to enable the ram-load code path. */
/mcuboot-3.6.0/ci/
Dmynewt_run.sh20 export PATH=$HOME/bin:$PATH
Dget_features.py18 import os.path
28 if not os.path.isfile(args.infile):
/mcuboot-3.6.0/boot/bootutil/include/bootutil/
Dboot_hooks.h67 * BOOT_HOOK_REGULAR: follow the normal execution path,
83 * FIH_BOOT_HOOK_REGULAR: follow the normal execution path.
97 * BOOT_HOOK_REGULAR: follow the normal execution path,
152 * BOOT_HOOK_REGULAR: follow the normal execution path, status will be
/mcuboot-3.6.0/boot/nuttx/include/mcuboot_config/
Dmcuboot_config.h53 * with simpler code path, which only supports overwriting the existing image
67 /* Enable the overwrite-only code path. */
81 /* Enable the direct-xip code path. */
93 /* Enable the ram-load code path. */
/mcuboot-3.6.0/boot/cypress/MCUBootApp/config/mcuboot_config/
Dmcuboot_config.h14 * include path can find it as mcuboot_config/mcuboot_config.h, and
44 * simpler code path, which only supports overwriting the
48 /* Uncomment to enable the overwrite-only code path. */
/mcuboot-3.6.0/sim/
DCargo.toml46 simflash = { path = "simflash" }
47 mcuboot-sys = { path = "mcuboot-sys" }

12