[yocto] libsnmp-dev in yocto built image

2013-04-19 Thread Katu Txakur
Hi, I want to include net-snmp in an image that I'm building with the Yocto project (gumstix-console-image). When I add it net-snmp-client or server to the local.conf I get this error when bitbake is creating the rootfs. Processing perl-module-text-soundex... error: Failed dependencies:

Re: [yocto] libsnmp-dev in yocto built image

2013-04-19 Thread Katu Txakur
...@linux.intel.com On Friday 19 April 2013 15:44:39 Katu Txakur wrote: I want to include net-snmp in an image that I'm building with the Yocto project (gumstix-console-image). When I add it net-snmp-client or server to the local.conf I get this error when bitbake is creating the rootfs

Re: [yocto] libsnmp-dev in yocto built image

2013-04-22 Thread Katu Txakur
! This is with net-snmp_5.7.1.bb Thanks for your help Paul. Hob is a very useful tool too. 2013/4/19 Katu Txakur katutxaku...@gmail.com Thanks Paul, I followed these instructions https://github.com/gumstix/Gumstix-YoctoProject-Repo The recipe was in ~/yocto/poky/meta-openembedded/meta-oe/recipes

[yocto] ADT development with makefiles

2013-04-23 Thread Katu Txakur
Hi, new to Yocto, I want to develop a software that runs when you start an overo gusmtix. I read the documentation but I still have many questions. If you can answer any of them you will be helping me a lot. I've built the

Re: [yocto] poky: Bitbake nothing provides error

2013-04-29 Thread Katu Txakur
The instructions in https://github.com/gumstix/Gumstix-YoctoProject-Repo/blob/master/README.md worked for me, at least you can get them and have a look at the build/conf/local.conf file. Paul, how can get the recipes and related files that I find in the layerindex? Thanks 2013/4/29 Paul

Re: [yocto] poky: Bitbake nothing provides error

2013-04-30 Thread Katu Txakur
Thank you Paul 2013/4/29 Paul Eggleton paul.eggle...@linux.intel.com On Monday 29 April 2013 15:07:27 Katu Txakur wrote: The instructions in https://github.com/gumstix/Gumstix-YoctoProject-Repo/blob/master/README.md worked for me, at least you can get them and have a look

Re: [yocto] How do I get the kernel modules into rootfs?

2013-05-28 Thread Katu Txakur
Hi Sebastian, if you read this https://www.yoctoproject.org/sites/yoctoproject.org/files/elc2013-kernel-lab.pdf you might find a solution for your problem. Check lab 3. Thanks, Katu 2013/5/28 Paul Eggleton paul.eggle...@linux.intel.com On Tuesday 28 May 2013 14:18:53 Sebastian Süsens wrote:

[yocto] using module_autoload

2013-05-29 Thread Katu Txakur
Hi, I'm failing to load a kernel module named spike doing this: 1) add the recipe (inherit module), based in a Makefile with modules_install: $(MAKE) INSTALL_MOD_DIR=kernel/drivers/spike -C $(KERNEL_SRC) M=$(SRC) modules_install 2) Add the package to the image with IMAGE_INSTALL += spike in the

Re: [yocto] using module_autoload

2013-05-29 Thread Katu Txakur
+0100, Katu Txakur wrote: Hi, I'm failing to load a kernel module named spike doing this: 1) add the recipe (inherit module), based in a Makefile with modules_install: $(MAKE) INSTALL_MOD_DIR=kernel/drivers/spike -C $(KERNEL_SRC) M=$(SRC) modules_install 2) Add the package

Re: [yocto] using module_autoload

2013-05-29 Thread Katu Txakur
is also inherited by kernel.bbclass thanks a lot, Katu 2013/5/29 Bruce Ashfield bruce.ashfi...@windriver.com On 13-05-29 11:32 AM, Katu Txakur wrote: Martin, Paul, thanks for your help. Yes, the recipe does inherit module. Any other problem that you can think off? Note: if you are on master

Re: [yocto] using module_autoload

2013-05-30 Thread Katu Txakur
help Katu 2013/5/29 Martin Jansa martin.ja...@gmail.com On Wed, May 29, 2013 at 04:48:58PM +0100, Katu Txakur wrote: Guys, I'm using the gumstix repo https://github.com/gumstix/Gumstix-YoctoProject-Repo and I don't have any module-split bbclass. The module.bbclass inherits module

