From 98786ea40e4703e0c0df376b3ad5cfc6d8f6f0bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adalbert=20Laz=C4=83r?= Date: Fri, 8 Oct 2021 21:32:03 +0300 Subject: [PATCH] vagrant/kvm: start from x86_64_defconfig MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit and hope that build time will be smaller Signed-off-by: Adalbert Lazăr --- vagrant/ansible/roles/kvm/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vagrant/ansible/roles/kvm/tasks/main.yml b/vagrant/ansible/roles/kvm/tasks/main.yml index 0b8b7649..52b368fa 100644 --- a/vagrant/ansible/roles/kvm/tasks/main.yml +++ b/vagrant/ansible/roles/kvm/tasks/main.yml @@ -29,8 +29,8 @@ become: false when: is_windows -- name: configure kernel using distro's config - command: make olddefconfig +- name: configure kernel using default x86_64 config + command: make x86_64_defconfig args: chdir: "{{ root_dir }}/kvm" become: false @@ -86,7 +86,7 @@ - name: add kvm.introspection=1 to kernel command line lineinfile: - dest: /etc/default/grub.d/99-introspection.cfg + dest: /etc/default/grub.d/999-introspection.cfg line: 'GRUB_CMDLINE_LINUX_DEFAULT="$GRUB_CMDLINE_LINUX_DEFAULT kvm.introspection=1"' create: yes