All of lore.kernel.org
 help / color / mirror / Atom feed
* Wifi Module + udev configs
@ 2013-02-07 20:26 Raul Rosetto Munoz
  2013-02-12 19:15   ` Denys Dmytriyenko
  0 siblings, 1 reply; 19+ messages in thread
From: Raul Rosetto Munoz @ 2013-02-07 20:26 UTC (permalink / raw)
  To: meta-ti, yocto

[-- Attachment #1: Type: text/plain, Size: 2446 bytes --]

Hello All,
I need to configure my yocto project to work with wifi dongle realteck
rtl8192cu.

I'm using this building configuration:

Build Configuration:
BB_VERSION        = "1.16.0"
TARGET_ARCH       = "arm"
TARGET_OS         = "linux-gnueabi"
MACHINE           = "beaglebone"
DISTRO            = "poky"
DISTRO_VERSION    = "1.3"
TUNE_FEATURES     = "armv7a vfp neon cortexa8"
TARGET_FPU        = "vfp-neon"
meta
meta-yocto        = "danny:47b0864fbd65746558d8186450c182d98bac78ca"
meta-ti           = "danny:1e898d9b619545dadf2ececad81cd58cdf37c8cd"
meta-oe


First, I built all the modules needed for the wifi dongle and installed in
Angstron standard distro.

This worked well and I had the following lsmod:

Module                  Size  Used by
arc4                    1183  2
rtl8192cu              73042  0
rtl8192c_common        52118  1 rtl8192cu
rtlwifi                57197  1 rtl8192cu
mac80211              149274  3 rtl8192cu,rtl8192c_common,rtlwifi
cfg80211              122225  2 rtlwifi,mac80211
rfkill                 14659  1 cfg80211
g_mass_storage         24014  0
ipv6                  209407  14

Then I tried to do the same for my project and installed the following
packages:
packages:

IMAGE_INSTALL_append = " \
        libxml2 \
        gnupg \
        curl \
        gdb \
        curl-dev \
        minicom \
        lrzsz \
        libcap \
        ppp \
        ppp-dialin \
        usbutils \
        mtd-utils \
        openssh \
        dhcp-server \
        dhcp-client \
        kernel-modules \
        udev-extraconf \
        wpa-supplicant \
        i2c-tools \
        update-modules \
        modutils-initscripts \
        zeroconf \
        wireless-tools \
        openssl \
        net-tools \
        busybox \
        linux-firmware \
        systemd \
        connman"

My first problem is that the module does not go up automatically rtl8192cu
different than Angstron distro that when I plug the dongle all modules rise.

Another important difference is that on Angstron distro I have on /lib/udev
the "firmware" binary file.  I really was not able to install this
functionality in udev.

Please some one can Help me to configure this device?

And How to make this firmware binary go to /lib/udev?

I have not found the way to configure the udev features.

Thanks all for help.

-- 
*Raul Rosetto Muñoz*

[-- Attachment #2: Type: text/html, Size: 3438 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [meta-ti] Wifi Module + udev configs
  2013-02-07 20:26 Wifi Module + udev configs Raul Rosetto Munoz
@ 2013-02-12 19:15   ` Denys Dmytriyenko
  0 siblings, 0 replies; 19+ messages in thread
From: Denys Dmytriyenko @ 2013-02-12 19:15 UTC (permalink / raw)
  To: Raul Rosetto Munoz; +Cc: meta-ti, yocto

On Thu, Feb 07, 2013 at 06:26:46PM -0200, Raul Rosetto Munoz wrote:
> Hello All,
> I need to configure my yocto project to work with wifi dongle realteck
> rtl8192cu.
> 
> My first problem is that the module does not go up automatically rtl8192cu
> different than Angstron distro that when I plug the dongle all modules rise.
> 
> Another important difference is that on Angstron distro I have on /lib/udev
> the "firmware" binary file.  I really was not able to install this
> functionality in udev.

Have you looked at linux-firmware package? rtl8192* should be well supported.


> And How to make this firmware binary go to /lib/udev?

By default, firmware files go into /lib/firmware

-- 
Denys


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Wifi Module + udev configs
@ 2013-02-12 19:15   ` Denys Dmytriyenko
  0 siblings, 0 replies; 19+ messages in thread
From: Denys Dmytriyenko @ 2013-02-12 19:15 UTC (permalink / raw)
  To: Raul Rosetto Munoz; +Cc: meta-ti, yocto

On Thu, Feb 07, 2013 at 06:26:46PM -0200, Raul Rosetto Munoz wrote:
> Hello All,
> I need to configure my yocto project to work with wifi dongle realteck
> rtl8192cu.
> 
> My first problem is that the module does not go up automatically rtl8192cu
> different than Angstron distro that when I plug the dongle all modules rise.
> 
> Another important difference is that on Angstron distro I have on /lib/udev
> the "firmware" binary file.  I really was not able to install this
> functionality in udev.

Have you looked at linux-firmware package? rtl8192* should be well supported.


> And How to make this firmware binary go to /lib/udev?

By default, firmware files go into /lib/firmware

-- 
Denys


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [meta-ti] Wifi Module + udev configs
  2013-02-12 19:15   ` Denys Dmytriyenko
