Package Details: dkms-frandom 1.2-3

Git Clone URL: https://aur.archlinux.org/dkms-frandom.git (read-only, click to copy)
Package Base: dkms-frandom
Description: A very fast random number generator kernel module (DKMS version)
Upstream URL: http://frandom.sourceforge.net/
Licenses: GPL
Conflicts: frandom
Provides: frandom
Submitter: reztho
Maintainer: None
Last Packager: jgottula
Votes: 14
Popularity: 0.000000
First Submitted: 2012-02-25 20:02 (UTC)
Last Updated: 2023-10-23 00:00 (UTC)

Latest Comments

« First ‹ Previous 1 2

jihem commented on 2017-07-17 07:19 (UTC)

Hi, You can add the following patch to make this package compatible with Linux 4.12. You should also remove the .install file (not necessary with pacman hooks) and remove (or move to optdepends) linux-headers dependency for people who don't use the default kernel. --- frandom-1.1-old/frandom.c +++ frandom-1.1/frandom.c @@ -26,6 +26,9 @@ #include <linux/random.h> #include <asm/uaccess.h> +#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0) +#include <linux/uaccess.h> +#endif #include <linux/cdev.h> #include <linux/err.h> #include <linux/device.h>

reztho commented on 2012-12-29 19:04 (UTC)

Done, let dkms autoload the module from now on.

reztho commented on 2012-12-26 14:43 (UTC)

Actually I'm thinking in removing the initfiles script since dkms is configured by default to autoload the installed modules (check your /etc/conf.d/dkms). Doesn't dkms autoload frandom in your system?

mmm commented on 2012-12-26 06:17 (UTC)

could you please provide systemd unit file for this? thx