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>
24 lines
603 B
Plaintext
24 lines
603 B
Plaintext
menuconfig IX_IMAGE_ITB_GNS3A
|
|
bool "GNS3 Appliance (ITB)"
|
|
depends on BR2_x86_64
|
|
select IX_IMAGE_ITB_QCOW
|
|
help
|
|
Create a GNS3 appliance description that, together with the
|
|
disk image, can be imported into GNS3.
|
|
|
|
config IX_IMAGE_ITB_GNS3A_RAM
|
|
int "Reserved RAM (MiB)"
|
|
depends on IX_IMAGE_ITB_GNS3A
|
|
default "192"
|
|
help
|
|
Amount of host RAM reserved for an appliance instance.
|
|
|
|
Minimum supported size is 192M.
|
|
|
|
config IX_IMAGE_ITB_GNS3A_IFNUM
|
|
int "Number of interfaces"
|
|
depends on IX_IMAGE_ITB_GNS3A
|
|
default "1"
|
|
help
|
|
Number of Ethernet interfaces to create for an appliance instance.
|