diff options
author | Christian Breunig <christian@breunig.cc> | 2024-04-29 21:20:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-29 21:20:16 +0200 |
commit | 2d817bb012dad4da84aacdfb601ff709f8a4700f (patch) | |
tree | cdaa5038694bdc96c465e6a7097fb139719ac098 /packages/linux-kernel/build-intel-ixgbe.sh | |
parent | 8032e6f4e650667d666636aad0f34696e1a53e32 (diff) | |
parent | a44647f0982f2a6b7a78af80f82e1c650ab0b11e (diff) | |
download | vyos-build-2d817bb012dad4da84aacdfb601ff709f8a4700f.tar.gz vyos-build-2d817bb012dad4da84aacdfb601ff709f8a4700f.zip |
Merge pull request #540 from ErnyTech/current
ixgbe: T6162: Add 1000BASE-BX support
Diffstat (limited to 'packages/linux-kernel/build-intel-ixgbe.sh')
-rwxr-xr-x | packages/linux-kernel/build-intel-ixgbe.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/linux-kernel/build-intel-ixgbe.sh b/packages/linux-kernel/build-intel-ixgbe.sh index 36e403ad..035a062a 100755 --- a/packages/linux-kernel/build-intel-ixgbe.sh +++ b/packages/linux-kernel/build-intel-ixgbe.sh @@ -61,6 +61,10 @@ sed -i '/.*pci_enable_pcie_error_reporting(pdev);/d' ixgbe_main.c echo "I: always enable allow_unsupported_sfp for all NICs by default" patch -l -p1 < ../../patches/ixgbe/allow_unsupported_sfp.patch +# See https://vyos.dev/T6162 +echo "I: add 1000BASE-BX support" +patch -l -p1 < ../../patches/ixgbe/add_1000base-bx_support.patch + echo "I: Compile Kernel module for Intel ${DRIVER_NAME} driver" make KSRC=${KERNEL_DIR} INSTALL_MOD_PATH=${DEBIAN_DIR} INSTALL_FW_PATH=${DEBIAN_DIR} -j $(getconf _NPROCESSORS_ONLN) install |