mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 09:50:37 +00:00
Merge pull request #472 from JosephKiranBabu/debian-testing
Fix issues in building Debian testing images
This commit is contained in:
commit
fee756185d
2 changed files with 7 additions and 3 deletions
|
@ -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'
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue