| Submitter | R U Local |
|---|---|
| Date | Jan. 17, 2013, 3:01 a.m. |
| Message ID | <004501cdf45e$f5c87270$e1595750$@slingshot.co.nz> |
| Download | mbox | patch |
| Permalink | /patch/42757/ |
| State | Not Applicable, archived |
| Headers | show |
Comments
Hi, Do you want systemd and udev to be build same time? I'm not sure it is same problem or not, I've read some thread about confliction between systemd and udev. http://comments.gmane.org/gmane.comp.handhelds.openembedded/55775 adding a line PREFERRED_PROVIDER_udev = "systemd" in conf/local.conf helped me to go to next step. Regards,
I resolved this for gumstix/denzil (not Angstrom) with the following,
made necessary by the commit below. Note that the instructions in the
commit mis-spell the variable name.
PREFERRED_VERSION_systemd = "v189"
Peter
commit c17d774553b8e95f142bf6388aa70f48ce8cf1ce
Author: Eric Bénard <eric@eukrea.com>
Date: Mon Dec 24 13:21:43 2012 +0100
systemd_v189: add D_P=-1
now users have the choice :
* keep the old behaviour when not using systemd :
PREFERRED_PROVIDER_udev = "udev"
* switch to systemd (while keeping upgrade path) :
PREFERRED_PROVIDER_udev = "systemd"
PREFFERED_VERSION_systemd = "v189"
Signed-off-by: Eric Bénard <eric@eukrea.com>
Acked-by: Koen Kooi <koen@dominion.thruhere.net>
On 01/17/2013 03:51 AM, Takeshi Hamasaki wrote:
> Hi,
>
> Do you want systemd and udev to be build same time?
> I'm not sure it is same problem or not,
> I've read some thread about confliction between systemd and udev.
> http://comments.gmane.org/gmane.comp.handhelds.openembedded/55775
>
> adding a line
> PREFERRED_PROVIDER_udev = "systemd"
> in conf/local.conf helped me to go to next step.
>
> Regards,
Patch
diff --git a/meta-oe/recipes-connectivity/hostapd/hostap-daemon-1.0/defconfig b/meta-oe/recipes-connectivity/hostapd/hostap-daemon-1.0/defconfig index 1f3c6f4..2789640 100644 --- a/meta-oe/recipes-connectivity/hostapd/hostap-daemon-1.0/defconfig +++ b/meta-oe/recipes-connectivity/hostapd/hostap-daemon-1.0/defconfig @@ -24,7 +24,7 @@ CONFIG_DRIVER_PRISM54=y # Driver interface for drivers using the nl80211 kernel interface CONFIG_DRIVER_NL80211=y -CONFIG_LIBNL20=y +CONFIG_LIBNL32=y # driver_nl80211.c requires a rather new libnl (version 1.1) which may not be # shipped with your distribution yet. If that is the case, you need to build # newer libnl version and point the hostapd build to use it. diff --git a/meta-oe/recipes-connectivity/hostapd/hostap-daemon_1.0.bb b/meta-oe/recipes-connectivity/hostapd/hostap-daemon_1.0.bb index 310e8aa..e62531f 100644 --- a/meta-oe/recipes-connectivity/hostapd/hostap-daemon_1.0.bb +++ b/meta-oe/recipes-connectivity/hostapd/hostap-daemon_1.0.bb @@ -26,6 +26,7 @@ do_configure() { } do_compile() { + export CFLAGS="-MMD -O2 -Wall -g -I${STAGING_INCDIR}/libnl3" make }