mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-22 01:13:00 +02:00
Infix defines its own Kconfig options with unprefixed names (IMAGE_*, QEMU_*, TRUSTED_KEYS*) and an INFIX_ prefix. Unprefixed names risk clashing with Buildroot and with other br2-externals/spins that source our tree. Rename all 86 options to a common IX_ prefix, collapsing the existing INFIX_ ones, e.g. INFIX_IMAGE_ID becomes IX_IMAGE_ID. The os-release INFIX_DESC field is a runtime interface, not a Kconfig option, and is kept; the qemu Config.in generator's @ARCH@ symbol is updated to match. Closes #1305 Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
28 lines
952 B
Plaintext
28 lines
952 B
Plaintext
config IX_IMAGE_EXT4_RAUC
|
|
bool "RAUC upgrade bundle (ext4)"
|
|
depends on BR2_TARGET_ROOTFS_EXT2
|
|
select BR2_PACKAGE_HOST_RAUC
|
|
help
|
|
Create a RAUC upgrade bundle for targets using an ext4 rootfs
|
|
image. Intended for development boards whose bootloader does
|
|
not support squashfs.
|
|
|
|
config IX_IMAGE_EXT4_RAUC_KEY
|
|
string "signing key"
|
|
depends on IX_IMAGE_EXT4_RAUC
|
|
default "${BR2_EXTERNAL_INFIX_PATH}/board/common/signing-keys/development/infix.key"
|
|
help
|
|
Path to the private key, in PKCS#8 format, used to sign
|
|
the RAUC bundle; or a PKCS#11 URI.
|
|
|
|
config IX_IMAGE_EXT4_RAUC_CERT
|
|
string "signing certificate"
|
|
depends on IX_IMAGE_EXT4_RAUC
|
|
default "${BR2_EXTERNAL_INFIX_PATH}/board/common/signing-keys/development/infix.crt"
|
|
help
|
|
Path to the X509 certificate which will be associated with
|
|
the bundle signature.
|
|
|
|
NOTE: This cert MUST be included in the trust store of the
|
|
system on which this bundle is to be installed.
|