diff options
| author | Stijn Tintel | 2021-09-28 22:26:10 +0000 |
|---|---|---|
| committer | Stijn Tintel | 2021-09-29 16:17:55 +0000 |
| commit | 73a2570fa08c81420cc3006cb2bb859d8579b07c (patch) | |
| tree | e89de9eae585219bdecffea955c450804bdc8484 | |
| parent | e1c03ca18519f9683f6bfce1795e58d99575d895 (diff) | |
| download | openwrt-73a2570fa08c81420cc3006cb2bb859d8579b07c.tar.gz | |
kernel: order kmod-kvm symbols alphabetically
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
| -rw-r--r-- | package/kernel/linux/modules/virt.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/kernel/linux/modules/virt.mk b/package/kernel/linux/modules/virt.mk index a9a0b538ff..368f4ab5aa 100644 --- a/package/kernel/linux/modules/virt.mk +++ b/package/kernel/linux/modules/virt.mk @@ -20,8 +20,8 @@ define KernelPackage/kvm-x86 TITLE:=Kernel-based Virtual Machine (KVM) support DEPENDS:=@TARGET_x86_generic||TARGET_x86_64 +kmod-irqbypass KCONFIG:=\ - CONFIG_VIRTUALIZATION=y \ - CONFIG_KVM + CONFIG_KVM \ + CONFIG_VIRTUALIZATION=y FILES:= $(LINUX_DIR)/arch/$(LINUX_KARCH)/kvm/kvm.ko AUTOLOAD:=$(call AutoProbe,kvm.ko) endef |