@ 2013-02-14 11:17     ` Raul Rosetto Munoz
  -1 siblings, 0 replies; 19+ messages in thread
From: Raul Rosetto Munoz @ 2013-02-14 11:17 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti, yocto

[-- Attachment #1: Type: text/plain, Size: 1167 bytes --]

Yes I install this package,
But I think that the problem is that the binary firmware at "/lib/udev"
doesn't come with the build.

Some one know how to build the binary firmware at "/lib/udev" responsible
to record the firmware in wifi dongle and enable the udev rules for this
action.

Thanks for all Help


2013/2/12 Denys Dmytriyenko <denys@ti.com>

> On Thu, Feb 07, 2013 at 06:26:46PM -0200, Raul Rosetto Munoz wrote:
> > Hello All,
> > I need to configure my yocto project to work with wifi dongle realteck
> > rtl8192cu.
> >
> > My first problem is that the module does not go up automatically
> rtl8192cu
> > different than Angstron distro that when I plug the dongle all modules
> rise.
> >
> > Another important difference is that on Angstron distro I have on
> /lib/udev
> > the "firmware" binary file.  I really was not able to install this
> > functionality in udev.
>
> Have you looked at linux-firmware package? rtl8192* should be well
> supported.
>
>
> > And How to make this firmware binary go to /lib/udev?
>
> By default, firmware files go into /lib/firmware
>
> --
> Denys
>



-- 
*Raul Rosetto Muñoz*

[-- Attachment #2: Type: text/html, Size: 1771 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Wifi Module + udev configs
@ 2013-02-14 11:17     ` Raul Rosetto Munoz
  0 siblings, 0 replies; 19+ messages in thread
From: Raul Rosetto Munoz @ 2013-02-14 11:17 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti, yocto