Re: [yocto] using module_autoload

2013-05-30 Thread Katu Txakur
! :) Katu 2013/5/30 Martin Jansa martin.ja...@gmail.com On Thu, May 30, 2013 at 09:49:13AM +0100, Katu Txakur wrote: Thanks again Martin, I tried with that kernel-module-split.bbclass but although I got no errors, it didn't work :( Did you just copy that file from master/dylan to danny

[yocto] recipe using waf installation location

2013-06-13 Thread Katu Txakur
Hi all, I'm creating a recipe for jack2_1.9.9.5.bb. The tarball uses waf to configure, compile and install. It configures and compiles correctly, but in the installation part I get: WARNING: QA Issue: jack2: Files/directories were installed but not shipped /usr/local /usr/local/include

Re: [yocto] recipe using waf installation location

2013-06-13 Thread Katu Txakur
that the prefix has to be setup differently for debug? I'm new to waf too... Thanks again for your help. 2013/6/13 Burton, Ross ross.bur...@intel.com On 13 June 2013 09:55, Katu Txakur katutxaku...@gmail.com wrote: do_configure() { ./waf configure --alsa --debug --clients=128 } I've never used waf

[yocto] run commands after installation

2013-06-26 Thread Katu Txakur
Hi, I want to create a user after adding the snmp recipe. The command to do that is: net-snmp-config --create-snmpv3-user -a my_password myuser What's the best way to do it? I have tried from do_install_append and also from ROOTFS_POSTPROCESS_COMMAND but no luck so far. Thanks

Re: [yocto] run commands after installation

