-
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 17c610d
Showing
5 changed files
with
72 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
_output/ | ||
_artifacts/ | ||
lima.REJECTED.yaml | ||
.config |
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,31 @@ | ||
mainmenu "Lima" | ||
|
||
config GUESTAGENT_OS_LINUX | ||
bool "guestagent OS: Linux" | ||
help | ||
Build lima-guestagent for "Linux" OS | ||
default y | ||
|
||
config GUESTAGENT_ARCH_X8664 | ||
bool "guestagent Arch: x86_64" | ||
help | ||
Build lima-guestagent for "x86_64" Arch | ||
default y | ||
|
||
config GUESTAGENT_ARCH_AARCH64 | ||
bool "guestagent Arch: aarch64" | ||
help | ||
Build lima-guestagent for "aarch64" Arch | ||
default y | ||
|
||
config GUESTAGENT_ARCH_ARMV7L | ||
bool "guestagent Arch: armv7l" | ||
help | ||
Build lima-guestagent for "armv7l" Arch | ||
default y | ||
|
||
config GUESTAGENT_ARCH_RISCV64 | ||
bool "guestagent Arch: riscv64" | ||
help | ||
Build lima-guestagent for "riscv64" Arch | ||
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
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
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 |