[-- Attachment #1: Type: text/plain, Size: 1167 bytes --]

Yes I install this package,
But I think that the problem is that the binary firmware at "/lib/udev"
doesn't come with the build.

Some one know how to build the binary firmware at "/lib/udev" responsible
to record the firmware in wifi dongle and enable the udev rules for this
action.

Thanks for all Help


2013/2/12 Denys Dmytriyenko <denys@ti.com>

> On Thu, Feb 07, 2013 at 06:26:46PM -0200, Raul Rosetto Munoz wrote:
> > Hello All,
> > I need to configure my yocto project to work with wifi dongle realteck
> > rtl8192cu.
> >
> > My first problem is that the module does not go up automatically
> rtl8192cu
> > different than Angstron distro that when I plug the dongle all modules
> rise.
> >
> > Another important difference is that on Angstron distro I have on
> /lib/udev
> > the "firmware" binary file.  I really was not able to install this
> > functionality in udev.
>
> Have you looked at linux-firmware package? rtl8192* should be well
> supported.
>
>
> > And How to make this firmware binary go to /lib/udev?
>
> By default, firmware files go into /lib/firmware
>
> --
> Denys
>



-- 
*Raul Rosetto Muñoz*

[-- Attachment #2: Type: text/html, Size: 1771 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [meta-ti] Wifi Module + udev configs
  2013-02-14 11:17     ` Raul Rosetto Munoz
@ 2013-02-14 16:00       ` Denys Dmytriyenko
  -1 siblings, 0 replies; 19+ messages in thread
From: Denys Dmytriyenko @ 2013-02-14 16:00 UTC (permalink / raw)
  To: Raul Rosetto Munoz; +Cc: meta-ti, yocto

There's /lib/udev/firmware which is a firmware loading helper.

The actual firmware files go into /lib/firmware/ directory.

Please make sure you have the correct packages installed with firmware for 
your WiFi - linux-firmware-{rtl8192cu,rtl8192ce,rtl8192su}

-- 
Denys


On Thu, Feb 14, 2013 at 09:17:43AM -0200, Raul Rosetto Munoz wrote:
> Yes I install this package,
> But I think that the problem is that the binary firmware at "/lib/udev"
> doesn't come with the build.
> 
> Some one know how to build the binary firmware at "/lib/udev" responsible
> to record the firmware in wifi dongle and enable the udev rules for this
> action.
> 
> Thanks for all Help
> 
> 
> 2013/2/12 Denys Dmytriyenko <denys@ti.com>
> 
> > On Thu, Feb 07, 2013 at 06:26:46PM -0200, Raul Rosetto Munoz wrote:
> > > Hello All,
> > > I need to configure my yocto project to work with wifi dongle realteck
> > > rtl8192cu.
> > >
> > > My first problem is that the module does not go up automatically
> > rtl8192cu
> > > different than Angstron distro that when I plug the dongle all modules
> > rise.
> > >
> > > Another important difference is that on Angstron distro I have on
> > /lib/udev
> > > the "firmware" binary file.  I really was not able to install this
> > > functionality in udev.
> >
> > Have you looked at linux-firmware package? rtl8192* should be well
> > supported.
> >
> >
> > > And How to make this firmware binary go to /lib/udev?
> >
> > By default, firmware files go into /lib/firmware
> >
> > --
> > Denys
> >
> 
> 
> 
> -- 
> *Raul Rosetto Mu?oz*


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Wifi Module + udev configs
@ 2013-02-14 16:00       ` Denys Dmytriyenko
  0 siblings, 0 replies; 19+ messages in thread
From: Denys Dmytriyenko @ 2013-02-14 16:00 UTC (permalink / raw)
  To: Raul Rosetto Munoz; +Cc: meta-ti, yocto

There's /lib/udev/firmware which is a firmware loading helper.

The actual firmware files go into /lib/firmware/ directory.

Please make sure you have the correct packages installed with firmware for 
your WiFi - linux-firmware-{rtl8192cu,rtl8192ce,rtl8192su}

-- 
Denys


On Thu, Feb 14, 2013 at 09:17:43AM -0200, Raul Rosetto Munoz wrote:
> Yes I install this package,
> But I think that the problem is that the binary firmware at "/lib/udev"
> doesn't come with the build.
> 
> Some one know how to build the binary firmware at "/lib/udev" responsible
> to record the firmware in wifi dongle and enable the udev rules for this
> action.
> 
> Thanks for all Help
> 
> 
> 2013/2/12 Denys Dmytriyenko <denys@ti.com>
> 
> > On Thu, Feb 07, 2013 at 06:26:46PM -0200, Raul Rosetto Munoz wrote:
> > > Hello All,
> > > I need to configure my yocto project to work with wifi dongle realteck
> > > rtl8192cu.
> > >
> > > My first problem is that the module does not go up automatically
> > rtl8192cu
> > > different than Angstron distro that when I plug the dongle all modules
> > rise.
> > >
> > > Another important difference is that on Angstron distro I have on
> > /lib/udev
> > > the "firmware" binary file.  I really was not able to install this
> > > functionality in udev.
> >
> > Have you looked at linux-firmware package? rtl8192* should be well
> > supported.
> >
> >
> > > And How to make this firmware binary go to /lib/udev?
> >
> > By default, firmware files go into /lib/firmware
> >
> > --
> > Denys
> >
> 
> 
> 
> -- 
> *Raul Rosetto Mu?oz*


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [meta-ti] Wifi Module + udev configs
  2013-02-14 16:00       ` Denys Dmytriyenko
@ 2013-02-14 16:23         ` Raul Rosetto Munoz
  -1 siblings, 0 replies; 19+ messages in thread
From: Raul Rosetto Munoz @ 2013-02-14 16:23 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti, yocto

[-- Attachment #1: Type: text/plain, Size: 1251 bytes --]

Denys,
There are something strange,

First there are no  linux-firmware-{rtl8192cu,rtl8192ce,rtl8192su}
installed at rfs.

raul@phi04:.../tmp/deploy/images$ find
/media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/ -name "*8192*"
/media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/RTL8192E
/media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192sefw.bin
/media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192defw.bin

Another problem is that "/lib/udev/firmware" are not installed to.

raul@phi04:.../tmp/deploy/images$ find
/media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/udev/ -name "*firmware*"
raul@phi04:.../tmp/deploy/images$

But I can see theses files at my "tmp/sysroots/beaglebone"

raul@phi04:.../tmp/sysroots/beaglebone$ find lib/firmware/ -name "*8192*"
lib/firmware/RTL8192E
lib/firmware/rtlwifi/rtl8192sefw.bin
lib/firmware/rtlwifi/rtl8192defw.bin
lib/firmware/rtlwifi/rtl8192cfw.bin
lib/firmware/rtlwifi/rtl8192cufw.bin

raul@phi04:.../tmp/sysroots/beaglebone$ find lib/udev/ -name "*firmware*"
lib/udev/firmware
lib/udev/rules.d/50-firmware.rules

I tryed copy this files for the sdcard but doesnt work.

Do you have any suggest?

Thanks for all help.

[-- Attachment #2: Type: text/html, Size: 2580 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Wifi Module + udev configs
@ 2013-02-14 16:23         ` Raul Rosetto Munoz
  0 siblings, 0 replies; 19+ messages in thread
From: Raul Rosetto Munoz @ 2013-02-14 16:23 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti, yocto

[-- Attachment #1: Type: text/plain, Size: 1251 bytes --]

Denys,
There are something strange,

First there are no  linux-firmware-{rtl8192cu,rtl8192ce,rtl8192su}
installed at rfs.

raul@phi04:.../tmp/deploy/images$ find
/media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/ -name "*8192*"
/media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/RTL8192E
/media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192sefw.bin
/media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192defw.bin

Another problem is that "/lib/udev/firmware" are not installed to.

raul@phi04:.../tmp/deploy/images$ find
/media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/udev/ -name "*firmware*"
raul@phi04:.../tmp/deploy/images$

But I can see theses files at my "tmp/sysroots/beaglebone"

raul@phi04:.../tmp/sysroots/beaglebone$ find lib/firmware/ -name "*8192*"
lib/firmware/RTL8192E
lib/firmware/rtlwifi/rtl8192sefw.bin
lib/firmware/rtlwifi/rtl8192defw.bin
lib/firmware/rtlwifi/rtl8192cfw.bin
lib/firmware/rtlwifi/rtl8192cufw.bin

raul@phi04:.../tmp/sysroots/beaglebone$ find lib/udev/ -name "*firmware*"
lib/udev/firmware
lib/udev/rules.d/50-firmware.rules

I tryed copy this files for the sdcard but doesnt work.

Do you have any suggest?

Thanks for all help.

[-- Attachment #2: Type: text/html, Size: 2580 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [meta-ti] Wifi Module + udev configs
  2013-02-14 16:23         ` Raul Rosetto Munoz
@ 2013-02-14 16:28           ` Denys Dmytriyenko
  -1 siblings, 0 replies; 19+ messages in thread
From: Denys Dmytriyenko @ 2013-02-14 16:28 UTC (permalink / raw)
  To: Raul Rosetto Munoz; +Cc: meta-ti, yocto

On Thu, Feb 14, 2013 at 02:23:14PM -0200, Raul Rosetto Munoz wrote:
> Denys,
> There are something strange,
> 
> First there are no  linux-firmware-{rtl8192cu,rtl8192ce,rtl8192su}
> installed at rfs.

I was talking about packages, looks like you have them already installed.


> raul@phi04:.../tmp/deploy/images$ find
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/ -name "*8192*"
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/RTL8192E
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192sefw.bin
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192defw.bin
> 
> Another problem is that "/lib/udev/firmware" are not installed to.
> 
> raul@phi04:.../tmp/deploy/images$ find
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/udev/ -name "*firmware*"
> raul@phi04:.../tmp/deploy/images$

What is your udev version?


> But I can see theses files at my "tmp/sysroots/beaglebone"
> 
> raul@phi04:.../tmp/sysroots/beaglebone$ find lib/firmware/ -name "*8192*"
> lib/firmware/RTL8192E
> lib/firmware/rtlwifi/rtl8192sefw.bin
> lib/firmware/rtlwifi/rtl8192defw.bin
> lib/firmware/rtlwifi/rtl8192cfw.bin
> lib/firmware/rtlwifi/rtl8192cufw.bin
> 
> raul@phi04:.../tmp/sysroots/beaglebone$ find lib/udev/ -name "*firmware*"
> lib/udev/firmware
> lib/udev/rules.d/50-firmware.rules
> 
> I tryed copy this files for the sdcard but doesnt work.
> 
> Do you have any suggest?
> 
> Thanks for all help.


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Wifi Module + udev configs
@ 2013-02-14 16:28           ` Denys Dmytriyenko
  0 siblings, 0 replies; 19+ messages in thread
From: Denys Dmytriyenko @ 2013-02-14 16:28 UTC (permalink / raw)
  To: Raul Rosetto Munoz; +Cc: meta-ti, yocto

On Thu, Feb 14, 2013 at 02:23:14PM -0200, Raul Rosetto Munoz wrote:
> Denys,
> There are something strange,
> 
> First there are no  linux-firmware-{rtl8192cu,rtl8192ce,rtl8192su}
> installed at rfs.

I was talking about packages, looks like you have them already installed.


> raul@phi04:.../tmp/deploy/images$ find
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/ -name "*8192*"
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/RTL8192E
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192sefw.bin
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192defw.bin
> 
> Another problem is that "/lib/udev/firmware" are not installed to.
> 
> raul@phi04:.../tmp/deploy/images$ find
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/udev/ -name "*firmware*"
> raul@phi04:.../tmp/deploy/images$

What is your udev version?


> But I can see theses files at my "tmp/sysroots/beaglebone"
> 
> raul@phi04:.../tmp/sysroots/beaglebone$ find lib/firmware/ -name "*8192*"
> lib/firmware/RTL8192E
> lib/firmware/rtlwifi/rtl8192sefw.bin
> lib/firmware/rtlwifi/rtl8192defw.bin
> lib/firmware/rtlwifi/rtl8192cfw.bin
> lib/firmware/rtlwifi/rtl8192cufw.bin
> 
> raul@phi04:.../tmp/sysroots/beaglebone$ find lib/udev/ -name "*firmware*"
> lib/udev/firmware
> lib/udev/rules.d/50-firmware.rules
> 
> I tryed copy this files for the sdcard but doesnt work.
> 
> Do you have any suggest?
> 
> Thanks for all help.


^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [meta-ti] Wifi Module + udev configs
  2013-02-14 16:28           ` Denys Dmytriyenko
@ 2013-02-14 16:32             ` Raul Rosetto Munoz
  -1 siblings, 0 replies; 19+ messages in thread
From: Raul Rosetto Munoz @ 2013-02-14 16:32 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti, yocto

[-- Attachment #1: Type: text/plain, Size: 1770 bytes --]

Now Im with 173 from meta-fsl bbapend, but I tryed with many others from
meta-oe and poky.






2013/2/14 Denys Dmytriyenko <denys@ti.com>

> On Thu, Feb 14, 2013 at 02:23:14PM -0200, Raul Rosetto Munoz wrote:
> > Denys,
> > There are something strange,
> >
> > First there are no  linux-firmware-{rtl8192cu,rtl8192ce,rtl8192su}
> > installed at rfs.
>
> I was talking about packages, looks like you have them already installed.
>
>
> > raul@phi04:.../tmp/deploy/images$ find
> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/ -name "*8192*"
> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/RTL8192E
> >
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192sefw.bin
> >
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192defw.bin
> >
> > Another problem is that "/lib/udev/firmware" are not installed to.
> >
> > raul@phi04:.../tmp/deploy/images$ find
> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/udev/ -name "*firmware*"
> > raul@phi04:.../tmp/deploy/images$
>
> What is your udev version?
>
>
> > But I can see theses files at my "tmp/sysroots/beaglebone"
> >
> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/firmware/ -name
> "*8192*"
> > lib/firmware/RTL8192E
> > lib/firmware/rtlwifi/rtl8192sefw.bin
> > lib/firmware/rtlwifi/rtl8192defw.bin
> > lib/firmware/rtlwifi/rtl8192cfw.bin
> > lib/firmware/rtlwifi/rtl8192cufw.bin
> >
> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/udev/ -name
> "*firmware*"
> > lib/udev/firmware
> > lib/udev/rules.d/50-firmware.rules
> >
> > I tryed copy this files for the sdcard but doesnt work.
> >
> > Do you have any suggest?
> >
> > Thanks for all help.
>



-- 
*Raul Rosetto Muñoz*

[-- Attachment #2: Type: text/html, Size: 2473 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Wifi Module + udev configs
@ 2013-02-14 16:32             ` Raul Rosetto Munoz
  0 siblings, 0 replies; 19+ messages in thread
From: Raul Rosetto Munoz @ 2013-02-14 16:32 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti, yocto

[-- Attachment #1: Type: text/plain, Size: 1770 bytes --]

Now Im with 173 from meta-fsl bbapend, but I tryed with many others from
meta-oe and poky.






2013/2/14 Denys Dmytriyenko <denys@ti.com>

> On Thu, Feb 14, 2013 at 02:23:14PM -0200, Raul Rosetto Munoz wrote:
> > Denys,
> > There are something strange,
> >
> > First there are no  linux-firmware-{rtl8192cu,rtl8192ce,rtl8192su}
> > installed at rfs.
>
> I was talking about packages, looks like you have them already installed.
>
>
> > raul@phi04:.../tmp/deploy/images$ find
> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/ -name "*8192*"
> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/RTL8192E
> >
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192sefw.bin
> >
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192defw.bin
> >
> > Another problem is that "/lib/udev/firmware" are not installed to.
> >
> > raul@phi04:.../tmp/deploy/images$ find
> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/udev/ -name "*firmware*"
> > raul@phi04:.../tmp/deploy/images$
>
> What is your udev version?
>
>
> > But I can see theses files at my "tmp/sysroots/beaglebone"
> >
> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/firmware/ -name
> "*8192*"
> > lib/firmware/RTL8192E
> > lib/firmware/rtlwifi/rtl8192sefw.bin
> > lib/firmware/rtlwifi/rtl8192defw.bin
> > lib/firmware/rtlwifi/rtl8192cfw.bin
> > lib/firmware/rtlwifi/rtl8192cufw.bin
> >
> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/udev/ -name
> "*firmware*"
> > lib/udev/firmware
> > lib/udev/rules.d/50-firmware.rules
> >
> > I tryed copy this files for the sdcard but doesnt work.
> >
> > Do you have any suggest?
> >
> > Thanks for all help.
>



-- 
*Raul Rosetto Muñoz*

[-- Attachment #2: Type: text/html, Size: 2473 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [meta-ti] Wifi Module + udev configs
  2013-02-14 16:32             ` Raul Rosetto Munoz
@ 2013-02-18 11:56               ` Raul Rosetto Munoz
  -1 siblings, 0 replies; 19+ messages in thread
From: Raul Rosetto Munoz @ 2013-02-18 11:56 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti, yocto

[-- Attachment #1: Type: text/plain, Size: 2044 bytes --]

Any suggestions?

I really do not know what to do, the file "/lib/udev/firmware" never appear.

Thank you.


2013/2/14 Raul Rosetto Munoz <munoz0raul@gmail.com>

> Now Im with 173 from meta-fsl bbapend, but I tryed with many others from
> meta-oe and poky.
>
>
>
>
>
>
> 2013/2/14 Denys Dmytriyenko <denys@ti.com>
>
>> On Thu, Feb 14, 2013 at 02:23:14PM -0200, Raul Rosetto Munoz wrote:
>> > Denys,
>> > There are something strange,
>> >
>> > First there are no  linux-firmware-{rtl8192cu,rtl8192ce,rtl8192su}
>> > installed at rfs.
>>
>> I was talking about packages, looks like you have them already installed.
>>
>>
>> > raul@phi04:.../tmp/deploy/images$ find
>> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/ -name "*8192*"
>> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/RTL8192E
>> >
>> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192sefw.bin
>> >
>> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192defw.bin
>> >
>> > Another problem is that "/lib/udev/firmware" are not installed to.
>> >
>> > raul@phi04:.../tmp/deploy/images$ find
>> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/udev/ -name "*firmware*"
>> > raul@phi04:.../tmp/deploy/images$
>>
>> What is your udev version?
>>
>>
>> > But I can see theses files at my "tmp/sysroots/beaglebone"
>> >
>> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/firmware/ -name
>> "*8192*"
>> > lib/firmware/RTL8192E
>> > lib/firmware/rtlwifi/rtl8192sefw.bin
>> > lib/firmware/rtlwifi/rtl8192defw.bin
>> > lib/firmware/rtlwifi/rtl8192cfw.bin
>> > lib/firmware/rtlwifi/rtl8192cufw.bin
>> >
>> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/udev/ -name
>> "*firmware*"
>> > lib/udev/firmware
>> > lib/udev/rules.d/50-firmware.rules
>> >
>> > I tryed copy this files for the sdcard but doesnt work.
>> >
>> > Do you have any suggest?
>> >
>> > Thanks for all help.
>>
>
>
>
> --
> *Raul Rosetto Muñoz*
>



-- 
*Raul Rosetto Muñoz*

[-- Attachment #2: Type: text/html, Size: 3128 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Wifi Module + udev configs
@ 2013-02-18 11:56               ` Raul Rosetto Munoz
  0 siblings, 0 replies; 19+ messages in thread
From: Raul Rosetto Munoz @ 2013-02-18 11:56 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti, yocto

[-- Attachment #1: Type: text/plain, Size: 2044 bytes --]

Any suggestions?

I really do not know what to do, the file "/lib/udev/firmware" never appear.

Thank you.


2013/2/14 Raul Rosetto Munoz <munoz0raul@gmail.com>

> Now Im with 173 from meta-fsl bbapend, but I tryed with many others from
> meta-oe and poky.
>
>
>
>
>
>
> 2013/2/14 Denys Dmytriyenko <denys@ti.com>
>
>> On Thu, Feb 14, 2013 at 02:23:14PM -0200, Raul Rosetto Munoz wrote:
>> > Denys,
>> > There are something strange,
>> >
>> > First there are no  linux-firmware-{rtl8192cu,rtl8192ce,rtl8192su}
>> > installed at rfs.
>>
>> I was talking about packages, looks like you have them already installed.
>>
>>
>> > raul@phi04:.../tmp/deploy/images$ find
>> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/ -name "*8192*"
>> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/RTL8192E
>> >
>> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192sefw.bin
>> >
>> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192defw.bin
>> >
>> > Another problem is that "/lib/udev/firmware" are not installed to.
>> >
>> > raul@phi04:.../tmp/deploy/images$ find
>> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/udev/ -name "*firmware*"
>> > raul@phi04:.../tmp/deploy/images$
>>
>> What is your udev version?
>>
>>
>> > But I can see theses files at my "tmp/sysroots/beaglebone"
>> >
>> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/firmware/ -name
>> "*8192*"
>> > lib/firmware/RTL8192E
>> > lib/firmware/rtlwifi/rtl8192sefw.bin
>> > lib/firmware/rtlwifi/rtl8192defw.bin
>> > lib/firmware/rtlwifi/rtl8192cfw.bin
>> > lib/firmware/rtlwifi/rtl8192cufw.bin
>> >
>> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/udev/ -name
>> "*firmware*"
>> > lib/udev/firmware
>> > lib/udev/rules.d/50-firmware.rules
>> >
>> > I tryed copy this files for the sdcard but doesnt work.
>> >
>> > Do you have any suggest?
>> >
>> > Thanks for all help.
>>
>
>
>
> --
> *Raul Rosetto Muñoz*
>



-- 
*Raul Rosetto Muñoz*

[-- Attachment #2: Type: text/html, Size: 3128 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [meta-ti] Wifi Module + udev configs
  2013-02-18 11:56               ` Raul Rosetto Munoz
@ 2013-02-25 20:24                 ` Denys Dmytriyenko
  -1 siblings, 0 replies; 19+ messages in thread
From: Denys Dmytriyenko @ 2013-02-25 20:24 UTC (permalink / raw)
  To: Raul Rosetto Munoz; +Cc: meta-ti, yocto, Denys Dmytriyenko

On Mon, Feb 18, 2013 at 08:56:06AM -0300, Raul Rosetto Munoz wrote:
> Any suggestions?
> 
> I really do not know what to do, the file "/lib/udev/firmware" never appear.

FYI, starting with 176, udev handles loading firmware images internally, hence 
dropping the /lib/udev/firmware binary. But there were some bugs related to 
that functionality, which got fixed in version 178...

http://git.kernel.org/?p=linux/hotplug/udev.git;a=blob;f=ChangeLog;hb=HEAD
http://upstream-tracker.org/changelogs/libudev/181/changelog.html

As I said before, if you are using Danny branch, then you should stick to the 
proven udev-164 that is in oe-core, unless you really want to have systemd, in 
which case you look into meta-openembedded...

-- 
Denys


> 2013/2/14 Raul Rosetto Munoz <munoz0raul@gmail.com>
> 
> > Now Im with 173 from meta-fsl bbapend, but I tryed with many others from
> > meta-oe and poky.
> >
> >
> >
> >
> >
> >
> > 2013/2/14 Denys Dmytriyenko <denys@ti.com>
> >
> >> On Thu, Feb 14, 2013 at 02:23:14PM -0200, Raul Rosetto Munoz wrote:
> >> > Denys,
> >> > There are something strange,
> >> >
> >> > First there are no  linux-firmware-{rtl8192cu,rtl8192ce,rtl8192su}
> >> > installed at rfs.
> >>
> >> I was talking about packages, looks like you have them already installed.
> >>
> >>
> >> > raul@phi04:.../tmp/deploy/images$ find
> >> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/ -name "*8192*"
> >> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/RTL8192E
> >> >
> >> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192sefw.bin
> >> >
> >> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192defw.bin
> >> >
> >> > Another problem is that "/lib/udev/firmware" are not installed to.
> >> >
> >> > raul@phi04:.../tmp/deploy/images$ find
> >> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/udev/ -name "*firmware*"
> >> > raul@phi04:.../tmp/deploy/images$
> >>
> >> What is your udev version?
> >>
> >>
> >> > But I can see theses files at my "tmp/sysroots/beaglebone"
> >> >
> >> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/firmware/ -name
> >> "*8192*"
> >> > lib/firmware/RTL8192E
> >> > lib/firmware/rtlwifi/rtl8192sefw.bin
> >> > lib/firmware/rtlwifi/rtl8192defw.bin
> >> > lib/firmware/rtlwifi/rtl8192cfw.bin
> >> > lib/firmware/rtlwifi/rtl8192cufw.bin
> >> >
> >> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/udev/ -name
> >> "*firmware*"
> >> > lib/udev/firmware
> >> > lib/udev/rules.d/50-firmware.rules
> >> >
> >> > I tryed copy this files for the sdcard but doesnt work.
> >> >
> >> > Do you have any suggest?
> >> >
> >> > Thanks for all help.
> >>
> >
> >
> >
> > --
> > *Raul Rosetto Muñoz*
> >
> 
> 
> 
> -- 
> *Raul Rosetto Muñoz*

> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti



^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Wifi Module + udev configs
@ 2013-02-25 20:24                 ` Denys Dmytriyenko
  0 siblings, 0 replies; 19+ messages in thread
From: Denys Dmytriyenko @ 2013-02-25 20:24 UTC (permalink / raw)
  To: Raul Rosetto Munoz; +Cc: meta-ti, yocto

On Mon, Feb 18, 2013 at 08:56:06AM -0300, Raul Rosetto Munoz wrote:
> Any suggestions?
> 
> I really do not know what to do, the file "/lib/udev/firmware" never appear.

FYI, starting with 176, udev handles loading firmware images internally, hence 
dropping the /lib/udev/firmware binary. But there were some bugs related to 
that functionality, which got fixed in version 178...

http://git.kernel.org/?p=linux/hotplug/udev.git;a=blob;f=ChangeLog;hb=HEAD
http://upstream-tracker.org/changelogs/libudev/181/changelog.html

As I said before, if you are using Danny branch, then you should stick to the 
proven udev-164 that is in oe-core, unless you really want to have systemd, in 
which case you look into meta-openembedded...

-- 
Denys


> 2013/2/14 Raul Rosetto Munoz <munoz0raul@gmail.com>
> 
> > Now Im with 173 from meta-fsl bbapend, but I tryed with many others from
> > meta-oe and poky.
> >
> >
> >
> >
> >
> >
> > 2013/2/14 Denys Dmytriyenko <denys@ti.com>
> >
> >> On Thu, Feb 14, 2013 at 02:23:14PM -0200, Raul Rosetto Munoz wrote:
> >> > Denys,
> >> > There are something strange,
> >> >
> >> > First there are no  linux-firmware-{rtl8192cu,rtl8192ce,rtl8192su}
> >> > installed at rfs.
> >>
> >> I was talking about packages, looks like you have them already installed.
> >>
> >>
> >> > raul@phi04:.../tmp/deploy/images$ find
> >> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/ -name "*8192*"
> >> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/RTL8192E
> >> >
> >> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192sefw.bin
> >> >
> >> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192defw.bin
> >> >
> >> > Another problem is that "/lib/udev/firmware" are not installed to.
> >> >
> >> > raul@phi04:.../tmp/deploy/images$ find
> >> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/udev/ -name "*firmware*"
> >> > raul@phi04:.../tmp/deploy/images$
> >>
> >> What is your udev version?
> >>
> >>
> >> > But I can see theses files at my "tmp/sysroots/beaglebone"
> >> >
> >> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/firmware/ -name
> >> "*8192*"
> >> > lib/firmware/RTL8192E
> >> > lib/firmware/rtlwifi/rtl8192sefw.bin
> >> > lib/firmware/rtlwifi/rtl8192defw.bin
> >> > lib/firmware/rtlwifi/rtl8192cfw.bin
> >> > lib/firmware/rtlwifi/rtl8192cufw.bin
> >> >
> >> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/udev/ -name
> >> "*firmware*"
> >> > lib/udev/firmware
> >> > lib/udev/rules.d/50-firmware.rules
> >> >
> >> > I tryed copy this files for the sdcard but doesnt work.
> >> >
> >> > Do you have any suggest?
> >> >
> >> > Thanks for all help.
> >>
> >
> >
> >
> > --
> > *Raul Rosetto Muñoz*
> >
> 
> 
> 
> -- 
> *Raul Rosetto Muñoz*

> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti



^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [meta-ti] Wifi Module + udev configs
  2013-02-25 20:24                 ` Denys Dmytriyenko
@ 2013-02-27 14:30                   ` Raul Rosetto Munoz
  -1 siblings, 0 replies; 19+ messages in thread
From: Raul Rosetto Munoz @ 2013-02-27 14:30 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti, yocto, Denys Dmytriyenko

[-- Attachment #1: Type: text/plain, Size: 3683 bytes --]

Denys, Thanks for all Reply,

I understand that if I use udev at version 178 or more, I probable will get
a udev with solved firmware problems, however if I use this udev version I
will need to use a systemd packages.

Is possible you give some intructions how to put systemd and udev 178+ at
my build system?

There are another brach that this configuration work?

Thanks For all Help.



2013/2/25 Denys Dmytriyenko <denis@denix.org>

> On Mon, Feb 18, 2013 at 08:56:06AM -0300, Raul Rosetto Munoz wrote:
> > Any suggestions?
> >
> > I really do not know what to do, the file "/lib/udev/firmware" never
> appear.
>
> FYI, starting with 176, udev handles loading firmware images internally,
> hence
> dropping the /lib/udev/firmware binary. But there were some bugs related to
> that functionality, which got fixed in version 178...
>
> http://git.kernel.org/?p=linux/hotplug/udev.git;a=blob;f=ChangeLog;hb=HEAD
> http://upstream-tracker.org/changelogs/libudev/181/changelog.html
>
> As I said before, if you are using Danny branch, then you should stick to
> the
> proven udev-164 that is in oe-core, unless you really want to have
> systemd, in
> which case you look into meta-openembedded...
>
> --
> Denys
>
>
> > 2013/2/14 Raul Rosetto Munoz <munoz0raul@gmail.com>
> >
> > > Now Im with 173 from meta-fsl bbapend, but I tryed with many others
> from
> > > meta-oe and poky.
> > >
> > >
> > >
> > >
> > >
> > >
> > > 2013/2/14 Denys Dmytriyenko <denys@ti.com>
> > >
> > >> On Thu, Feb 14, 2013 at 02:23:14PM -0200, Raul Rosetto Munoz wrote:
> > >> > Denys,
> > >> > There are something strange,
> > >> >
> > >> > First there are no  linux-firmware-{rtl8192cu,rtl8192ce,rtl8192su}
> > >> > installed at rfs.
> > >>
> > >> I was talking about packages, looks like you have them already
> installed.
> > >>
> > >>
> > >> > raul@phi04:.../tmp/deploy/images$ find
> > >> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/ -name
> "*8192*"
> > >> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/RTL8192E
> > >> >
> > >>
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192sefw.bin
> > >> >
> > >>
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192defw.bin
> > >> >
> > >> > Another problem is that "/lib/udev/firmware" are not installed to.
> > >> >
> > >> > raul@phi04:.../tmp/deploy/images$ find
> > >> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/udev/ -name
> "*firmware*"
> > >> > raul@phi04:.../tmp/deploy/images$
> > >>
> > >> What is your udev version?
> > >>
> > >>
> > >> > But I can see theses files at my "tmp/sysroots/beaglebone"
> > >> >
> > >> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/firmware/ -name
> > >> "*8192*"
> > >> > lib/firmware/RTL8192E
> > >> > lib/firmware/rtlwifi/rtl8192sefw.bin
> > >> > lib/firmware/rtlwifi/rtl8192defw.bin
> > >> > lib/firmware/rtlwifi/rtl8192cfw.bin
> > >> > lib/firmware/rtlwifi/rtl8192cufw.bin
> > >> >
> > >> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/udev/ -name
> > >> "*firmware*"
> > >> > lib/udev/firmware
> > >> > lib/udev/rules.d/50-firmware.rules
> > >> >
> > >> > I tryed copy this files for the sdcard but doesnt work.
> > >> >
> > >> > Do you have any suggest?
> > >> >
> > >> > Thanks for all help.
> > >>
> > >
> > >
> > >
> > > --
> > > *Raul Rosetto Muñoz*
> > >
> >
> >
> >
> > --
> > *Raul Rosetto Muñoz*
>
> > _______________________________________________
> > meta-ti mailing list
> > meta-ti@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/meta-ti
>
>


-- 
*Raul Rosetto Muñoz*

[-- Attachment #2: Type: text/html, Size: 5567 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: Wifi Module + udev configs
@ 2013-02-27 14:30                   ` Raul Rosetto Munoz
  0 siblings, 0 replies; 19+ messages in thread
From: Raul Rosetto Munoz @ 2013-02-27 14:30 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti, yocto

[-- Attachment #1: Type: text/plain, Size: 3683 bytes --]

Denys, Thanks for all Reply,

I understand that if I use udev at version 178 or more, I probable will get
a udev with solved firmware problems, however if I use this udev version I
will need to use a systemd packages.

Is possible you give some intructions how to put systemd and udev 178+ at
my build system?

There are another brach that this configuration work?

Thanks For all Help.



2013/2/25 Denys Dmytriyenko <denis@denix.org>

> On Mon, Feb 18, 2013 at 08:56:06AM -0300, Raul Rosetto Munoz wrote:
> > Any suggestions?
> >
> > I really do not know what to do, the file "/lib/udev/firmware" never
> appear.
>
> FYI, starting with 176, udev handles loading firmware images internally,
> hence
> dropping the /lib/udev/firmware binary. But there were some bugs related to
> that functionality, which got fixed in version 178...
>
> http://git.kernel.org/?p=linux/hotplug/udev.git;a=blob;f=ChangeLog;hb=HEAD
> http://upstream-tracker.org/changelogs/libudev/181/changelog.html
>
> As I said before, if you are using Danny branch, then you should stick to
> the
> proven udev-164 that is in oe-core, unless you really want to have
> systemd, in
> which case you look into meta-openembedded...
>
> --
> Denys
>
>
> > 2013/2/14 Raul Rosetto Munoz <munoz0raul@gmail.com>
> >
> > > Now Im with 173 from meta-fsl bbapend, but I tryed with many others
> from
> > > meta-oe and poky.
> > >
> > >
> > >
> > >
> > >
> > >
> > > 2013/2/14 Denys Dmytriyenko <denys@ti.com>
> > >
> > >> On Thu, Feb 14, 2013 at 02:23:14PM -0200, Raul Rosetto Munoz wrote:
> > >> > Denys,
> > >> > There are something strange,
> > >> >
> > >> > First there are no  linux-firmware-{rtl8192cu,rtl8192ce,rtl8192su}
> > >> > installed at rfs.
> > >>
> > >> I was talking about packages, looks like you have them already
> installed.
> > >>
> > >>
> > >> > raul@phi04:.../tmp/deploy/images$ find
> > >> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/ -name
> "*8192*"
> > >> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/RTL8192E
> > >> >
> > >>
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192sefw.bin
> > >> >
> > >>
> /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/firmware/rtlwifi/rtl8192defw.bin
> > >> >
> > >> > Another problem is that "/lib/udev/firmware" are not installed to.
> > >> >
> > >> > raul@phi04:.../tmp/deploy/images$ find
> > >> > /media/ed86e6a2-20c2-464e-a2f3-f28ff48983ef/lib/udev/ -name
> "*firmware*"
> > >> > raul@phi04:.../tmp/deploy/images$
> > >>
> > >> What is your udev version?
> > >>
> > >>
> > >> > But I can see theses files at my "tmp/sysroots/beaglebone"
> > >> >
> > >> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/firmware/ -name
> > >> "*8192*"
> > >> > lib/firmware/RTL8192E
> > >> > lib/firmware/rtlwifi/rtl8192sefw.bin
> > >> > lib/firmware/rtlwifi/rtl8192defw.bin
> > >> > lib/firmware/rtlwifi/rtl8192cfw.bin
> > >> > lib/firmware/rtlwifi/rtl8192cufw.bin
> > >> >
> > >> > raul@phi04:.../tmp/sysroots/beaglebone$ find lib/udev/ -name
> > >> "*firmware*"
> > >> > lib/udev/firmware
> > >> > lib/udev/rules.d/50-firmware.rules
> > >> >
> > >> > I tryed copy this files for the sdcard but doesnt work.
> > >> >
> > >> > Do you have any suggest?
> > >> >
> > >> > Thanks for all help.
> > >>
> > >
> > >
> > >
> > > --
> > > *Raul Rosetto Muñoz*
> > >
> >
> >
> >
> > --
> > *Raul Rosetto Muñoz*
>
> > _______________________________________________
> > meta-ti mailing list
> > meta-ti@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/meta-ti
>
>


-- 
*Raul Rosetto Muñoz*

[-- Attachment #2: Type: text/html, Size: 5567 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2013-02-27 14:30 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-07 20:26 Wifi Module + udev configs Raul Rosetto Munoz
2013-02-12 19:15 ` [meta-ti] " Denys Dmytriyenko
2013-02-12 19:15   ` Denys Dmytriyenko
2013-02-14 11:17   ` [meta-ti] " Raul Rosetto Munoz
2013-02-14 11:17     ` Raul Rosetto Munoz
2013-02-14 16:00     ` [meta-ti] " Denys Dmytriyenko
2013-02-14 16:00       ` Denys Dmytriyenko
2013-02-14 16:23       ` [meta-ti] " Raul Rosetto Munoz
2013-02-14 16:23         ` Raul Rosetto Munoz
2013-02-14 16:28         ` [meta-ti] " Denys Dmytriyenko
2013-02-14 16:28           ` Denys Dmytriyenko
2013-02-14 16:32           ` [meta-ti] " Raul Rosetto Munoz
2013-02-14 16:32             ` Raul Rosetto Munoz
2013-02-18 11:56             ` [meta-ti] " Raul Rosetto Munoz
2013-02-18 11:56               ` Raul Rosetto Munoz
2013-02-25 20:24               ` [meta-ti] " Denys Dmytriyenko
2013-02-25 20:24                 ` Denys Dmytriyenko
2013-02-27 14:30                 ` [meta-ti] " Raul Rosetto Munoz
2013-02-27 14:30                   ` Raul Rosetto Munoz

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.