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.
16 lines
539 B
Plaintext
16 lines
539 B
Plaintext
menuconfig IMAGE_ITB_DL_RELEASE
|
|
bool "Download existing release"
|
|
depends on !BR2_TARGET_ROOTFS_SQUASHFS
|
|
help
|
|
This is primarily used by target specific builds, where the
|
|
bootloader artifact needs to be combined with an existing
|
|
Infix image, to create a full disk image that can be
|
|
provisioned to an SD-card or eMMC.
|
|
|
|
config IMAGE_ITB_DL_RELEASE_URL
|
|
string "URL"
|
|
depends on IMAGE_ITB_DL_RELEASE
|
|
default "https://github.com/kernelkit/infix/releases/download/latest/infix-${BR2_ARCH}.tar.gz"
|
|
help
|
|
URL to release tarball.
|