mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 09:50:37 +00:00
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:
parent
98de220f78
commit
0a8ececb20
1 changed files with 4 additions and 2 deletions
|
@ -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))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue