From 1aebd74c63fad90fb26295736629f4753d01ee4b Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 5 Jul 2011 11:28:46 +0300 Subject: [PATCH] Fix i386 kernel selection. Thanks, Asheesh Laroia. --- vmdebootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmdebootstrap b/vmdebootstrap index 5275d96..05178ea 100755 --- a/vmdebootstrap +++ b/vmdebootstrap @@ -161,7 +161,7 @@ class VmDebootstrap(cliapp.Application): self.message('Debootstrapping') if self.settings['arch'] == 'i386': - kernel_arch = 'i686' + kernel_arch = '686' else: kernel_arch = self.settings['arch'] kernel_image = 'linux-image-2.6-%s' % kernel_arch -- 2.39.2