Source ixgbevf driver from intel, not sourceforge

Sourceforge is often down at the moment, causing bootstrap-vz to fail.

Fix #287
This commit is contained in:
Justin Santa Barbara 2016-02-19 23:31:57 -05:00 committed by Anders Ingemann
parent 98de220f78
commit 0a8ececb20

View file

@ -87,8 +87,10 @@ class InstallEnhancedNetworking(Task):
@classmethod
def run(cls, info):
version = '2.16.1'
drivers_url = 'http://downloads.sourceforge.net/project/e1000/ixgbevf stable/%s/ixgbevf-%s.tar.gz' % (version, version)
version = '2.16.4'
drivers_url = 'https://downloadmirror.intel.com/25723/eng/ixgbevf-2.16.4.tar.gz'
# Sadly the first number in the URL changes:
# 2.16.1 => https://downloadmirror.intel.com/25464/eng/ixgbevf-2.16.1.tar.gz
archive = os.path.join(info.root, 'tmp', 'ixgbevf-%s.tar.gz' % (version))
module_path = os.path.join(info.root, 'usr', 'src', 'ixgbevf-%s' % (version))