2013-06-27 Thread Katu Txakur
Thanks Tomas, it was as easy as pkg_postinst_${PN} () { #!/bin/sh -e net-snmp-config --create-snmpv3-user -a my_password myuser } 2013/6/26 Tomas Frydrych tf+lists.yo...@r-finger.com On 26/06/13 15:32, Katu Txakur wrote: I want to create a user after adding the snmp recipe

[yocto] Intel(R) Core(TM) i7-3612QM CPU @ 2.10GHz

2013-09-02 Thread Katu Txakur
Hello, What is the best stable BSP for a Intel(R) Core(TM) i7-3612QM CPU @ 2.10GHz? I have a computer with 4 cpus and I would like to compile a Linux distro with the Yocto project. I've read about booting with a live usb but, how can I install the distro in the machine? Can I automatize the hard

Re: [yocto] Intel(R) Core(TM) i7-3612QM CPU @ 2.10GHz

2013-09-02 Thread Katu Txakur
...@yoctoproject.org [mailto: yocto-boun...@yoctoproject.org] *On Behalf Of *Katu Txakur *Sent:* Monday, September 02, 2013 10:29 AM *To:* yocto@yoctoproject.org *Subject:* [yocto] Intel(R) Core(TM) i7-3612QM CPU @ 2.10GHz ** ** Hello, ** ** What is the best stable BSP for a Intel

Re: [yocto] Intel(R) Core(TM) i7-3612QM CPU @ 2.10GHz

2013-09-03 Thread Katu Txakur
Owner [image: ablogo color - 500] http://www.annabooks.com/ Tel: 714-970-7523 / Cell: 858-774-3176 ** ** *From:* Katu Txakur [mailto:katutxaku...@gmail.com] *Sent:* Monday, September 02, 2013 3:45 PM *To:* Sean Liming *Cc:* yocto@yoctoproject.org *Subject:* Re: [yocto

[yocto] fetch from perforce

2013-10-15 Thread Katu Txakur
Hi, can someone please give me an example of fetching the code from perforce? I want to map files from perforce and put them in a different tree structure in the workspace before compiling it. I also need to set user and password. I failed to find an example online and I don't understand the

Re: [yocto] Custom defconfig is not used

2013-10-15 Thread Katu Txakur
Hi Diego, I may be wrong here, but I had a similar issue and I gave up. As I understand from https://www.yoctoproject.org/sites/yoctoproject.org/files/elc2013-kernel-lab.pdf if you are not using the linux-yocto kernel you need the whole defconfig. Anyway, reading the kernel lab is probably a good

[yocto] Makefile based package with Makefile in a subdir

2013-10-21 Thread Katu Txakur
Hi, I have a recipe that fetches the code from git. I want to run the makefile located in a subdir of the the repo with the flags and options defined in it. Bitbake cannot find the makefile. I've tried adding EXTRA_OEMAKE += -I${S}/include -C${MAKEFILE_FOLDER} but I'm still getting make: ***

Re: [yocto] fetch from perforce

2013-10-24 Thread Katu Txakur
...@linux.intel.com Hi Katu, On Tuesday 15 October 2013 20:52:15 Katu Txakur wrote: can someone please give me an example of fetching the code from perforce? I want to map files from perforce and put them in a different tree structure in the workspace before compiling it. I also need to set user

[yocto] package various recipes

2014-01-09 Thread Katu Txakur
Hi, I have a few recipes one.bb, two.bb, three.bb that I bitbake to get ipk packages. I would like to create a recipe all.bb that creates a single all.ipk package that will install one, two and three binaries files in the system. How can I do that? Thanks, Katu

[yocto] enable/disable systemd from image.bb

2014-03-04 Thread Katu Txakur
Hi, I'm using Yocto 1.3 and I've created some recipes. All of them have systemd services. Some of them start at boot time and others don't. Let's say for example: recipeA_1.0.bb SYSTEMD_AUTO_ENABLE_${PN}-systemd = enable recipeB_1.0.bb SYSTEMD_AUTO_ENABLE_${PN}-systemd = disable I want to

Re: [yocto] enable/disable systemd from image.bb

2014-03-04 Thread Katu Txakur
Sorry, I sent it uncompleted by mistake. I've also tried ROOTFS_POSTPROCESS_COMMAND =+ \ rm -rf /etc/systemd/system/multi-user.target.wants/recipeA.service; \ but it didn't work either. Anyone knows how to do this? Thanks, Katu 2014-03-04 14:37 GMT+00:00 Katu Txakur katutxaku

Re: [yocto] enable/disable systemd from image.bb

2014-03-10 Thread Katu Txakur
/recipeB.service' '/etc/systemd/system/multi-user.target.wants/recipeB.service; \ regards, Katu 2014-03-04 22:45 GMT+00:00 Khem Raj raj.k...@gmail.com: On Tue, Mar 4, 2014 at 6:38 AM, Katu Txakur katutxaku...@gmail.com wrote: Sorry, I sent it uncompleted by mistake. I've also tried

[yocto] non empty package group

2014-04-16 Thread Katu Txakur
Hi, I have some recipes that generate multiple packages. I also have a package group that groups all the recipes. I would like to use the package created with the packagegroup recipe to install all the files coming from my recipes into the target system. The aim is to have one package that will

Re: [yocto] non empty package group

2014-04-16 Thread Katu Txakur
, binaries... of the recipes in RDEPENDS_${PN} are not included in the mypackagegroup.ipk. Do you know how can I include them? 2014-04-16 16:59 GMT+01:00 Paul Eggleton paul.eggle...@linux.intel.com: On Wednesday 16 April 2014 16:54:11 Katu Txakur wrote: I have some recipes that generate multiple

Re: [yocto] non empty package group

2014-04-16 Thread Katu Txakur
just cleaned the entire tmp folder, I will find out tomorrow if this worked. Thanks 2014-04-16 17:17 GMT+01:00 Paul Eggleton paul.eggle...@linux.intel.com: On Wednesday 16 April 2014 17:09:19 Katu Txakur wrote: yes, it does inherit packagegroup and all the packages are installed. What I

Re: [yocto] non empty package group

2014-04-17 Thread Katu Txakur
17:28:45 Katu Txakur wrote: 2014-04-16 17:17 GMT+01:00 Paul Eggleton paul.eggle...@linux.intel.com : On Wednesday 16 April 2014 17:09:19 Katu Txakur wrote: yes, it does inherit packagegroup and all the packages are installed. What I would like to have is a mypackagegroup.ipk that I

Re: [yocto] Perforce fetcher ignores module and label

2017-08-02 Thread Katu Txakur
direction. Regards, Katu 2017-07-25 10:05 GMT+01:00 Katu Txakur <katutxaku...@gmail.com>: > Hi, > > I'm upgrading a recipe that fetches the source code from Perforce. > > The old recipe was: > > SRC_URI = " \ > p4://${P4USER}:${P4PASSWD}:${P4HOST}:${P4PORT

Re: [yocto] Perforce fetcher ignores module and label

2017-08-02 Thread Katu Txakur
y if > they are accompanied with a good explanation of why the change is needed in > the commit message). > > Cheers, > Paul > > On Wednesday, 2 August 2017 9:40:10 AM CEST Katu Txakur wrote: > > Hi, > > > > I'm still having problems fetching from Perforce.

