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>
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
menu "Images"
|
|
|
|
source "$BR2_EXTERNAL_INFIX_PATH/board/common/image/image-itb-rootfs/Config.in"
|
|
source "$BR2_EXTERNAL_INFIX_PATH/board/common/image/image-itb-aux/Config.in"
|
|
source "$BR2_EXTERNAL_INFIX_PATH/board/common/image/image-itb-qcow/Config.in"
|
|
source "$BR2_EXTERNAL_INFIX_PATH/board/common/image/image-itb-gns3a/Config.in"
|
|
source "$BR2_EXTERNAL_INFIX_PATH/board/common/image/image-itb-rauc/Config.in"
|
|
source "$BR2_EXTERNAL_INFIX_PATH/board/common/image/image-ext4-rauc/Config.in"
|
|
source "$BR2_EXTERNAL_INFIX_PATH/board/common/image/image-itb-dl-release/Config.in"
|
|
source "$BR2_EXTERNAL_INFIX_PATH/board/common/image/image-readme/Config.in"
|
|
|
|
endmenu
|
|
|
|
config IX_QEMU_SCRIPTS
|
|
bool "QEMU scripts"
|
|
default y
|
|
help
|
|
Install QEMU scripts and related files in the images
|
|
directory, which can be used to launch virtual Infix
|
|
instances.
|
|
|
|
menuconfig IX_TRUSTED_KEYS
|
|
bool "Trusted keys for image"
|
|
help
|
|
Keys that will be accepted for this image
|
|
|
|
config IX_TRUSTED_KEYS_DEVELOPMENT
|
|
bool "Development key"
|
|
depends on IX_TRUSTED_KEYS
|
|
|
|
config IX_TRUSTED_KEYS_DEVELOPMENT_PATH
|
|
string
|
|
depends on IX_TRUSTED_KEYS_DEVELOPMENT
|
|
default "${BR2_EXTERNAL_INFIX_PATH}/board/common/signing-keys/development/infix.crt"
|
|
|
|
config IX_TRUSTED_KEYS_EXTRA_PATH
|
|
string "Path to extra keys to include in image"
|
|
depends on IX_TRUSTED_KEYS
|