Displaying 4 results from an estimated 4 matches for "udevdir".
Did you mean:
devdir
2014 Aug 19
1
[PATCH 2/2] Install udev rules in system-default directory
...vrules_DATA = 90-virtio-rng.rules
or alternatively
EXTRA_DIST = 90-virtio-rng.rules
udevrules_DATA = 90-virtio-rng.rules
> +AC_ARG_WITH([udevrulesdir],
> + AS_HELP_STRING([--with-udevrulesdir=DIR], [Directory for udev rules]),
> + [],
> + [with_udevrulesdir=$($PKG_CONFIG --variable=udevdir udev)"/rules.d"])
> +AC_SUBST([udevrulesdir], [$with_udevrulesdir])
You can use AM_CONDITIONAL to skip the installation if
$with_udevrulesdir is "no" (aka --without-udevrulesdir). Then you'd have
EXTRA_DIST = 90-virtio-rng.rules
if INSTALL_UDEV_RULES
udevrules_DATA =...
2014 Aug 19
1
[PATCH 2/2] Install udev rules in system-default directory
...vrules_DATA = 90-virtio-rng.rules
or alternatively
EXTRA_DIST = 90-virtio-rng.rules
udevrules_DATA = 90-virtio-rng.rules
> +AC_ARG_WITH([udevrulesdir],
> + AS_HELP_STRING([--with-udevrulesdir=DIR], [Directory for udev rules]),
> + [],
> + [with_udevrulesdir=$($PKG_CONFIG --variable=udevdir udev)"/rules.d"])
> +AC_SUBST([udevrulesdir], [$with_udevrulesdir])
You can use AM_CONDITIONAL to skip the installation if
$with_udevrulesdir is "no" (aka --without-udevrulesdir). Then you'd have
EXTRA_DIST = 90-virtio-rng.rules
if INSTALL_UDEV_RULES
udevrules_DATA =...
2014 Aug 07
3
[PATCH 0/2] rng-tools: add udev rule for virtio-rng
Hello,
I didn't find a mailing list for rng-tools, so CC'ing the kernel lists
and the last few committers.
The first patch in this series adds a udev rule to start rngd for
guests that have a virtio-rng device available.
The second patch attempts to add autoconf magic to install the udev
rule in the system dirs. However, installing as non-root will
obviously fail. Prefixes are also
2014 Aug 07
3
[PATCH 0/2] rng-tools: add udev rule for virtio-rng
Hello,
I didn't find a mailing list for rng-tools, so CC'ing the kernel lists
and the last few committers.
The first patch in this series adds a udev rule to start rngd for
guests that have a virtio-rng device available.
The second patch attempts to add autoconf magic to install the udev
rule in the system dirs. However, installing as non-root will
obviously fail. Prefixes are also