[yocto] Eclipse Yocto Plugin: Breaks Customize Prespective

2017-07-25 Thread Katu Txakur
Hi, I have noticed that when installing the Yocto Eclipse Plugin in Eclipse Neon (Ubuntu 16.04), I don't have access to the "Customize Prespective" in Eclipse any more. I'm installing from http://downloads.yoctoproject.org/releases/eclipse-plugin/2.3.1/ My plugin setup points to /opt/poky/2.3

[yocto] Perforce fetcher ignores module and label

2017-07-25 Thread Katu Txakur
Hi, I'm upgrading a recipe that fetches the source code from Perforce. The old recipe was: SRC_URI = " \ p4://${P4USER}:${P4PASSWD}:${P4HOST}:${P4PORT}@Depot/path/ perforce/...;module=local/path/relativeto/p4;label=${P4CHANGELIST} \ " With the new version of /lib/bb/fetch2/perforce.py, I

[yocto] Perforce fetcher ignores module and label

2017-07-06 Thread Katu Txakur
Hi, I'm upgrading a recipe that fetches the source code from Perforce. The old recipe was: SRC_URI = " \ p4://${P4USER}:${P4PASSWD}:${P4HOST}:${P4PORT}@Depot/path/perforce/...;module=local/path/relativeto/p4;label=${P4CHANGELIST} \ " With the new version of /lib/bb/fetch2/perforce.py, I

Re: [yocto] Perforce fetcher ignores module and label

2017-09-14 Thread Katu Txakur
Hi Andrew, Have you had time to look at this? I tried to go back to the old perforce fetcher but I got a license error and I couldn't work around it. Regards, Katu 2017-08-31 18:54 GMT+01:00 Andrew Bradford <and...@bradfordembedded.com>: > Hi Katu, > > On 08/28 17:43, Ka

Re: [yocto] Perforce fetcher ignores module and label

2017-09-18 Thread Katu Txakur
: patch failed: bitbake/lib/bb/fetch2/perforce.py:1 error: bitbake/lib/bb/fetch2/perforce.py: patch does not apply Cheers, Katu 2017-09-14 17:17 GMT+01:00 Andrew Bradford <and...@bradfordembedded.com>: > Hi Katu, > > Sorry for my delay in responding. > > On 09/14 11:13, Katu Txaku

Re: [yocto] Perforce fetcher ignores module and label

2017-09-18 Thread Katu Txakur
problems. Thanks for your help in this issue. Regards, Katu 2017-09-18 11:32 GMT+01:00 Katu Txakur <katutxaku...@gmail.com>: > Hi Andrew, > > I'm getting an error when I apply your patch. Do you now how can I work > around this? > > user@pc:~/yocto/pyro/poky$ git fetc

Re: [yocto] Perforce fetcher ignores module and label

2017-08-28 Thread Katu Txakur
sorry about that. On 08/11 11:34, Katu Txakur wrote: > > 2017-08-07 12:17 GMT+01:00 Andrew Bradford <and...@bradfordembedded.com > >: > > > On 08/02 10:28, Paul Eggleton wrote: > > > > On Wednesday, 2 August 2017 9:40:10 AM CEST Katu Txakur wrote: > > &g

Re: [yocto] Perforce fetcher ignores module and label

2017-08-28 Thread Katu Txakur
force-recipe.service" SYSTEMD_AUTO_ENABLE = "disable" FILES_${PN} = "${systemd_unitdir} ${bindir}" 2017-08-28 15:27 GMT+01:00 Andrew Bradford <and...@bradfordembedded.com>: > Hi Katu, > > On 08/28 08:56, Katu Txakur wrote: > > 2017-08