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>
21 lines
711 B
Plaintext
21 lines
711 B
Plaintext
menuconfig IX_IMAGE_ITB_ROOTFS
|
|
bool "rootfs.itb+.itbh"
|
|
select BR2_TARGET_ROOTFS_SQUASHFS
|
|
select BR2_PACKAGE_HOST_UBOOT_TOOLS
|
|
help
|
|
Create a signed ITB image containing a SquashFS of rootfs
|
|
and extract detached header (.itbh) for U-Boot based
|
|
targets.
|
|
|
|
config IX_IMAGE_ITB_ROOTFS_KEY
|
|
string "signing key"
|
|
depends on IX_IMAGE_ITB_ROOTFS
|
|
default "${BR2_EXTERNAL_INFIX_PATH}/board/common/signing-keys/development/infix.key"
|
|
help
|
|
Path to the private RSA key, in PKCS#8 format, used to sign
|
|
the root filesystem.
|
|
|
|
If the path is prefixed with "<hint>:", then that used as
|
|
the "key-name-hint" in the resulting ITB, otherwise the
|
|
basename of the path, with any extension removed, is used.
|