/mcuboot-3.6.0/ |
D | .gitmodules | 2 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/ |
D | imgtool.yaml | 23 path: ~/.cache/pip 27 export PATH="$HOME/.local/bin:$PATH" 33 export PATH="$HOME/.local/bin:$PATH"
|
D | zephyr_build.yaml | 67 path: 'repos/zephyr' 80 path: 'repos/bootloader/mcuboot' 102 path: |
|
/mcuboot-3.6.0/scripts/imgtool/keys/ |
D | ecdsa_test.py | 8 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)
|
D | ed25519_test.py | 9 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)
|
D | rsa_test.py | 17 # 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)
|
D | ed25519.py | 40 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:
|
D | x25519.py | 46 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:
|
D | ecdsa.py | 6 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:
|
D | rsa.py | 56 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__.py | 46 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/ |
D | README.md | 77 *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/ |
D | assemble.py | 28 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/ |
D | CMakeLists.txt | 15 # 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 …]
|
D | Kconfig | 142 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/ |
D | mcuboot_config.template.h | 15 * 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/ |
D | image.py | 30 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/ |
D | README.md | 214 *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/ |
D | mcuboot_config.h | 40 * 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/ |
D | mynewt_run.sh | 20 export PATH=$HOME/bin:$PATH
|
D | get_features.py | 18 import os.path 28 if not os.path.isfile(args.infile):
|
/mcuboot-3.6.0/boot/bootutil/include/bootutil/ |
D | boot_hooks.h | 67 * 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/ |
D | mcuboot_config.h | 53 * 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/ |
D | mcuboot_config.h | 14 * 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/ |
D | Cargo.toml | 46 simflash = { path = "simflash" } 47 mcuboot-sys = { path = "mcuboot-sys" }
|