[yocto] add a process memory check utility (ps_mem)

2014-12-10 Thread Insop Song
Hi Khem, I've been using this memory check utility (ps_mem) and wrote a bb file to include it in our yocto image. I thought it'd nice to include this in yocto upstream as well. - It's called ps_mem, A utility to accurately report the in core memory usage for a program -

Re: [yocto] add a process memory check utility (ps_mem)

2014-12-10 Thread Insop Song
2a4e527465b0ec80e41d2b0df0e2c0b2ef30c608 Mon Sep 17 00:00:00 2001 From: Insop Song insop.s...@gmail.com Date: Wed, 10 Dec 2014 17:16:27 -0800 Subject: [yocto][PATCH] Add ps_mem to to accurately report the in core memory usage for a program - https://github.com/pixelb/ps_mem --- meta-oe/recipes-extended/ps_mem/psmem.bb

Re: [yocto] how to disable shell access

2014-06-19 Thread Insop Song
, Burton, Ross ross.bur...@intel.com wrote: On 17 June 2014 21:23, Insop Song insop.s...@gmail.com wrote: 2. how to block shell access but to open for debugging access For this, I could think of that we could block ssh access and only open console. Or opening ssh for a hidden port only

Re: [yocto] Why use Yocto?

2014-06-17 Thread Insop Song
Just add my few cents of using Yocto. Since yocto is tailored towards embedded system, normally it includes light weight (strip-down version/flavor) software and servers, such as sysklogd instead of syslogd and busybox cron instead of crond. Which is not a bad thing at all, as this make sure

[yocto] how to disable shell access

2014-06-17 Thread Insop Song
All, We usually want to block shell access for the product that we release, but want to have a way to log in for debugging and troubleshoot. I want to ask how other developers are doing this. So two main questions: 1. how to change the default password of root? 2. how to block shell access

Re: [yocto] how to specify if multiple bb files are existing

2014-06-05 Thread Insop Song
-utils_2013.01.01.bb?h=dylan Thank you. ISS On Wed, Jun 4, 2014 at 7:27 PM, Insop Song insop.s...@gmail.com wrote: Hi Rudi, Thank you very much for your help. I've added PREFERRED_VERSION and started build. Regards, Insop On Wed, Jun 4, 2014 at 6:37 PM, Rudolf Streif rstr...@linuxfoundation.org

Re: [yocto] [yocto and jenkins]

2014-06-04 Thread Insop Song
Thank you for the corection Paul, yes you are right. I actually run the following from jenkins job export BB_ENV_EXTRAWHITE=BUILD_NUMBER source SOURCE_THIS bitbake our_image On Wed, Jun 4, 2014 at 2:53 AM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Monday 02 June 2014 17:26:08 Insop

[yocto] how to specify if multiple bb files are existing

2014-06-04 Thread Insop Song
Hi All, I want include u-boot-fw-utils to my image. I want to include u-boot-fw-utils_2013.01.01.bb, but u-boot-fw-utils_2011.06.bb is included if I added it in my image like following IMAGE_INSTALL += \ ... u-boot-fw-utils \ Question: - how to specify bb file when there are multiple

Re: [yocto] how to specify if multiple bb files are existing

2014-06-04 Thread Insop Song
Hi Rudi, Thank you very much for your help. I've added PREFERRED_VERSION and started build. Regards, Insop On Wed, Jun 4, 2014 at 6:37 PM, Rudolf Streif rstr...@linuxfoundation.org wrote: Hi Insop, Technically u-boot-fw-utils_2013.01.01 should be used because it's the newer version.

[yocto] [yocto and jenkins]

2014-06-02 Thread Insop Song
All, I've been building yocto using jenkins. I want to include yocto's build environment variable BUILD_NUMBER to yocto's kernel. 1, I've tried this in one of my conf file, add GS_SDK_VERSION = GS-SDK-V1.5-${BUILD_NUMBER} But ${BUILD_NUMBER} is not expended 2, I've looked at Keon's example

Re: [yocto] [yocto and jenkins]

2014-06-02 Thread Insop Song
Thank you very much Paul. Setting export BB_ENV_EXTRAWHITE=${BUILD_NUMBER} fixed the issue. Regards, Insop On Mon, Jun 2, 2014 at 4:03 PM, Paul Barker p...@paulbarker.me.uk wrote: On Mon, Jun 02, 2014 at 03:38:43PM -0700, Insop Song wrote: All, I've been building yocto using jenkins. I

