diff options
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/control | 22 | ||||
-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, 81 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..c5a17e1 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +intel-ethernet-network-adapter-700-series (8.70-0progress6+u1) fuchur-backports-extras; urgency=low + + * Initial upload to fuchur-backports-extras. + + -- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 21 May 2022 08:25:25 +0200 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..dd0f76f --- /dev/null +++ b/debian/control @@ -0,0 +1,22 @@ +Source: intel-ethernet-network-adapter-700-series +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.6.1 +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/fuchur-backports-extras/intel-ethernet-network-adapter-700-series +Vcs-Git: https://git.progress-linux.org/packages/fuchur-backports-extras/intel-ethernet-network-adapter-700-series + +Package: intel-x710-firmware +Section: restricted/admin +Architecture: amd64 +Depends: + ${misc:Depends}, + ${shlibs:Depends}, +Description: FIXME + FIXME. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..94bed77 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,20 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: FIXME +Upstream-Contact: FIXME +Source: FIXME + +Files: * +Copyright: FIXME +License: FIXME + +Files: debian/* +Copyright: 2010-2022 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) |