diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 14:39:23 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 14:39:23 +0000 |
commit | 74e525fc2482deae8df2944c8b1e03c0d1b6d1d3 (patch) | |
tree | 5ff0226e3abfa64c5e65a647458d9258a02e1fb8 | |
parent | Adding upstream version 9.40. (diff) | |
download | intel-x710-firmware-74e525fc2482deae8df2944c8b1e03c0d1b6d1d3.tar.xz intel-x710-firmware-74e525fc2482deae8df2944c8b1e03c0d1b6d1d3.zip |
Adding progress-linux version 9.40-0progress7.99u1.progress-linux/9.40-0progress7.99u1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/control | 23 | ||||
-rw-r--r-- | debian/copyright | 20 | ||||
-rwxr-xr-x | debian/local/bin/update-intel-x710-firmware | 6 | ||||
-rwxr-xr-x | debian/rules | 27 | ||||
-rw-r--r-- | debian/source/format | 1 |
6 files changed, 82 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..2788174 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +intel-x710-firmware (9.40-0progress7.99u1) graograman-backports-extras; urgency=low + + * Initial reupload to graograman-backports-extras. + + -- Daniel Baumann <daniel.baumann@progress-linux.org> Sun, 21 Apr 2024 16:32:30 +0200 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..ae60676 --- /dev/null +++ b/debian/control @@ -0,0 +1,23 @@ +Source: intel-x710-firmware +Section: restricted/admin +Priority: optional +Maintainer: Progress Linux Maintainers <maintainers@lists.progress-linux.org> +XSBC-Uploaders: Daniel Baumann <daniel.baumann@progress-linux.org> +Bugs: mailto:bugs@lists.progress-linux.org +Build-Depends: + debhelper-compat (= 13), +Rules-Requires-Root: no +Standards-Version: 4.7.0 +Homepage: https://www.intel.com/content/www/us/en/products/details/ethernet/700-controllers/x710-controllers/downloads.html +Vcs-Browser: https://git.progress-linux.org/packages/graograman-backports-extras/intel-ethernet-network-adapter-700-series +Vcs-Git: https://git.progress-linux.org/packages/graograman-backports-extras/intel-ethernet-network-adapter-700-series + +Package: intel-x710-firmware +Section: restricted/admin +Architecture: amd64 +Depends: + ${misc:Depends}, + ${shlibs:Depends}, +Description: Binary firmware update for Intel ethernet network adapters (700 series) + This package contains the binary firmware update for Intel ethernet network + adapters (700 series) supported by the i40e driver. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..90cb809 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,20 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: Non-Volatile Memory (NVM) Update Utility for Intel Ethernet Network Adapter 700 Series +Upstream-Contact: n/a +Source: https://www.intel.com/content/www/us/en/download/18635/non-volatile-memory-nvm-update-utility-for-intel-ethernet-adapters-700-series-linux.html + +Files: * +Copyright: n/a +License: n/a + +Files: debian/* +Copyright: 2010-2024 Daniel Baumann <daniel.baumann@progress-linux.org> +License: PD + +License: PD + This program is free software: you have unlimited permission + to copy, distribute and modify it. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. diff --git a/debian/local/bin/update-intel-x710-firmware b/debian/local/bin/update-intel-x710-firmware new file mode 100755 index 0000000..a58619e --- /dev/null +++ b/debian/local/bin/update-intel-x710-firmware @@ -0,0 +1,6 @@ +#!/bin/sh + +set -e + +cd /usr/lib/intel-x710-firmware +exec ./nvmupdate64e ${@} diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..c0de740 --- /dev/null +++ b/debian/rules @@ -0,0 +1,27 @@ +#!/usr/bin/make -f + +%: + dh ${@} + +execute_after_dh_auto_clean: + rm -rf build + +override_dh_auto_build: + mkdir -p build + tar -C build -xf *.tar.gz + +override_dh_auto_install: + mkdir -p debian/intel-x710-firmware/usr/lib + cp -a build/*/Linux_x64 debian/intel-x710-firmware/usr/lib/intel-x710-firmware + + mkdir -p debian/intel-x710-firmware/usr + cp -a debian/local/bin debian/intel-x710-firmware/usr/bin + +override_dh_dwz: + # disabled + +override_dh_strip: + # disabled + +override_dh_strip_nondeterminism: + # disabled diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) |