[yocto] package install in using INITSCRIPT_PARAMS

2013-12-26 Thread Insop Song
Hi, I've use the following to set up SystemV init.d configuration and it works fine for full root file system generation. my example INITSCRIPT_NAME = startwifi INITSCRIPT_PARAMS = start 99 S .

Re: [yocto] package_deb creation issue in powerpc (kernel 64bit, userspace 32bit)

2013-12-13 Thread Insop Song
Can anyone use debian package? On Tue, Dec 10, 2013 at 9:29 PM, Insop Song insop.s...@gmail.com wrote: Hi Khem and Paul, I have an issue of creating deb packages. I am using Freescale version of yocto, which is based on dylan - http://git.freescale.com/git/cgit.cgi/ppc/sdk/poky.git/ I've

[yocto] package_deb creation issue in powerpc (kernel 64bit, userspace 32bit)

2013-12-10 Thread Insop Song
Hi Khem and Paul, I have an issue of creating deb packages. I am using Freescale version of yocto, which is based on dylan - http://git.freescale.com/git/cgit.cgi/ppc/sdk/poky.git/ I've put the following in - PACKAGE_CLASSES ?= package_deb - IMAGE_FEATURES += package-management I've tested

Re: [yocto] How NOT to include kernel image to the rootfs?

2013-06-24 Thread Insop Song
Any other thought? Thank you, Insop On Sun, Jun 23, 2013 at 8:29 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 13-06-23 7:08 PM, Insop Song wrote: Hi, - Question How NOT to include kernel image to the rootfs? - Background In our application, we use u-boot to load kernel

Re: [yocto] How NOT to include kernel image to the rootfs?

2013-06-24 Thread Insop Song
PM To: yocto@yoctoproject.org Subject: Re: [yocto] How NOT to include kernel image to the rootfs? * Insop Song insop.s...@gmail.com [130624 10:56]: I've tried - by commenting RDEPENDS_kernel-base ?= kernel-image from kernel.bbclass - and/or adding RDEPENDS_kernel-base = in my image

[yocto] How NOT to include kernel image to the rootfs?

2013-06-23 Thread Insop Song
Hi, - Question How NOT to include kernel image to the rootfs? - Background In our application, we use u-boot to load kernel and rootfs from nand flash separately. I don't want to include kernel image inside /boot as I don't need it over there. I could untar the rootfs, remove, and tar it up

Re: [yocto] custom hddimg failure (mkdosfs: seek failed)

