Re: [yocto] [OE-core] DNS when using Static IP

2014-05-02 Thread Tarek El-Sherbiny
> Mike. > > > > On 05/02/2014 02:49 PM, Iorga, Cristian wrote: > >> Not really, I just wanted to get a better overview of the issue that you >> are facing. >> >> What image did you started from, if any? >> >> *From:*Tarek El-Sherbiny [mailt

Re: [yocto] [OE-core] DNS when using Static IP

2014-05-02 Thread Tarek El-Sherbiny
gt; > > > *From:* Tarek El-Sherbiny [mailto:tarek.elsherb...@gmail.com] > *Sent:* Friday, May 2, 2014 3:31 PM > *To:* Iorga, Cristian > *Cc:* openembedded-c...@lists.openembedded.org; yocto@yoctoproject.org > *Subject:* RE: [OE-core] DNS when using Static IP > > > > No

Re: [yocto] [OE-core] DNS when using Static IP

2014-05-02 Thread Tarek El-Sherbiny
> Regards, > > Cristian Iorga > > YP > > Intel Corporation > > > > *From:* openembedded-core-boun...@lists.openembedded.org [mailto: > openembedded-core-boun...@lists.openembedded.org] *On Behalf Of *Tarek > El-Sherbiny > *Sent:* Friday, May 2, 2014 2:05 PM > *

[yocto] DNS when using Static IP

2014-05-02 Thread Tarek El-Sherbiny
Hi. I'm trying to set my IP config to a static address. iface eth0 inet static address 192.168.55.45 network 192.168.55.0 netmask 255.255.255.0 broadcast 192.168.55.255 gateway 192.168.55.1 dns-nameservers 192.168.10.2 But I don't get the DNS server address to be in

Re: [yocto] Smart PM for upgrade the full image

2014-01-08 Thread Tarek El-Sherbiny
-y At least this is going to update currently installed packages as well as install new ones. I still need to write a script to remove unwanted ones. Thanks, Tarek On Wed, Jan 8, 2014 at 3:39 PM, Paul Eggleton wrote: > On Wednesday 08 January 2014 14:07:57 Tarek El-Sherbiny wrote: >

Re: [yocto] Smart PM for upgrade the full image

2014-01-08 Thread Tarek El-Sherbiny
day 08 January 2014 12:52:42 Tarek El-Sherbiny wrote: > > I have several targets deployed in multiple sites. Each target might be > > running a different version of the product rootfs image. When I release > a > > new rootfs image I would like to use the smart command on each

[yocto] Smart PM for upgrade the full image

2014-01-08 Thread Tarek El-Sherbiny
Hi All, I have several targets deployed in multiple sites. Each target might be running a different version of the product rootfs image. When I release a new rootfs image I would like to use the smart command on each target at the customer site to upgrade the software to the latest image. Going

[yocto] Upgrade Kernel using smart

2014-01-06 Thread Tarek El-Sherbiny
Hi All, When I typed the command "smart upgrade" smart detected over a 100 kernel module that needs to be installed. Most of these modules are not relevant and not installed on my system. How do I tell smart to check and upgrade only for the currently installed modules? Thanks, -- *Tarek*

[yocto] Smart runtime package manager

2014-01-05 Thread Tarek El-Sherbiny
Hi, I'm trying to learn how smart works. I've been successful to create a repo, update and install from it. Is there smart install option to force install all the more recent packages without having to type the package name for each individual package? Something like update all to bring the target

Re: [yocto] what are libraries required to use SDL

2012-09-24 Thread Tarek El-Sherbiny
at 9:09 PM, Chris Tapp wrote: > On 23 Sep 2012, at 20:07, Tarek El-Sherbiny wrote: > > > Hi, > > > > I'm porting a program which uses SDL to openembedded Yocto-project. I > have included libsdl to my image but SDL is failling to initialize > SDL_Init(SDL_INIT_

[yocto] what are libraries required to use SDL

2012-09-23 Thread Tarek El-Sherbiny
Hi, I'm porting a program which uses SDL to openembedded Yocto-project. I have included libsdl to my image but SDL is failling to initialize SDL_Init(SDL_INIT_VIDEO) gives: No available video device What are the packages that I need to install to get SDL video device? Thanks ___

Re: [yocto] bitbake check out from svn

2012-09-20 Thread Tarek El-Sherbiny
d On Thu, Sep 20, 2012 at 3:15 PM, Cliff Brake wrote: > On Thu, Sep 20, 2012 at 8:26 AM, Tarek El-Sherbiny < > tarek.elsherb...@gmail.com> wrote: > >> I'm writing a recipe to checkout files from local svn. Here is my URI: >> >> SRC_URI = >> "

[yocto] bitbake check out from svn

2012-09-20 Thread Tarek El-Sherbiny
I'm writing a recipe to checkout files from local svn. Here is my URI: SRC_URI = "svn://svn.ad-group.adh/svn/dev_repos/Generation3_app;module=trunk;protocol=http" bitbake fails to fetch the source from this location and gives the bellow error message. Looks like bitbake is not replacing svn with

Re: [yocto] Lighttpd recipe is falling ERROR: Error executing a python function

2012-09-19 Thread Tarek El-Sherbiny
I have attached the bb and bbappend files. Thanks On Wed, Sep 19, 2012 at 1:14 PM, Gary Thomas wrote: > On 2012-09-19 06:08, Tarek El-Sherbiny wrote: > >> I would like to build lighttpd for my imx6 project. >> >> Her is the error I'm getting after I type bitbake l

[yocto] Lighttpd recipe is falling ERROR: Error executing a python function

2012-09-19 Thread Tarek El-Sherbiny
I would like to build lighttpd for my imx6 project. Her is the error I'm getting after I type bitbake lighttpd NOTE: Resolving any missing task queue dependencies NOTE: Preparing runqueue NOTE: Executing SetScene Tasks NOTE: Executing RunQueue Tasks NOTE: Running task 644 of 885 (ID: 9, /home/tel

Re: [yocto] Autotools CFLAGS & LDFLAGS

2012-09-19 Thread Tarek El-Sherbiny
CFLAGS_append and LDLAGS_append worked for me Thanks On Wed, Sep 19, 2012 at 6:30 AM, Khem Raj wrote: > On Mon, Sep 17, 2012 at 6:55 AM, Tarek El-Sherbiny > wrote: > > Hi All, > > > > What is the easiest way to add nonstandard directory paths for libraries > and &

[yocto] Autotools CFLAGS & LDFLAGS

2012-09-17 Thread Tarek El-Sherbiny
Hi All, What is the easiest way to add nonstandard directory paths for libraries and header files in a recipe that inherit autotools and pkgconfig? Regards, Tarek ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yoct