#
8c2f6c3b |
| 10-May-2024 |
Dan McGregor <dan.mcgregor@usask.ca> |
Address module reproducibility issues
Use .PATH & bare filename. This prevents the real source path from being included in the built object, which improves reproducibility.
Signed-off-by: Dan McGre
Address module reproducibility issues
Use .PATH & bare filename. This prevents the real source path from being included in the built object, which improves reproducibility.
Signed-off-by: Dan McGregor <dan.mcgregor@usask.ca> Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/1211
show more ...
|
Revision tags: release/13.3.0, release/14.0.0 |
|
#
031beb4e |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
sys: Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
Revision tags: release/13.2.0, release/12.4.0 |
|
#
78ee8d1c |
| 19-Jul-2022 |
Julian Grajkowski <julianx.grajkowski@intel.com> |
qat: Import a new Intel (R) QAT driver
QAT in-tree driver ported from out-of-tree release available from 01.org.
The driver exposes complete cryptography and data compression API in the kernel and
qat: Import a new Intel (R) QAT driver
QAT in-tree driver ported from out-of-tree release available from 01.org.
The driver exposes complete cryptography and data compression API in the kernel and integrates with Open Crypto Framework. Details of supported operations, devices and usage can be found in man and on 01.org.
Patch co-authored by: Krzysztof Zdziarski <krzysztofx.zdziarski@intel.com> Patch co-authored by: Michal Jaraczewski <michalx.jaraczewski@intel.com> Patch co-authored by: Michal Gulbicki <michalx.gulbicki@intel.com> Patch co-authored by: Julian Grajkowski <julianx.grajkowski@intel.com> Patch co-authored by: Piotr Kasierski <piotrx.kasierski@intel.com> Patch co-authored by: Adam Czupryna <adamx.czupryna@intel.com> Patch co-authored by: Konrad Zelazny <konradx.zelazny@intel.com> Patch co-authored by: Katarzyna Rucinska <katarzynax.kargol@intel.com> Patch co-authored by: Lukasz Kolodzinski <lukaszx.kolodzinski@intel.com> Patch co-authored by: Zbigniew Jedlinski <zbigniewx.jedlinski@intel.com>
Reviewed by: markj, jhb (OCF integration) Reviewed by: debdrup, pauamma (docs) Sponsored by: Intel Corporation Differential Revision: https://reviews.freebsd.org/D34632
show more ...
|
Revision tags: release/13.1.0, release/12.3.0, release/13.0.0 |
|
#
7695ced6 |
| 30-Nov-2020 |
Mark Johnston <markj@FreeBSD.org> |
qat: Fix firmware module autoloading
If firmware_get() fails to find a loaded firmware image, it searches for candidate KLDs to load. It will search for a KLD containing a module with the same name
qat: Fix firmware module autoloading
If firmware_get() fails to find a loaded firmware image, it searches for candidate KLDs to load. It will search for a KLD containing a module with the same name as the requested image, and failing that, will load a KLD with the same basename as the requested image.
The module name given by fw_stub.awk is simply "<mangled KLD name>_fw".
QAT firmware modules contain two images, neither of which match either of the names used during lookup, so automatic loading of firmware images after mountroot does not work. Work around this by using the same string for the first image name and for the KLD basename.
MFC after: 3 days Sponsored by: Rubicon Communications, LLC (Netgate)
show more ...
|
#
f078c492 |
| 05-Nov-2020 |
Mark Johnston <markj@FreeBSD.org> |
Add firmware modules for qat(4)
MFC after: 3 days Sponsored by: Rubicon Communications, LLC (Netgate)
|