Home
last modified time | relevance | path

Searched refs:signed (Results 1 – 25 of 67) sorted by relevance

123

/Zephyr-latest/cmake/
Dmcuboot.cmake7 # It builds signed binaries using imgtool as a post-processing step
14 # Property magic which makes west flash choose the signed build
26 # No signature key file, no signed binaries. No error, though:
30 "bootable by MCUboot unless it is signed manually/externally.")
70 # No imgtool, no signed binaries.
144 list(APPEND byproducts ${output}.signed.bin)
145 zephyr_runner_file(bin ${output}.signed.bin)
146 set(BYPRODUCT_KERNEL_SIGNED_BIN_NAME "${output}.signed.bin"
150 ${imgtool_sign} ${imgtool_args} ${output}.bin ${output}.signed.bin)
153 list(APPEND byproducts ${output}.signed.confirmed.bin)
[all …]
/Zephyr-latest/soc/aspeed/ast10x0/tools/
Dgen_uart_booting_image.py20 src_len_byte = src_len_align.to_bytes(4, byteorder='little', signed=False)
/Zephyr-latest/doc/build/signing/
Dindex.rst6 Binaries can be optionally signed as part of a build automatically using CMake code, there is
16 ``west flash`` will use the signed binaries.
24 west build -b YOUR_BOARD zephyr/samples/hello_world --sysbuild -d build-hello-signed -- \
27 west flash -d build-hello-signed
51 ``west flash -d build-hello-signed``:
77 the signed images. The file used for signing can be replaced from a sysbuild scope (if being used)
/Zephyr-latest/scripts/build/
Dllext_slidlib.py42 return int.from_bytes(hash[0:slid_size], byteorder='big', signed=False)
/Zephyr-latest/subsys/bluetooth/controller/
DKconfig.df207 Offset of start of antenna switching after end of the CRC. It is a signed value in number
217 Offset of sampling start from beginning of sampling slot. The value is a signed number
228 Offset of sampling start from beginning of sampling slot. The value is a signed number
240 Offset of sampling start from beginning of sampling slot. The value is a signed number
251 Offset of sampling start from beginning of sampling slot. The value is a signed number
314 bool "Use 16 bits signed integer IQ samples in connectionless IQ reports"
318 sampling of CTE. Bluetooth 5.3 Core Specification defines IQ samples to be 8 bits signed
320 extension to HCI layer, so that connectionless IQ reports store samples in 16 bit signed
324 bool "Use 16 bits signed integer IQ samples in connection IQ reports"
328 sampling of CTE. Bluetooth 5.3 Core Specification defines IQ samples to be 8 bits signed
[all …]
/Zephyr-latest/samples/subsys/mgmt/mcumgr/smp_svr/
DREADME.rst154 A key feature of MCUboot is that images must be signed before they can be successfully
163 The above command creates an image file called :file:`zephyr.signed.bin` in the
172 Upload the :file:`zephyr.signed.bin` file from the previous to image slot-0 of your
180 west flash --bin-file build/zephyr/zephyr.signed.bin
182 The *signed* image file needs to be used specifically, otherwise the non-signed version
215 * Upload the signed image using :file:`mcumgr`
241 Upload the signed image
244 To upload the signed image, refer to the documentation for your chosen tool, select the new
/Zephyr-latest/samples/subsys/mgmt/hawkbit/
DREADME.rst100 The firmware will be signed automatically by the build system with the
106 Upload the :file:`zephyr.signed.confirmed.bin` file to image slot-0
111 west flash --bin-file build/zephyr/zephyr.signed.confirmed.bin
124 This time you need the file :file:`zephyr.signed.bin` from the build directory.
126 Upload the signed image to the server. Click Upload icon in left pane of UI and
128 Then upload the signed image to the server with Upload file Icon.
157 Below steps clone and build the hawkbit with self-signed certificate
181 * Generate the self-signed x509 certificate suitable to use on web server.
/Zephyr-latest/scripts/dts/python-devicetree/tests/
Dtest_dtlib.py1667 def verify_to_num(prop, signed, expected): argument
1668 signed_str = "a signed" if signed else "an unsigned"
1669 actual = dt.root.props[prop].to_num(signed)
1705 def verify_to_nums(prop, signed, expected): argument
1706 signed_str = "signed" if signed else "unsigned"
1707 actual = dt.root.props[prop].to_nums(signed)
1878 def verify_raw_to_num(fn, prop, length, signed, expected): argument
1879 actual = fn(dt.root.props[prop].value, length, signed)
/Zephyr-latest/doc/services/device_mgmt/
Dota.rst15 binaries should be cryptographically signed and verified before upgrading.
32 TLS/DTLS, and the signed firmware binary is confirmed by MCUboot before the
65 Bluetooth Low Energy (BLE) or UDP. :ref:`mcu_mgr` is used to send a signed
/Zephyr-latest/samples/net/prometheus/
DKconfig39 application with signed certificates and keys.
/Zephyr-latest/tests/net/socket/tls_ext/
DCMakeLists.txt29 # since it seems to be the only one that is signed by a ca
/Zephyr-latest/subsys/tracing/ctf/tsdl/
Dmetadata2 typealias integer { size = 8; align = 8; signed = true; } := int8_t;
3 typealias integer { size = 8; align = 8; signed = false; } := uint8_t;
4 typealias integer { size = 16; align = 8; signed = false; } := uint16_t;
5 typealias integer { size = 32; align = 8; signed = false; } := uint32_t;
6 typealias integer { size = 32; align = 8; signed = true; } := int32_t;
7 typealias integer { size = 64; align = 8; signed = false; } := uint64_t;
8 typealias integer { size = 8; align = 8; signed = false; encoding = ASCII; } := ctf_bounded_string_…
/Zephyr-latest/modules/
DKconfig.mcuboot48 The signed binaries are placed in the build directory
49 at zephyr/zephyr.signed.bin and zephyr/zephyr.signed.hex.
79 zephyr/zephyr.signed.encrypted.bin and
80 zephyr/zephyr.signed.encrypted.hex.
125 The signed, padded, and confirmed binaries are placed in the build
126 directory at zephyr/zephyr.signed.confirmed.bin and
127 zephyr/zephyr.signed.confirmed.hex.
/Zephyr-latest/scripts/dts/python-devicetree/src/devicetree/
Ddtlib.py370 def to_num(self, signed=False) -> int: argument
389 return int.from_bytes(self.value, "big", signed=signed)
391 def to_nums(self, signed=False) -> List[int]: argument
410 return [int.from_bytes(self.value[i:i + 4], "big", signed=signed)
1311 prop.value += num.to_bytes(n_bytes, "big", signed=True)
2010 signed: bool = False) -> int:
2028 return int.from_bytes(data, "big", signed=signed)
2030 def to_nums(data: bytes, length: int = 4, signed: bool = False) -> List[int]:
2042 return [int.from_bytes(data[i:i + length], "big", signed=signed)
/Zephyr-latest/scripts/west_commands/completion/
Dwest-completion.zsh259 '(--no-bin)--bin[produce a signed bin file]'
260 '(--bin)--no-bin[do not produce a signed bin file]'
261 '(-B --sbin)'{-B,--sbin}'[signed .bin filename]:bin filename:_files'
262 '(--no-hex)--hex[produce a signed hex file]'
263 '(--hex)--no-hex[do not produce a signed hex file]'
264 '(-H --shex)'{-H,--shex}'[signed .hex filename]:hex filename:_files'
/Zephyr-latest/tests/net/lib/http_server/tls/
DCMakeLists.txt32 # since it seems to be the only one that is signed by a ca
/Zephyr-latest/doc/services/tfm/
Drequirements.rst60 Part of the process of generating binaries for QEMU and merging signed
/Zephyr-latest/subsys/mgmt/mcumgr/grp/os_mgmt/
DKconfig105 signed integer, and this number regulates how many digits will be used;
114 them as unsigned. Enabling this option will use signed int for priorities in
117 accept signed integers as priorities.
/Zephyr-latest/samples/subsys/mgmt/updatehub/
DREADME.rst270 signed bin: <zephyrdir>/build/app/zephyr/zephyr.signed.bin
278 west flash -d build/app --bin-file build/app/zephyr/zephyr.signed.bin
281 ``west flash -d build/app --hex-file build/app/zephyr/zephyr.signed.hex``
295 to make sure you are creating the right signed image. The test image will be
309 signed bin: build/zephyr-2.0.0.bin
/Zephyr-latest/samples/tfm_integration/
Dtfm_integration.rst17 images are then merged and signed using the private signing keys, whose public
/Zephyr-latest/doc/build/version/
Dindex.rst18 images to be signed with correct version of the application automatically - no manual signing
196 to support MCUboot and a signed image is generated, the version information will be automatically
/Zephyr-latest/doc/connectivity/bluetooth/api/
Dhci.txt693 | | to degrees Celsius (signed integer) |
884 | -127 <= N <= 126 | The desired Tx_Power_Level in signed |
917 | | signed integer. The controller shall |
1009 | | as a 1 octet signed integer at which |
1316 | N | Size: 1 Octet (signed integer) |
1351 The event provides collected IQ samples that are stored as 16 bit signed
1354 counterpart provides IQ samples that are 8 bit signed integers.
1488 | | (signed integer). |
1501 | | (signed integer). |
1530 The event provides collected IQ samples that are stored as 16 bit signed
[all …]
/Zephyr-latest/samples/subsys/usb/dfu/
DREADME.rst35 Application images (such as this sample) must be signed.
75 dfu-util --alt 1 --download build-hello_world/zephyr/zephyr.signed.bin
/Zephyr-latest/include/zephyr/arch/nios2/
Dlinker.ld214 /* the Nios2 architecture only has 16-bit signed immediate offsets in
222 * Since these immediate offsets are signed, place gp 0x8000 past the
/Zephyr-latest/boards/amd/acp_6_0_adsp/doc/
Dindex.rst93 AMD supports only signed images flashing on ACP 6.0 platforms

123