-
Notifications
You must be signed in to change notification settings - Fork 614
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic Kconfig support for lima-guestagent
Make it possible to configure which guestagents to build. Regenerating config requires python kconfiglib or similar. Signed-off-by: Anders F Björklund <[email protected]>
- Loading branch information
1 parent
4cc8d2c
commit 2be798c
Showing
3 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
CONFIG_GUESTAGENT_OS_LINUX=y | ||
CONFIG_GUESTAGENT_ARCH_X8664=y | ||
CONFIG_GUESTAGENT_ARCH_AARCH64=y | ||
CONFIG_GUESTAGENT_ARCH_ARMV7L=y | ||
CONFIG_GUESTAGENT_ARCH_RISCV64=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
mainmenu "Lima" | ||
|
||
config GUESTAGENT_OS_LINUX | ||
bool "guestagent OS: Linux" | ||
default y | ||
|
||
config GUESTAGENT_ARCH_X8664 | ||
bool "guestagent Arch: x86_64" | ||
default y | ||
|
||
config GUESTAGENT_ARCH_AARCH64 | ||
bool "guestagent Arch: aarch64" | ||
default y | ||
|
||
config GUESTAGENT_ARCH_ARMV7L | ||
bool "guestagent Arch: armv7l" | ||
default y | ||
|
||
config GUESTAGENT_ARCH_RISCV64 | ||
bool "guestagent Arch: riscv64" | ||
default y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters