summaryrefslogtreecommitdiff
path: root/data/build-flavors/iso.toml
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-10-07 07:42:58 +0200
committerGitHub <noreply@github.com>2022-10-07 07:42:58 +0200
commit3f16f939fb6ffcf6e65990d74827a7bdd4d10d6a (patch)
tree5f510afa6828775208bcc010323ab4297afa5e30 /data/build-flavors/iso.toml
parent262183c6a6974f8ef36f91549175927d27ad4f28 (diff)
parente7ac78de4947ebd5600c716832012585c006c41f (diff)
downloadvyos-build-3f16f939fb6ffcf6e65990d74827a7bdd4d10d6a.tar.gz
vyos-build-3f16f939fb6ffcf6e65990d74827a7bdd4d10d6a.zip
Merge pull request #257 from dmbaturin/T3664-flavors
T3664: initial implementation of the build flavor system
Diffstat (limited to 'data/build-flavors/iso.toml')
-rw-r--r--data/build-flavors/iso.toml14
1 files changed, 14 insertions, 0 deletions
diff --git a/data/build-flavors/iso.toml b/data/build-flavors/iso.toml
new file mode 100644
index 00000000..9bf7044d
--- /dev/null
+++ b/data/build-flavors/iso.toml
@@ -0,0 +1,14 @@
+# Generic (aka "universal") ISO image
+
+image_format = "iso"
+
+# Include these packages in the image regardless of the architecture
+packages = [
+ # QEMU and Xen guest tools exist for multiple architectures
+ "qemu-guest-agent",
+ "vyos-xe-guest-utilities",
+]
+
+[architectures.amd64]
+ # Hyper-V and VMware guest tools are x86-only
+ packages = ["hyperv-daemons", "vyos-1x-vmware"]