diff --git a/antlir/antlir2/antlir2_vm/bzl/preconfigured.bzl b/antlir/antlir2/antlir2_vm/bzl/preconfigured.bzl index 08a355bac7..3ec71e81ab 100644 --- a/antlir/antlir2/antlir2_vm/bzl/preconfigured.bzl +++ b/antlir/antlir2/antlir2_vm/bzl/preconfigured.bzl @@ -3,19 +3,12 @@ # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. -load("//metalos/vm/kernels:versions.bzl", "VM_KERNELS") - # Lists pre-configured VM targets that any test can refer to based on their needs. # Refer to actual target for their detailed configuration. PRECONFIGURED_VM = { "disk-boot": "//antlir/antlir2/antlir2_vm:default-disk-boot", "nondisk-boot": "//antlir/antlir2/antlir2_vm:default-nondisk-boot", "nvme-disk-boot": "//antlir/antlir2/antlir2_vm:default-nvme-disk-boot", -} | { - # Must be kept in sync with metalos/vm/TARGETS - "kernel-{}-vm".format(uname): "//metalos/vm:kernel-{}-vm".format(uname) - for arch, uname in VM_KERNELS - if arch != "aarch64" } def get_vm(name: str = "nondisk-boot") -> str: