Fix issues in building Debian testing images

Signed-off-by: Joseph Nuthalapati <njoseph@thoughtworks.com>
This commit is contained in:
Joseph Nuthalapati 2018-04-27 11:57:05 +05:30
parent a9efdb4bf9
commit 419a4300f4
No known key found for this signature in database
GPG key ID: 5398F00A2FA43C35
2 changed files with 7 additions and 3 deletions

View file

@ -1,7 +1,8 @@
import os.path
from bootstrapvz.base import Task from bootstrapvz.base import Task
from bootstrapvz.common import phases from bootstrapvz.common import phases
from bootstrapvz.common.tasks import kernel from bootstrapvz.common.tasks import kernel
import os.path
class InstallDHCPCD(Task): class InstallDHCPCD(Task):
@ -89,8 +90,8 @@ class InstallEnhancedNetworking(Task):
def run(cls, info): def run(cls, info):
from bootstrapvz.common.releases import stretch from bootstrapvz.common.releases import stretch
if info.manifest.release >= stretch: if info.manifest.release >= stretch:
version = '4.2.1' version = '4.3.4'
drivers_url = 'https://downloadmirror.intel.com/27160/eng/ixgbevf-4.2.1.tar.gz' drivers_url = 'https://downloadmirror.intel.com/18700/eng/ixgbevf-4.3.4.tar.gz'
else: else:
version = '3.2.2' version = '3.2.2'
drivers_url = 'https://downloadmirror.intel.com/26561/eng/ixgbevf-3.2.2.tar.gz' drivers_url = 'https://downloadmirror.intel.com/26561/eng/ixgbevf-3.2.2.tar.gz'

View file

@ -9,6 +9,9 @@ jessie:
stretch: stretch:
amd64: linux-image-amd64 amd64: linux-image-amd64
i386: linux-image-686-pae i386: linux-image-686-pae
buster:
amd64: linux-image-amd64
i386: linux-image-686-pae
sid: sid:
amd64: linux-image-amd64 amd64: linux-image-amd64
i386: linux-image-686-pae i386: linux-image-686-pae