2013-03-23 Thread Insop Song
, 2013, at 1:44 AM, Insop Song insop.s...@gmail.com wrote: Hi, I am trying to add sdk (gcc ..) to meta-realtime (http://git.yoctoproject.org/cgit/cgit.cgi/meta-realtime/). Only difference between upstream meta-realtime is tools-sdk - require recipes-core/images/core-image-minimal-dev.bb

Re: [yocto] custom hddimg failure (mkdosfs: seek failed)

2013-03-23 Thread Insop Song
Thank you. Works, I can log in without password Insop On Mar 23, 2013, at 0:04, Khem Raj raj.k...@gmail.com wrote: On Mar 22, 2013, at 11:53 PM, Insop Song insop.s...@gmail.com wrote: Hi Khem, Thank you for the reply. I've tried and it worked only if I use tools-sdk like below

[yocto] custom hddimg failure (mkdosfs: seek failed)

2013-03-21 Thread Insop Song
Hi, I am trying to add sdk (gcc ..) to meta-realtime (http://git.yoctoproject.org/cgit/cgit.cgi/meta-realtime/). Only difference between upstream meta-realtime is tools-sdk - require recipes-core/images/core-image-minimal-dev.bb DESCRIPTION = Image with meta-realtime and sdk DEPENDS =

[yocto] [meta-realtime][PATCH 0/1] create a script directory and add a script to run test program and collect data

2013-03-19 Thread Insop Song
10 2 2 9833141 1869044347 1869064356 1869144264 20009 79908 0 10 2 2 9933162 1869144368 1869164375 1869244264 20007 79889 $ Insop Song (1): create a script directory and add a script to run test program

[yocto] [meta-realtime][PATCH 1/1] create a script directory and add a script to run test program and collect data

2013-03-19 Thread Insop Song
- run_rt-app.py runs rt-app on the target machine and collects the output log to host - how to run: $ fab -f run_rt-app.py run_app Note: requires fabric (python program) on the host Signed-off-by: Insop Song insop.s...@gmail.com --- docs/00-INDEX |4 +-- docs/00-README

Re: [yocto] [linux-yocto] [meta-realtime][PATCH 1/1] create a script directory and add a script to run test program and collect data

2013-03-19 Thread Insop Song
Thank you Bruce, More documentations and scripts for testing and analysis the data will follow. Regards, Insop On Tue, Mar 19, 2013 at 11:41 AM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 13-03-19 07:14 AM, Insop Song wrote: - run_rt-app.py runs rt-app on the target machine

Re: [linux-yocto] [meta-realtime][PATCH 1/1] create a script directory and add a script to run test program and collect data

2013-03-19 Thread Insop Song
Thank you Bruce, More documentations and scripts for testing and analysis the data will follow. Regards, Insop On Tue, Mar 19, 2013 at 11:41 AM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 13-03-19 07:14 AM, Insop Song wrote: - run_rt-app.py runs rt-app on the target machine

Re: [yocto] [linux-yocto] [PATCH 0/1] [meta-realtime] Add rt-app, schedtool, define core-image-realtime, and append recipies-kernel

2013-03-18 Thread Insop Song
On Mon, Mar 18, 2013 at 7:21 AM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: I went with core-image-rt-extended this morning. The changes have been merged, briefly tested and pushed to the yocto layer. I've also created a docs/ subirectory in the layer, if you have test steps,

Re: [yocto] [question] icecc: improve interaction with sstate

2013-03-17 Thread Insop Song
On Sat, Mar 16, 2013 at 5:38 PM, Burton, Ross ross.bur...@intel.com wrote: On 16 March 2013 01:16, Insop Song insop.s...@gmail.com wrote: So at this point, I will wait to see if any one is seen this recently. The autobuilder appears to be hitting this still, but as several oe-core maintainers

Re: [yocto] [PATCH 1/1] add scheedtool-dl for testing sched_deadline use jiri's github as a main repo

2013-03-17 Thread Insop Song
On Sat, Mar 16, 2013 at 10:01 PM, Khem Raj raj.k...@gmail.com wrote: On Mar 15, 2013, at 4:47 AM, Insop Song insop.s...@gmail.com wrote: +SRCREV = ${AUTOREV} IMO find a good revision and send that one here. you can use AUTOREV internally for your development thats all fine Hi Khem

Re: [yocto] [linux-yocto] [PATCH 0/1] [meta-realtime] Add rt-app, schedtool, define core-image-realtime, and append recipies-kernel

2013-03-17 Thread Insop Song
On Sat, Mar 16, 2013 at 9:04 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: This looks good to me now, I still think we'll have some confusion between the core rt images and core-image-realtime that we are introducing here. I may rename it core-image-realtime-extended as part of the

Re: [yocto] problems building 'neard'

2013-03-17 Thread Insop Song
I've also ran into this issue and raised in other mail thread. It seems it is fixed with the latest pull. Here was my mail response for your reference: On Sat, Mar 16, 2013 at 5:38 PM, Burton, Ross ross.bur...@intel.com wrote: On 16 March 2013 01:16, Insop Song insop.s...@gmail.com wrote: So

Re: [yocto] [question] icecc: improve interaction with sstate

2013-03-17 Thread Insop Song
On Sun, Mar 17, 2013 at 4:17 PM, Martin Jansa martin.ja...@gmail.com wrote: On Fri, Mar 15, 2013 at 10:37:56PM -0700, Insop Song wrote: Hi, I am using HEAD of master, and I have this error after I use commit Please use better Subject next time, I was wondering what could be broken by my

Re: [yocto] [question] icecc: improve interaction with sstate

2013-03-16 Thread Insop Song
(7803f5f98cf4d12d59ac793d9eb0048b701cafb7) It still gives me an error. So at this point, I will wait to see if any one is seen this recently. Thank you. Insop On Fri, Mar 15, 2013 at 10:55 PM, Insop Song insop.s...@gmail.com wrote: On Fri, Mar 15, 2013 at 10:45 PM, Burton, Ross ross.bur...@intel.com wrote: On 15

Re: [yocto] Loading a new yocto image to Intel Fri2 board

2013-03-16 Thread Insop Song
On Fri, Mar 15, 2013 at 8:58 AM, Darren Hart dvh...@linux.intel.com wrote: Check this image, I think you'll find that rootwait is missing for this image. yes, no rootwait for sda type generation. Regards, Insop ___ yocto mailing list

Re: [yocto] [PATCH 1/1] add scheedtool-dl for testing sched_deadline use jiri's github as a main repo

2013-03-16 Thread Insop Song
On Fri, Mar 15, 2013 at 7:46 AM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 13-03-15 04:47 AM, Insop Song wrote: --- recipes-extended/images/core-image-realtime.bb |1 + recipes-tools/schedtool-dl/schedtool-dl.bb | 23 +++ 2 files changed, 24

[yocto] [PATCH 0/1] [meta-realtime] Add rt-app, schedtool, define core-image-realtime, and append recipies-kernel

2013-03-16 Thread Insop Song
84.32 35501/62 715 PID PPID USER STAT VSZ %VSZ %CPU COMMAND 714 688 root R 2352 2% 28% yes 713 688 root R 2352 2% 9% yes 715 688 root R 2724 2% 4% top Insop Song (1): Add rt-app, schedtool, define core-image-realtime, and append recipies

[yocto] [PATCH 1/1] [meta-realtime] Add rt-app, schedtool, define core-image-realtime, and append recipies-kernel

2013-03-16 Thread Insop Song
index 000..a697e89 --- /dev/null +++ b/recipes-tools/rt-app/files/0001-set-with-deadline-as-a-default-to-go-around-yocto-bu.patch @@ -0,0 +1,26 @@ +From 041b2b65889c44c47f90313c5bf9ce61effa96df Mon Sep 17 00:00:00 2001 +From: Insop Song insop.s...@gmail.com +Date: Sat, 9 Mar 2013 01:23:24

Re: [yocto] [meta-realtime][PATCH] add sched_deadline reckpies-kernel for 3.8 kernel

2013-03-15 Thread Insop Song
On Thu, Mar 14, 2013 at 10:15 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: FYI: your email keeps bouncing from the linux-yocto mailing list, check to be sure you signed up with your gmail account, I keep approving them for now :) I've signed up last time you suggested, I will try

Re: [yocto] [meta-realtime][PATCH] add sched_deadline reckpies-kernel for 3.8 kernel

2013-03-15 Thread Insop Song
On Thu, Mar 14, 2013 at 11:13 PM, Bruce Ashfield bruce.ashfi...@gmail.com wrote: Hmm. One of the arbiters is me .. if it doesn't work this time, let me know and I'll check the list membership. I've just signed up and got a confirmation email. I was do some testing on make localmodconfig,

Re: [yocto] Loading a new yocto image to Intel Fri2 board

2013-03-15 Thread Insop Song
On Thu, Mar 14, 2013 at 1:15 PM, Darren Hart dvh...@linux.intel.com wrote: On 03/14/2013 12:56 PM, Insop Song wrote: Hi Darren, mkefidisk.sh works, thank you. What I found was, USB still doesn't work even with mkefidisk.sh. So I used micro sd card instead. Aha, yes. You will need to add

[yocto] [PATCH 0/1] add sched_deadline reckpies-kernel for 3.8 kernel

2013-03-15 Thread Insop Song
add sched_deadline reckpies-kernel for 3.8 kernel Insop Song (1): add sched_deadline reckpies-kernel for 3.8 kernel recipes-kernel/linux/linux-yocto_3.8.bbappend |9 + 1 file changed, 9 insertions(+) create mode 100644 recipes-kernel/linux/linux-yocto_3.8.bbappend -- 1.7.9.5

[yocto] [PATCH 1/1] add sched_deadline reckpies-kernel for 3.8 kernel

2013-03-15 Thread Insop Song
--- recipes-kernel/linux/linux-yocto_3.8.bbappend |9 + 1 file changed, 9 insertions(+) create mode 100644 recipes-kernel/linux/linux-yocto_3.8.bbappend diff --git a/recipes-kernel/linux/linux-yocto_3.8.bbappend b/recipes-kernel/linux/linux-yocto_3.8.bbappend new file mode 100644

Re: [yocto] [meta-realtime][PATCH] add sched_deadline reckpies-kernel for 3.8 kernel

2013-03-15 Thread Insop Song
On Thu, Mar 14, 2013 at 11:44 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: Are you trying to send via git send-email ? The following is the way that I'd relay through gmail: git send-email --smtp-server smtp.gmail.com --smtp-user bruce.ashfi...@gmail.com --smtp-pass paswd

Re: [yocto] [linux-yocto] [meta-realtime][PATCH] add sched_deadline reckpies-kernel for 3.8 kernel

2013-03-15 Thread Insop Song
On Thu, Mar 14, 2013 at 11:46 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: I hit send too soon, I meant to point out that in a situation such as this, you can ammend your original commit with your second set of change and re-submit just the single patch. I can squash the commits

[yocto] [PATCH 0/1] add scheedtool-dl for testing sched_deadline

2013-03-15 Thread Insop Song
add scheedtool-dl for testing sched_deadline Insop Song (1): add scheedtool-dl for testing sched_deadline use jiri's github as a main repo recipes-extended/images/core-image-realtime.bb |1 + recipes-tools/schedtool-dl/schedtool-dl.bb | 23 +++ 2 files

[yocto] [PATCH 1/1] add scheedtool-dl for testing sched_deadline use jiri's github as a main repo

2013-03-15 Thread Insop Song
--- recipes-extended/images/core-image-realtime.bb |1 + recipes-tools/schedtool-dl/schedtool-dl.bb | 23 +++ 2 files changed, 24 insertions(+) create mode 100644 recipes-tools/schedtool-dl/schedtool-dl.bb diff --git a/recipes-extended/images/core-image-realtime.bb

Re: [yocto] [meta-realtime][PATCH] add sched_deadline reckpies-kernel for 3.8 kernel

2013-03-15 Thread Insop Song
On Thu, Mar 14, 2013 at 11:27 PM, Bruce Ashfield bruce.ashfi...@gmail.com wrote: I was just merging your changes, and realized that gmail may have dropped your schedtool-dl recipe. Can you resend it with your updated series ? I have another schedtool recipe here, but it's against an older

[yocto] [question] icecc: improve interaction with sstate

2013-03-15 Thread Insop Song
Hi, I am using HEAD of master, and I have this error after I use commit commit 1ceb13dda11645229053fc4840954333f8910ba4 Author: Martin Jansa martin.ja...@gmail.com Date: Wed Mar 13 20:04:51 2013 +0100 Could anyone know about this? - my config Build Configuration: BB_VERSION=

Re: [yocto] [question] icecc: improve interaction with sstate

2013-03-15 Thread Insop Song
at 10:37 PM, Insop Song insop.s...@gmail.com wrote: Hi, I am using HEAD of master, and I have this error after I use commit commit 1ceb13dda11645229053fc4840954333f8910ba4 Author: Martin Jansa martin.ja...@gmail.com Date: Wed Mar 13 20:04:51 2013 +0100 Could anyone know about

Re: [yocto] [question] icecc: improve interaction with sstate

2013-03-15 Thread Insop Song
On Fri, Mar 15, 2013 at 10:45 PM, Burton, Ross ross.bur...@intel.com wrote: On 15 March 2013 22:37, Insop Song insop.s...@gmail.com wrote: I am using HEAD of master, and I have this error after I use commit commit 1ceb13dda11645229053fc4840954333f8910ba4 Author: Martin Jansa martin.ja

[yocto] [PATCH] [meta-realtime] Add rt-app and define core-image-realtime

2013-03-14 Thread Insop Song
-with-deadline-as-a-default-to-go-around-yocto-bu.patch @@ -0,0 +1,26 @@ +From 041b2b65889c44c47f90313c5bf9ce61effa96df Mon Sep 17 00:00:00 2001 +From: Insop Song insop.s...@gmail.com +Date: Sat, 9 Mar 2013 01:23:24 -0800 +Subject: [PATCH] set --with-deadline as a default to go around yocto build + error

Re: [yocto] Loading a new yocto image to Intel Fri2 board

2013-03-14 Thread Insop Song
: On 03/10/2013 04:16 AM, Insop Song wrote: Hi, I have a question on loading a new yocto image to Intel Fri2 board. 1. Board: Intel Fri2 -- 2. Image: self built sato image with meta-fri2 -- I've followed an instruction from http

Re: [yocto] [PATCH] [meta-realtime] Add rt-app and define core-image-realtime

2013-03-14 Thread Insop Song
On Thu, Mar 14, 2013 at 1:56 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 13-03-14 12:52 PM, Insop Song wrote: This patch looks ok, what are the differences from your original layer ? I've already imported changes from there, so I'd just like to hear about differences between

[yocto] [meta-realtime][PATCH] add sched_deadline reckpies-kernel for 3.8 kernel

2013-03-14 Thread Insop Song
Hi Bruce, I've added recipes-kernel to use edf branch and cfg. - tested on qemux86 === root@qemux86:~# uname -a Linux qemux86 3.8.1-yocto-standard #1 SMP PREEMPT Thu Mar 14 21:57:12 PDT 2013 i686 GNU/Linux root@qemux86:~# rt-app -t 10:35000:d -D 2

Re: [yocto] Loading a new yocto image to Intel Fri2 board

2013-03-11 Thread Insop Song
Adding Scott, as I've followed the same procedure as described in Hands-on Intro Lab on Barcelona 2012 by Scott. On Sun, Mar 10, 2013 at 4:16 AM, Insop Song insop.s...@gmail.com wrote: Hi, I have a question on loading a new yocto image to Intel Fri2 board. 1. Board: Intel Fri2

Re: [yocto] A question on adding a new program to a new meta layer

2013-03-11 Thread Insop Song
On Sun, Mar 10, 2013 at 8:28 PM, Bruce Ashfield Expect that the yocto project hosted meta-realtime will appear in a week or so. I'm doing the legwork at the moment, but with some travel in the upcoming week, the initial push will be delayed by a few days. Cheers, Bruce That's great! I

Re: [yocto] A question on adding a new program to a new meta layer

2013-03-11 Thread Insop Song
On Mon, Mar 11, 2013 at 7:34 AM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: As an example, I have a schedtool recipe that uses the git://gitorious.org/sched_deadline/schedtool-dl.git repository with a 4 patch series to enable full sched_deadline/EDF support versus the custom

Re: [yocto] A question on adding a new program to a new meta layer

2013-03-11 Thread Insop Song
On Mon, Mar 11, 2013 at 10:03 AM, Bruce Ashfield bruce.ashfi...@gmail.com wrote: If you are looking for push access, we'll wait on that for a bit. I'd like to throttle changes into the new layer by sending them to the linux-yocto mailing list first, have some review and then we can do a pull

[yocto] Loading a new yocto image to Intel Fri2 board

2013-03-10 Thread Insop Song
Hi, I have a question on loading a new yocto image to Intel Fri2 board. 1. Board: Intel Fri2 -- 2. Image: self built sato image with meta-fri2 -- I've followed an instruction from

Re: [yocto] A question on adding a new program to a new meta layer

2013-03-09 Thread Insop Song
On Fri, Mar 8, 2013 at 3:35 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 13-03-08 12:01 PM, Darren Hart wrote: On 03/04/2013 08:04 PM, Insop Song wrote: Hi, I am preparing a new meta layer for testing and promoting a sched_deadline scheduler, called meta-dl. I am planning

Re: [yocto] A question on adding a new program to a new meta layer

2013-03-08 Thread Insop Song
Could you also add me in the announcement list? I can definitely do that. Also if you sign up for the linux-yo...@yoctoproject.org mailing list, that's where announcements and kernel feature discussions happen around linux-yocto. It would be a great place (versus this main yocto mailing

Re: [yocto] qemu not getting dhcp question.

2013-03-08 Thread Insop Song
Hi Khem, runqemu already assigns a static IP to instance and it does not use bridging so dhcp from a server which is not the machine on which qemu is running will not work Right, this testing was from my own meta-dl-qemux86 (custom kernel and recipes). https://github.com/insop/meta-dl

Re: [yocto] A question on adding a new program to a new meta layer

2013-03-08 Thread Insop Song
Moved to master and built 3.8 with standard/edf branch and all working fine. Thank you. Insop On Thu, Mar 7, 2013 at 5:47 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 13-03-07 5:02 PM, Insop Song wrote: One observation and question: 1. I can build core-image-minimal/sato

Re: [yocto] A question on adding a new program to a new meta layer

2013-03-08 Thread Insop Song
On Thu, Mar 7, 2013 at 6:04 AM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 13-03-07 12:05 AM, Insop Song wrote: Bruce, That's very good. I will bring linux-yocto-3.8 kernel to meta-dl. (https://github.com/insop/meta-dl/tree/linux-yocto-3.8) I have another suggestion to offer

Re: [yocto] A question on adding a new program to a new meta layer

2013-03-07 Thread Insop Song
?= S = '${@base_conditional(KSRC, , ${WORKDIR}/git, ${KSRC}, d)}' Thank you. Insop On Wed, Mar 6, 2013 at 8:00 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 13-03-05 1:54 AM, Insop Song wrote: Hi, I am preparing a new meta layer for testing and promoting a sched_deadline

Re: [yocto] A question on adding a new program to a new meta layer

2013-03-07 Thread Insop Song
Hi Bruce, One more question on 3.8 kernel. Is meta/recipes-kernel/linux/linux-yocto_3.8.bb added soon as well in 1.4? I am using 1.4_M4.final now. Thank you. Insop On Wed, Mar 6, 2013 at 9:05 PM, Insop Song insop.s...@gmail.com wrote: Bruce, That's very good. I will bring linux-yocto-3.8

Re: [yocto] nested meta layers, how can/should it be done?

2013-03-07 Thread Insop Song
Hi, I am not an expert yet, but here is what I've recently done and I think this will give you some hints to what you want to achieve. I've made a new meta layer so that I can use custom kernel and add new programs on top of existing core-image-* targets. I used qemu targets for now, but I also

Re: [yocto] A question on adding a new program to a new meta layer

2013-03-07 Thread Insop Song
On Wed, Mar 6, 2013 at 8:00 PM, Bruce Ashfield bruce.ashfi...@windriver.com wrote: On 13-03-05 1:54 AM, Insop Song wrote: Hi, I am preparing a new meta layer for testing and promoting a sched_deadline scheduler, called meta-dl. I am planning to add scheduler testing tools and different kernel

Re: [yocto] A question on adding a new program to a new meta layer

2013-03-07 Thread Insop Song
Thanks Juri, I was going to add you to my linux-yocto-3.8 announcement email and due to some last minute debug activities .. it slipped my mind. So I'm using this thread to let you, and anyone else that is interested know that sched_deadline support is available to try out in

Re: [yocto] A question on adding a new program to a new meta layer

2013-03-07 Thread Insop Song
...@windriver.com wrote: On 13-03-07 03:26 AM, Insop Song wrote: Hi Bruce, One more question on 3.8 kernel. Is meta/recipes-kernel/linux/linux-yocto_3.8.bb added soon as well in 1.4? It's in master as of a few days ago. So it's available and ready for use. Cheers, Bruce I am using

[yocto] qemu not getting dhcp question.

2013-03-06 Thread Insop Song
Hi all, I've built a new meta layer image based on core-image-minimal and core-image-sato. After the successful build, whey I run runqemu with the image, my qemu image won't get a dhcp IP. I can manually assign IP after the boot up. Does anyone know why or which log to look at? Here is the

[yocto] A question on adding a new program to a new meta layer

2013-03-06 Thread Insop Song
Hi, I am preparing a new meta layer for testing and promoting a sched_deadline scheduler, called meta-dl. I am planning to add scheduler testing tools and different kernel versions as well. - http://insop.github.com/meta-dl/ With the help of hands-on kernel lab (thank you Tom and Darren), I am

Re: [yocto] A question on adding a new program to a new meta layer

2013-03-06 Thread Insop Song
at 8:04 PM, Insop Song insop.s...@gmail.com wrote: Hi, I am preparing a new meta layer for testing and promoting a sched_deadline scheduler, called meta-dl. I am planning to add scheduler testing tools and different kernel versions as well. - http://insop.github.com/meta-dl/ With the help