summaryrefslogtreecommitdiff
path: root/pkgs/os-specific/linux/cryptodev (follow)
Commit message (Expand)AuthorAgeFilesLines
* cryptodev: 1.14 -> 1.14-unstable-2025-11-04•••fix 6.18 kernel build moni-dz2026-01-191-3/+3
* treewide: Format all Nix files•••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. Silvan Mosberger2025-04-011-1/+1
* linux: expose make flags for modules in `linuxKernel.packages.linux_X_Y`•••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`. Maximilian Bosch2025-01-271-1/+2
* treewide: kernel.makeFlags -> kernel.moduleMakeFlagsK9002025-01-231-1/+1
* linuxPackages.cryptodev: 1.13 -> 1.14Julian Stecklina2024-12-041-14/+6
* cryptodev: fix build with patches from masterFranz Pletz2024-05-141-1/+14
* maintainers: fortuneteller2k -> monifortuneteller2k2023-11-171-1/+1
* cryptodev: 1.12 -> 1.13Alexandre Iooss2023-05-191-2/+2
* linuxPackages.cryptodev: cleanup and fix cross compilationNick Cao2023-01-201-3/+5
* cryptodev: pass moduleBuildDependencies from kernelNick Cao2022-03-071-0/+1
* cryptodev: 1.11 -> 1.12fortuneteller2k2021-05-081-2/+3
* pkgs/os-specific: stdenv.lib -> libBen Siraphob2021-01-171-3/+3
* cryptodev: 1.9 -> 1.11Tim Steinbach2020-09-221-8/+7
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-101-1/+1
* cryptodev-linux: update meta.homepage•••gna.org forge is closedRenaud2018-10-131-2/+1
* pkgs/*: remove unreferenced function argumentsvolth2018-07-211-1/+1
* linuxPackages.cryptodev: Mark broken on >= 4.13•••https://hydra.nixos.org/build/61470492 Tuomas Tynkkynen2017-09-191-0/+1
* cryptodev: 1.8 -> 1.9Tim Steinbach2017-07-231-5/+7
* cryptodev: mark as broken for kernels >4.4•••All builds for kernels above 4.4 fail; there is no newer upstream version. Joachim Fasting2017-03-021-0/+2
* linuxPackages.cryptodev: 1.6 -> 1.8, disable pic hardeningFranz Pletz2016-08-131-13/+6
* Turn some license strings into lib.licenses valuesMateusz Kowalczyk2014-07-281-1/+1
* Update and fix kernel packages to new kernel build•••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> Shea Levy2014-01-041-4/+4
* Upgrade cryptodev from 1.5 -> 1.6William A. Kennington III2013-11-281-2/+2
* Partially revert my recent kernelPackages changes•••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> Shea Levy2013-03-241-4/+4
* Remove unnecessary parentheses around if conditions•••Pet peeve... Eelco Dolstra2012-12-281-1/+1
* Mark some packages as low priority and disambiguate some othersEelco Dolstra2012-11-291-2/+3
* cryptodev: fixing build problems•••Some paths/vars were wrong. Lluís Batlle i Rossell2012-09-231-2/+2
* Adding cryptodev-linux, and made openssl use it optionally.•••I'm trying to get the CESA of the sheevaplug available to openssl. Lluís Batlle i Rossell2012-09-231-0/+29