diff options
author | Javier Viguera <javier.viguera@digi.com> | 2014-03-12 16:27:00 +0100 |
---|---|---|
committer | Joe MacDonald <joe@deserted.net> | 2014-03-14 08:49:38 -0400 |
commit | 5c9849cd39422ba28f217ba954cdde859a3fe75b (patch) | |
tree | ec880bea19906697b36a70b0b0102f91dea87067 | |
parent | 0d9adcd6576bff4d08a9d601a1296372020ec3a4 (diff) | |
download | meta-openembedded-5c9849cd39422ba28f217ba954cdde859a3fe75b.tar.gz |
crda: fix udev rule
The SBINDIR variable in makefile's install rule needs to have a trailing
slash so the path to the 'crda' binary in the udev rule is correct.
Otherwise the udev rule has a wrong path:
KERNEL=="regulatory*", ACTION=="change", SUBSYSTEM=="platform", RUN+="/usr/sbincrda"
and at runtime udev complains:
failed to execute '/usr/sbincrda'
when a regulatory domain event is triggered.
Signed-off-by: Javier Viguera <javier.viguera@digi.com>
Acked-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Joe MacDonald <joe@deserted.net>
-rw-r--r-- | meta-networking/recipes-connectivity/crda/crda_1.1.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-connectivity/crda/crda_1.1.3.bb b/meta-networking/recipes-connectivity/crda/crda_1.1.3.bb index bee3e826d..0bb899860 100644 --- a/meta-networking/recipes-connectivity/crda/crda_1.1.3.bb +++ b/meta-networking/recipes-connectivity/crda/crda_1.1.3.bb | |||
@@ -24,7 +24,7 @@ do_compile() { | |||
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
27 | oe_runmake SBINDIR=${sbindir} install | 27 | oe_runmake SBINDIR=${sbindir}/ install |
28 | 28 | ||
29 | install -d ${D}${libdir}/crda/ | 29 | install -d ${D}${libdir}/crda/ |
30 | 30 | ||