mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-22 01:13:00 +02:00
Previously, post-image.sh was able to create QEMU images from an existing release tarball. This was useful when you wanted to test a new bootloader build without having to wait for a full Infix build. Restore this capability by adding a separate image target for it, and then allow image-itb-qcow to source its input images from that instead of a locally build squash+aux.
38 lines
1.2 KiB
Plaintext
38 lines
1.2 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-itb-dl-release/Config.in"
|
|
source "$BR2_EXTERNAL_INFIX_PATH/board/common/image/image-readme/Config.in"
|
|
|
|
endmenu
|
|
|
|
config 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 TRUSTED_KEYS
|
|
bool "Trusted keys for image"
|
|
help
|
|
Keys that will be accepted for this image
|
|
|
|
config TRUSTED_KEYS_DEVELOPMENT
|
|
bool "Development key"
|
|
depends on TRUSTED_KEYS
|
|
|
|
config TRUSTED_KEYS_DEVELOPMENT_PATH
|
|
string
|
|
depends on TRUSTED_KEYS_DEVELOPMENT
|
|
default "${BR2_EXTERNAL_INFIX_PATH}/board/common/signing-keys/development/infix.crt"
|
|
|
|
config TRUSTED_KEYS_EXTRA_PATH
|
|
string "Path to extra keys to include in image"
|
|
depends on TRUSTED_KEYS
|