Searched full:load (Results 1 – 25 of 52) sorted by relevance
123
/mcuboot-latest/docs/ |
D | testplan-mynewt.md | 15 Build and load MCUboot: 18 * `newt load k64f_boot_<sign-algo>` 20 Build and load good image in slot 0: 23 * `newt load k64f_blinky` 35 Build and load image in slot 1 with no signing, signed with 49 Build and load MCUboot: 52 * `newt load k64f_boot_rsa_ec` 54 Build and load good image in slot 0: 57 * `newt load k64f_blinky` 59 Build and load image in slot 1 with no signing, signed with [all …]
|
D | imgtool.md | 92 -L, --load-addr INTEGER Load address for image when it should run 110 the load address (in Intel Hex terms, the Extended Linear Address record) to 111 adjust for the new bytes prepended to the file. The load address of all data
|
D | design.md | 175 [ram-load](#ram-load) upgrade mode). If the bootloader needs to run the 312 ### [RAM loading](#ram-load) 314 In ram-load mode the slots are equal. Like the direct-xip mode, this mode 317 RAM for execution. The load address, the location in RAM where the image is 318 copied to, is stored in the image header. The ram-load upgrade mode can be 324 execution. Ram-load mode requires the image to be built to be executed from 326 ram-load is enabled then platform must define the following parameters: 333 For multiple image load if multiple ram regions are used platform must define 343 When ram-load is enabled, the `--load-addr <addr>` option of the `imgtool` 346 RAM and also set the load address in the image header. [all …]
|
D | testplan-zephyr.md | 29 Then, load hello1:
|
D | readme-nuttx.md | 31 … to boot a new application firmware image (e.g. deinitialize peripherals, load the Program Counter…
|
/mcuboot-latest/scripts/imgtool/keys/ |
D | ecdsa_test.py | 19 from imgtool.keys import load, ECDSA256P1, ECDSAUsageError 37 self.assertIsNone(load(name1)) 39 k2 = load(name1, b'secret') 43 pk2 = load(pubname) 89 k2 = load(pubname)
|
D | ed25519_test.py | 19 from imgtool.keys import load, Ed25519, Ed25519UsageError 38 self.assertIsNone(load(name1)) 40 k2 = load(name1, b'secret') 44 pk2 = load(pubname) 90 k2 = load(pubname)
|
D | rsa_test.py | 21 from imgtool.keys import load, RSA, RSAUsageError 47 self.assertIsNone(load(name1)) 49 k2 = load(name1, b'secret') 53 pk2 = load(pubname) 101 k2 = load(pubname)
|
D | __init__.py | 46 def load(path, passwd=None): function
|
/mcuboot-latest/.github/workflows/ |
D | sim.yaml | 41 - "sig-rsa validate-primary-slot ram-load" 42 - "sig-rsa enc-rsa validate-primary-slot ram-load" 44 - "sig-rsa validate-primary-slot ram-load multiimage" 48 - "ram-load enc-aes256-kw multiimage" 49 - "ram-load enc-aes256-kw sig-ecdsa-mbedtls multiimage"
|
/mcuboot-latest/docs/release-notes.d/ |
D | fix-ram-load-zephyr-address.md | 1 - Fixed chain load address output log message for RAM load
|
/mcuboot-latest/scripts/ |
D | imgtool.nix | 9 # To load the environment 11 # $ load-env-imgtool
|
/mcuboot-latest/boot/espressif/hal/include/ |
D | esp_mcuboot_image.h | 14 /* Load header that should be a part of application image 18 uint32_t header_magic; /* Magic for load header */
|
/mcuboot-latest/boot/espressif/port/ |
D | esp_loader.c | 58 BOOT_LOG_ERR("Load header magic verification failed. Aborting"); in esp_app_image_load() 63 BOOT_LOG_ERR("IRAM region in load header is not valid. Aborting"); in esp_app_image_load() 68 BOOT_LOG_ERR("DRAM region in load header is not valid. Aborting"); in esp_app_image_load()
|
/mcuboot-latest/sim/ |
D | Cargo.toml | 31 ram-load = ["mcuboot-sys/ram-load"]
|
/mcuboot-latest/boot/zephyr/ |
D | ram_load.conf | 1 # Enables RAM load mode and specifies 16 MB of memory from 0x80000000
|
D | Kconfig | 207 bool "Perform core cleanup before chain-load the application" 307 bool "RAM load" 312 The address that the image is copied to is specified using the load-addr
|
/mcuboot-latest/samples/zephyr/hello-world/ |
D | CMakeLists.txt | 14 # find_package(Zephyr) in order to load application boilerplate:
|
/mcuboot-latest/scripts/imgtool/ |
D | main.py | 103 key = keys.load(keyfile) 107 return keys.load(keyfile, passwd) 350 @click.option('-L', '--load-addr', type=BasedIntParamType(), required=False, 351 help='Load address for image when it should run from RAM.') 360 '(Not supported in direct-xip or ram-load mode.)') 460 img.load(infile)
|
/mcuboot-latest/ci/ |
D | fih-tests_install.sh | 27 [[ -f $CACHED_IMAGE ]] && (gzip -dc $CACHED_IMAGE | docker load)
|
/mcuboot-latest/sim/mcuboot-sys/src/ |
D | lib.rs | 14 /// For testing the ram load feature, we need to emulate a block of RAM and be able to pass that
|
/mcuboot-latest/sim/mcuboot-sys/ |
D | Cargo.toml | 79 ram-load = []
|
/mcuboot-latest/boot/boot_serial/ |
D | syscfg.yml | 79 load. Value must not be 0.
|
/mcuboot-latest/ci/fih_test_docker/ |
D | run_fi_test.sh | 61 # Load the CSV FI manifest file, and output in START, END lines. Effectively
|
/mcuboot-latest/boot/bootutil/src/ |
D | encrypted.c | 505 * Load the stored EC256 decryption private key in boot_decrypt_key() 532 * Load the stored X25519 decryption private key in boot_decrypt_key() 632 * Load encryption key.
|
123