summaryrefslogtreecommitdiff
path: root/pkgs/os-specific/linux/cryptodev
AgeCommit message (Collapse)Author
2026-01-19cryptodev: 1.14 -> 1.14-unstable-2025-11-04moni-dz
fix 6.18 kernel build
2025-04-01treewide: Format all Nix filesSilvan Mosberger
Format all Nix files using the officially approved formatter, making the CI check introduced in the previous commit succeed: nix-build ci -A fmt.check This is the next step of the of the [implementation](https://github.com/NixOS/nixfmt/issues/153) of the accepted [RFC 166](https://github.com/NixOS/rfcs/pull/166). This commit will lead to merge conflicts for a number of PRs, up to an estimated ~1100 (~33%) among the PRs with activity in the past 2 months, but that should be lower than what it would be without the previous [partial treewide format](https://github.com/NixOS/nixpkgs/pull/322537). Merge conflicts caused by this commit can now automatically be resolved while rebasing using the [auto-rebase script](https://github.com/NixOS/nixpkgs/tree/8616af08d915377bd930395f3b700a0e93d08728/maintainers/scripts/auto-rebase). If you run into any problems regarding any of this, please reach out to the [formatting team](https://nixos.org/community/teams/formatting/) by pinging @NixOS/nix-formatting.
2025-01-27linux: expose make flags for modules in `linuxKernel.packages.linux_X_Y`Maximilian Bosch
Closes #376820 The issue with providing `moduleMakeFlags` via `passthru` of the kernel package is that when this package gets overriden[1], the `moduleMakeFlags` list still references the kernel without the overrides. This broke e.g. kernel modules of linux-rpi4 which can be reproduced with nix-build --argstr system aarch64-linux -A linuxKernel.packages.linux_rpi4.zfs_2_3 This used to break with Error: modDirVersion 6.6.51 specified in the Nix expression is wrong, it should be: 6.6.51-v8 since KBUILD_OUTPUT referenced the kernel without the changes from `overrideDerivation` that also changes the `modDirVersion`. The new approach is to add the build flags right into `linuxKernel.packages.linux_X_Y`: that way we don't need any hacks to update `moduleMakeFlags` when the derivation with the passthru gets overridden. By using the fixpoint of the package-set, the `kernelModuleMakeFlags` list is correctly updated. E.g. given with import ./. {}; linuxKernel.packages.linux_6_6.extend (self: super: { kernel = super.kernel.overrideAttrs (_: { name = "linux-snens"; }); }) the `makeFlags` is correctly updated: $ nix-instantiate snenskek.nix -A zfs_2_3.makeFlags --eval --strict [ "ARCH=x86_64" "CROSS_COMPILE=" "KBUILD_OUTPUT=/nix/store/gsp68549k1aqbwxwczpgw67w5jjn4shw-linux-snens-dev/lib/modules/6.6.74/build" ] [1] E.g. `linux-rpi4`.
2025-01-23treewide: kernel.makeFlags -> kernel.moduleMakeFlagsK900
2024-12-04linuxPackages.cryptodev: 1.13 -> 1.14Julian Stecklina
2024-05-14cryptodev: fix build with patches from masterFranz Pletz
2023-11-17maintainers: fortuneteller2k -> monifortuneteller2k
2023-05-19cryptodev: 1.12 -> 1.13Alexandre Iooss
2023-01-20linuxPackages.cryptodev: cleanup and fix cross compilationNick Cao
2022-03-07cryptodev: pass moduleBuildDependencies from kernelNick Cao
2021-05-08cryptodev: 1.11 -> 1.12fortuneteller2k
2021-01-17pkgs/os-specific: stdenv.lib -> libBen Siraphob
2020-09-22cryptodev: 1.9 -> 1.11Tim Steinbach
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly
2018-10-13cryptodev-linux: update meta.homepageRenaud
gna.org forge is closed
2018-07-21pkgs/*: remove unreferenced function argumentsvolth
2017-09-19linuxPackages.cryptodev: Mark broken on >= 4.13Tuomas Tynkkynen
https://hydra.nixos.org/build/61470492
2017-07-23cryptodev: 1.8 -> 1.9Tim Steinbach
2017-03-02cryptodev: mark as broken for kernels >4.4Joachim Fasting
All builds for kernels above 4.4 fail; there is no newer upstream version.
2016-08-13linuxPackages.cryptodev: 1.6 -> 1.8, disable pic hardeningFranz Pletz
2014-07-28Turn some license strings into lib.licenses valuesMateusz Kowalczyk
2014-01-04Update and fix kernel packages to new kernel buildShea Levy
In most cases, this just meant changing kernelDev (now removed from linuxPackagesFor) to kernel.dev. Some packages needed more work (though whether that was because of my changes or because they were already broken, I'm not sure). Specifics: * psmouse-alps builds on 3.4 but not 3.10, as noted in the comments that were already there * blcr builds on 3.4 but not 3.10, as noted in comments that were already there * open-iscsi, ati-drivers, wis-go7007, and openafsClient don't build on 3.4 or 3.10 on this branch or on master, so they're marked broken * A version-specific kernelHeaders package was added The following packages were removed: * atheros/madwifi is superceded by official ath*k modules * aufs is no longer used by any of our kernels * broadcom-sta v6 (which was already packaged) replaces broadcom-sta * exmap has not been updated since 2011 and doesn't build * iscis-target has not been updated since 2010 and doesn't build * iwlwifi is part of mainline now and doesn't build * nivida-x11-legacy-96 hasn't been updated since 2008 and doesn't build Everything not specifically mentioned above builds successfully on 3.10. I haven't yet tested on 3.4, but will before opening a pull request. Signed-off-by: Shea Levy <shea@shealevy.com>
2013-11-28Upgrade cryptodev from 1.5 -> 1.6William A. Kennington III
2013-03-24Partially revert my recent kernelPackages changesShea Levy
First, pass in `self' again so that overriding works properly (thanks for pointing that out, @edolstra) Second, instead of having linuxPackages*.kernel mean something different inside the set and out, add a new attribute linuxPackages*.kernelDev, which for the generic kernel is simply linuxPackages*.kernel but for the manual-config kernel is the `dev' output (which has the build tree, source tree, etc.) The second change required trivial modifications in a bunch of expressions, I verified that all of the linuxPackages* sets defined in all-packages.nix have the same drv paths before and after the change. Signed-off-by: Shea Levy <shea@shealevy.com>
2012-12-28Remove unnecessary parentheses around if conditionsEelco Dolstra
Pet peeve...
2012-11-29Mark some packages as low priority and disambiguate some othersEelco Dolstra
2012-09-23cryptodev: fixing build problemsLluís Batlle i Rossell
Some paths/vars were wrong.
2012-09-23Adding cryptodev-linux, and made openssl use it optionally.Lluís Batlle i Rossell
I'm trying to get the CESA of the sheevaplug available to openssl.