/mcuboot-latest/ |
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-latest/.github/workflows/ |
D | imgtool.yaml | 27 cache-dependency-path: | 42 path: | 55 path: ~/.cache/pip 59 export PATH="$HOME/.local/bin:$PATH" 65 export PATH="$HOME/.local/bin:$PATH"
|
D | zephyr_build.yaml | 67 path: 'repos/zephyr' 80 path: 'repos/bootloader/mcuboot' 102 path: |
|
/mcuboot-latest/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. 379 dt_prop(slot0_size PATH "${slot0_flash}" PROPERTY "reg" INDEX 1) 382 dt_prop(erase_size_slot0 PATH "${slot0_flash}" PROPERTY "erase-block-size") 383 dt_prop(write_size_slot0 PATH "${slot0_flash}" PROPERTY "write-block-size") 397 dt_prop(slot1_size PATH "${slot1_flash}" PROPERTY "reg" INDEX 1) 400 dt_prop(erase_size_slot1 PATH "${slot1_flash}" PROPERTY "erase-block-size") [all …]
|
D | Kconfig | 197 You can use either absolute or relative path. 198 In case relative path is used, the build system assumes that it starts 201 path that starts from the MCUBoot repository root directory. 283 uses a much simpler code path. 304 mode results in a simpler code path and smaller code size. 429 You can use either absolute or relative path. 430 In case relative path is used, the build system assumes that it starts 433 path that starts from the MCUBoot repository root directory.
|
/mcuboot-latest/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 | ed25519.py | 44 def export_private(self, path, passwd=None): argument 47 def export_public(self, path): argument 52 with open(path, 'wb') as f: 93 def export_private(self, path, passwd=None): argument 106 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 | 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 | 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-latest/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-latest/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-latest/samples/mcuboot_config/ |
D | mcuboot_config.template.h | 15 * include path can find it as mcuboot_config/mcuboot_config.h, and 53 * with simpler code path, which only supports overwriting the existing image 61 /* Uncomment to enable the overwrite-only code path. */ 70 /* Uncomment to enable the direct-xip code path. */ 75 /* Uncomment to enable the ram-load code path. */
|
/mcuboot-latest/scripts/imgtool/ |
D | image.py | 32 import os.path 323 def load(self, path): argument 325 ext = os.path.splitext(path)[1][1:].lower() 328 ih = IntelHex(path) 333 with open(path, 'rb') as f: 365 def save(self, path, hex_addr=None): argument 367 ext = os.path.splitext(path)[1][1:].lower() 394 h.tofile(path, 'hex') 398 with open(path, 'wb') as f: 465 print(os.path.basename(__file__) + ": sign the payload") [all …]
|
/mcuboot-latest/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-latest/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-latest/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-latest/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-latest/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-latest/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-latest/sim/ |
D | Cargo.toml | 46 simflash = { path = "simflash" } 47 mcuboot-sys = { path = "mcuboot-sys" }
|