IRC log for #oe on 20101206

00:31.28*** join/#oe mpoirier (~quassel@S0106002369de4dac.cg.shawcable.net)
00:51.13gandhijeedo i need to have a dhcp client installed or will the kernel take care of that if i am booting using ip=dhcp root=/dev/nfs nfsroot=<ip>:/<path to fs>
00:56.42*** join/#oe mgrundy (~grund@173.85.88.13)
00:56.45grggandhijee, the kernel will obtain the ip
00:57.12gandhijeeman, i must have messed something up really really badly then
00:57.37grgof course, you must have dhcp enabled in your kernel
00:57.40*** join/#oe marex (~marex@vasut.kolej.mff.cuni.cz)
00:57.47gandhijeeit is
00:58.04grgand make sure that userspace is not doing anything stupid, like trying to change the ip after boot
00:58.33grge.g. taking the interface down in order to bring it back up will not be good for nfsroot
01:01.40*** join/#oe Tartarus (trini@pixelshelf.com)
01:19.35gandhijeegrg: i am just untarring the tar.gz created by openembedded
01:19.44gandhijeeand i thought i was doing the samethign as everyone else
01:20.18grggandhijee, you probably are
01:20.30grgbut you haven't mentioned what the problem you're having is
01:20.54gandhijeei try to boot my kernel and it just gets to a point and hangs
01:21.30*** join/#oe mithro (~tim@unaffiliated/mithro)
01:21.31grgits impossible for anyone to help without know where it hangs
01:21.35gandhijeehttp://pastebin.ca/index.php
01:21.38gandhijeewhoo
01:21.38gandhijeeps
01:21.48gandhijeehttp://pastebin.ca/2011599
01:22.48grgit doesn't look related to your nfsroot or dhcp at all
01:23.58grgfrom that paste, i cannot provide further help
01:24.26grgpersonally, i would look to enable more debug messages from the kernel to narrow down what is causing the hang
01:29.42*** join/#oe hufnus_cicq (~hufnus_ci@69-12-177-67.dsl.static.sonic.net)
01:31.50gandhijeewhat part of the kernel debugging should i enable that might enable more messages?
01:37.48grggandhijee, Since i don't know where its hanging, i'd probably start with enabling a bunch of stuff under the "kernel hacking" menu
01:38.55grgand also try to identify what driver have not yet been loaded that i would reasonably expect to load - e.g. i didn't see an ethernet device or nand devices. They might be good candidates for enabling debug options
01:40.30gandhijeegrg: yeah i found someone that has posted there booting config, it should be loading eth then an sd card module
01:41.07*** join/#oe _julian (~quassel@hmbg-5f76159d.pool.mediaWays.net)
01:48.15*** join/#oe guufy (~Guufy@70-35-57-218.static.wiline.com)
01:56.09*** join/#oe dth_ntb (~dth@a89-182-152-160.net-htp.de)
01:56.38*** join/#oe Jay7 (jay@95-29-187-90.broadband.corbina.ru)
02:52.33*** join/#oe thaytan (~jan@ppp59-167-167-201.static.internode.on.net)
03:01.21*** join/#oe fraxinath (~quassel@p4FD654DE.dip.t-dialin.net)
03:14.44coreyfroI am trying to rebuild my kernel with a new .config, but though the compile process completes, an updatedc package is never copies to my deploy directory.  I have tried doing "bitbake -c clean linux-omap-2.6.32" and though that causes the system to compile, no new package is generated.
03:20.50grgcoreyfro, i don't think the kernel ipk contains a kernel image
03:20.56grgits just scripts
03:21.39grglook for a vmlinux or uImage file in your deploy/images dir
03:29.46*** join/#oe playya_ (~playya@unaffiliated/playya)
04:40.43*** join/#oe playya_ (~playya@93.216.219.189)
04:40.43*** join/#oe playya_ (~playya@unaffiliated/playya)
04:45.15*** join/#oe alkopop79 (~alkopop79@92.7.64.186)
04:45.48*** join/#oe sgw (~sgw@c-71-193-189-117.hsd1.wa.comcast.net)
05:14.25coreyfrogrg: Yes, that's where I am looking.  I created a kernel image once, and I have a complete history of all my commands, so I know what I executed previously.  It's not producing images of the kernel anymore.
05:14.43coreyfrogrg: sorry for the delay, I had to take my parents to the airport.
05:16.12grgcoreyfro, well now that they're gone, you can get back to coding communism http://farm2.static.flickr.com/1078/718933691_1b96fe6dee.jpg
05:18.41grgcoreyfro, so what are the commands you executed that you expected to result in a kernel image, but didn't do so?
05:23.22gandhijeeis there away to pass a kernel option to the kernel to tell it what type of FS the rootfs is?
05:23.34coreyfroMACHINE="overo" KERNEL_IMAGETYPE="uImage" bitbake -c menuconfig linux-omap-2.6.32 && MACHINE="overo" bitbake -f -c compile linux-omap-2.6.32
05:24.08coreyfroI also performed a -c clean
05:24.13coreyfroThis worked once
05:25.16coreyfrothe results were uImage-2.6.32-r91+gitr5fc29e7b2a76a64a739f857858ef0b98294aa155-overo.bin and modules-2.6.32-r91+gitr5fc29e7b2a76a64a739f857858ef0b98294aa155-overo.tgz and these work, but I have since changed the .config
05:25.19grgcoreyfro, 'bitbake -f -c compile foo' will unconditionally call the do_compile task for foo
05:25.24grgbut do nothing else
05:25.47grgyou want to have the do_uboot_mkimage and do_install tasks called as well
05:25.52coreyfrogrg: so maybe I need to run a command I ran after it to package the kernel
05:26.04grgso you're better of doing a -c clean and then just doing bitbake foo
05:26.24grgor, yes, you can now tell it to -c install
05:26.26coreyfrogrg: huh...ok...
05:26.30coreyfroahhhh
05:27.14*** join/#oe guufy (~Guufy@70-35-57-218.static.wiline.com)
05:28.03grggandhijee, use rootfstype=xxx
05:28.29coreyfrogrg: aweso,e... we'll see if that works
05:33.16gandhijeegrg: thanks man
05:37.54coreyfro-c install didn't work.  Trying just bitbake foo
05:45.18grglooking at kernel.bbclass, it looks as though the do_deploy task is responsible for copying the kernel image to the deploy dir
05:51.03*** join/#oe ksinkar (~ksinkar@static-mum-59.181.108.105.mtnl.net.in)
06:02.22*** join/#oe ksinkar (~ksinkar@static-mum-59.181.108.105.mtnl.net.in)
06:07.09*** join/#oe mrc3_ (~mrc3@nat/ti/x-nmkzmizdwecenlfr)
06:44.08*** join/#oe tasslehoff (~Mich@147.84-49-231.nextgentel.com)
06:44.32coreyfrogrg: OK, simply running "bitbake foo" did the trick
06:44.38coreyfrothanks!
06:45.28coreyfroMan, I remember when a 2.4mb kernel was considered unreasonable
06:52.35eFfeM_workgm
07:03.34*** join/#oe denix (~denys@nat/ti/x-gxrnhzezcpnkioma)
07:03.41*** join/#oe robtow (~a0272704@nat/ti/x-ebpoavnenbpvrbxy)
07:06.12gandhijeewhere does openembedded install the toolchain it compiles?
07:23.31*** join/#oe GarthPS (~quassel@84.7.10.197)
07:25.46*** join/#oe rob_w (~bob@pD95EF3B6.dip.t-dialin.net)
07:25.53*** join/#oe htns (~htns@61.6.64.6)
07:27.19*** join/#oe rob_w (~bob@pD95EF3B6.dip.t-dialin.net)
07:44.02*** join/#oe rob_w__ (~bob@pD95EE25B.dip.t-dialin.net)
07:45.40*** join/#oe vps (~vitus@145.253.169.210)
08:05.29tasslehoffI need to add some entries to the PATH. Is there a preferred way/place I should do this?
08:06.06Jay7tasslehoff: .profile or .bashrc?
08:08.52tasslehoffJay7: during the build process, or in an init script? the way it is now, my .bashrc/.profile doesn't survive system upgrades (may do so in time).
08:09.42Jay7tasslehoff: if you need this only for build, you can setup from your env setup script
08:09.52Jay7oebb.sh or something like
08:10.08*** join/#oe sH|Mnemonic (~cyberdeck@iss66.vlsi.informatik.tu-darmstadt.de)
08:10.11Jay7there should be PATH change for bitbake already
08:11.16tasslehoffJay7: ah. sorry. I mean change the PATH for the rootfs I'm building, not for the build host.
08:11.45Jay7ah :)
08:11.48mckoangood morning
08:11.54Jay7morning, mckoan
08:12.21Jay7tasslehoff: /etc/profile then should be ok
08:12.25Jay7inside rootfs
08:12.40*** join/#oe foerster|away (~foerster@cpe-24-165-208-114.neo.res.rr.com)
08:25.44tasslehoffJay7: thanks.
08:32.02*** join/#oe ant_work (~andrea@host6-80-static.42-85-b.business.telecomitalia.it)
08:39.55*** join/#oe Anil_ (7aa69219@gateway/web/freenode/ip.122.166.146.25)
08:50.37*** join/#oe morphis (~morphis@brmn-4db71abe.pool.mediaWays.net)
08:50.53*** join/#oe atiti (~ati@217.157.22.194)
08:57.15*** join/#oe dth_ntb (~dth@a89-182-7-167.net-htp.de)
09:05.31*** join/#oe bluelightning (~paul@pdpc/supporter/professional/bluelightning)
09:10.40*** join/#oe mickey|office (~Mickey@business-092-079-168-007.static.arcor-ip.net)
09:15.12*** join/#oe morphis (~morphis@brmn-4db71abe.pool.mediaWays.net)
09:16.31*** join/#oe ao2 (~ao2@cl-35.trn-01.it.sixxs.net)
09:17.20*** join/#oe stefan_schmidt (~stefan@2001:638:602:1183:21f:16ff:fe0d:7d41)
09:17.45*** join/#oe anarsoul (~anarsoul@86.57.155.118)
09:18.47ant_workgood morning
09:19.03stefan_schmidt*yawn* morning
09:19.21ant_workhey stefan_schmidt
09:19.53stefan_schmidthi ant_work
09:20.11ant_workstefan_schmidt: are you the stefan which was building ohm_git.bb ?
09:20.48stefan_schmidtant_work: oh, maybe. Should be 2 years ago :)
09:20.55stefan_schmidtant_work: I think its deprecated now
09:21.02ant_workI found some error-logs like mines ;)
09:21.26ant_workI was trying to build 'sugar'
09:21.48stefan_schmidtoh
09:21.56stefan_schmidtthey still use ohm?
09:22.15ant_workwas failing..I fixed it with the hammer...there must be a bette way ;)
09:22.33stefan_schmidtant_work: to make it short: I have no idea or interest in ohm any longer :)
09:22.40ant_workhe he
09:22.45ant_workno kids?
09:22.58stefan_schmidtno
09:23.08ant_workenjoy the moments
09:23.12stefan_schmidtthx
09:24.58ant_workJaMa: I fear one of my previous patches broke xextproto-70-includes
09:25.07stefan_schmidtka6sox: ping
09:26.28JaMaant_work: I still don't have any builddir using it..
09:27.16ant_workX11/extensions/dpmsstr.h
09:27.20ant_workfor ohm
09:27.35CIA-10103Martin Jansa <Martin.Jansa@gmail.com> 07master * rd28d552600 10openembedded.git/recipes/e17/exquisite-theme-illume.bb:
09:27.35CIA-101exquisite-theme-illume: use e-base
09:27.35CIA-101Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
09:27.47CIA-10103Daniele Ricci <daniele.athome@gmail.com> 07master * r3eae877285 10openembedded.git/recipes/moblin/librest_git.bb:
09:27.48CIA-101librest: git is now hosted on gnome.org
09:27.48CIA-101* also use gitr prefix and SRCPV
09:27.48CIA-101* bump PE for upgradeable path
09:27.48CIA-101Signed-off-by: Daniele Ricci <daniele.athome@gmail.com>
09:28.00ant_workJaMa: btw I removed the headerand ohm builds...just dubious about that header
09:28.08ant_workyou probably knows beter
09:29.24JaMaiirc dpmsstr.h was renamed later
09:29.46JaMamaybe even before 7.5 release
09:45.55CIA-10103Pau Espin Pedrol <pespin.shar@gmail.com> 07master * r7ae1305321 10openembedded.git/recipes/efl1/elementary-theme-efenniht_svn.bb:
09:45.55CIA-101elementary-theme-efenniht: add recipe for efenniht elementary theme.
09:45.55CIA-101Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
09:45.57CIA-10103Pau Espin Pedrol <pespin.shar@gmail.com> 07master * r753baef951 10openembedded.git/recipes/shr/shr-theme-efenniht.bb:
09:45.57CIA-101shr-theme-efenniht: add recipe for efenniht shr theme.
09:45.57CIA-101Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
09:46.00CIA-10103Martin Jansa <Martin.Jansa@gmail.com> 07master * ra4012b4158 10openembedded.git/recipes/tasks/task-shr-feed.bb:
09:46.00CIA-101task-shr-feed: add enjoy and shr-theme-efenniht
09:46.00CIA-101Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
09:50.32*** join/#oe nani_ (7aa69219@gateway/web/freenode/ip.122.166.146.25)
09:58.29*** join/#oe tws691213 (~Miranda@mm-113-208-84-93.dynamic.pppoe.mgts.by)
10:01.44*** join/#oe lrg (~lrg@slimlogic.co.uk)
10:05.44*** join/#oe dth_ntb (~dth@a89-182-7-167.net-htp.de)
10:08.09*** join/#oe tws (~Miranda@mm-113-208-84-93.dynamic.pppoe.mgts.by)
10:13.04*** join/#oe methril_work (~methril@201.35.65.90)
10:14.43bluelightningmorning all
10:15.13*** part/#oe dth_ntb (~dth@a89-182-7-167.net-htp.de)
10:23.04*** join/#oe playya (~playya@unaffiliated/playya)
10:29.20*** join/#oe anarsoul (~anarsoul@86.57.155.118)
10:41.08ant_workbluelightning: hey
10:42.31*** join/#oe rschus (~rschus@62.213.147.91)
10:44.58ant_workJaMa: removing the header is ok. http://lists.freedesktop.org/archives/ohm-devel/2010-February/000143.html
10:45.32ant_workI feared my xextproto-70-includes should have staged the header but wasn't...
10:45.37ant_workwill check
11:00.11*** join/#oe B_Lizzard (~havoc@athedsl-434470.home.otenet.gr)
11:00.20*** join/#oe GarthPS (~quassel@84.7.10.197)
11:00.35*** join/#oe rschus (~rschus@62.213.147.91)
11:02.35*** join/#oe ldnunes (~ldnunes@189.114.111.55)
11:08.07RPmorning all
11:08.25*** join/#oe RP__ (~richard@93-97-173-237.zone5.bethere.co.uk)
11:08.31stefan_schmidthi RP
11:12.47*** join/#oe pirho (debian-tor@gateway/tor-sasl/pirho)
11:16.54*** join/#oe Heinervdm (~thomas@pi-intra-37.physik.uni-bonn.de)
11:21.33*** join/#oe rschus (~rschus@62.213.147.91)
11:30.35*** join/#oe rschus (~rschus@62.213.147.91)
11:32.16*** join/#oe mario-goulart (~user@67.205.85.241)
11:32.40*** join/#oe obi (~obi@unaffiliated/obi)
11:54.59*** join/#oe CMoH|office (~cipi@unaffiliated/c-moh)
11:55.02*** join/#oe Openfree (~df@61.170.205.182)
12:00.43*** join/#oe rschus (~rschus@62.213.147.91)
12:03.48CIA-10103Martin Jansa <Martin.Jansa@gmail.com> 07master * rd15e5fcb0a 10openembedded.git/ (10 files in 5 dirs): (log message trimmed)
12:03.50CIA-101xorg: new versions 2010-12-06, xcalc, xeyex, xf86-video-savage and xserver-xorg moved to 1.9.2.902 (RC2)
12:03.50CIA-101* xf86-video-savage doesn't build for me, ICE with gcc-4.5, but I have
12:03.50CIA-101the same with xf86-video-savage_2.3.1, so probably not savage fault
12:03.50CIA-101| savage_video.c: In function 'SavageDisplaySurface':
12:05.46*** join/#oe ksinkar_ (~ksinkar@static-mum-59.181.108.105.mtnl.net.in)
12:08.57*** join/#oe GNUtoo|laptop (~gnutoo@host237-37-dynamic.117-80-r.retail.telecomitalia.it)
12:15.14*** join/#oe mzs (~michael@scesoc.engsoc.carleton.ca)
12:17.57*** join/#oe risca (~risca@tappan-125-23.eduroam.liu.se)
12:18.52*** join/#oe rschus (~rschus@62.213.147.91)
12:20.37*** join/#oe risca (~risca@tappan-125-23.eduroam.liu.se)
12:32.10*** join/#oe pix[home] (~pix@93.182.199.110)
12:36.42*** join/#oe stefan_schmidt (~stefan@134.169.35.235)
12:39.24*** join/#oe rschus (~rschus@62.213.147.91)
12:45.57*** join/#oe kerim (~kerim@81.214.22.138)
12:49.12*** join/#oe dth_ntb (~dth@a89-182-7-167.net-htp.de)
12:51.53CIA-10103Koen Kooi <koen@openembedded.org> 07org.openembedded.dev * rb139be572e 10openembedded.git/conf/machine/include/tune-cortexa8.inc:
12:51.54CIA-101tune-cortexa8: change '-mfloat-abi=hardfp' to '-mfloat-abi=hard'
12:51.54CIA-101Signed-off-by: Koen Kooi <koen@openembedded.org>
12:51.58CIA-10103Koen Kooi <koen@openembedded.org> 07org.openembedded.dev * r80660274df 10openembedded.git/recipes/linux/ (17 files in 3 dirs): (log message trimmed)
12:51.59CIA-101linux-omap 2.6.37rc: bump to rc4
12:51.59CIA-101* fix defconfig
12:51.59CIA-101* raise MPU limit for 2GHz
12:52.00CIA-101* switch SGX clocks to 200MHz for 36xx
12:52.09CIA-10103Steve Sakoman <steve@sakoman.com> 07org.openembedded.dev * r2586f48a62 10openembedded.git/recipes/udev/ (18 files in 8 dirs):
12:52.09CIA-101udev: Add recipe for 162
12:52.09CIA-101Signed-off-by: Koen Kooi <koen@openembedded.org>
12:52.10CIA-10103Koen Kooi <koen@openembedded.org> 07org.openembedded.dev * r4ecf96c1bb 10openembedded.git/recipes/udev/udev_162.bb:
12:52.11CIA-101udev 162: fix libudev packaging
12:52.11CIA-101Signed-off-by: Koen Kooi <koen@openembedded.org>
12:52.16CIA-10103Koen Kooi <koen@openembedded.org> 07org.openembedded.dev * rf911e1aab3 10openembedded.git/recipes/ti/ (ti-dsplink/dsplink-BKL-fix.patch ti-dsplink_1.65.00.03.bb):
12:52.16CIA-101ti-dsplink 1.65.00.03: add patch to fix build with recent kernels
12:52.16CIA-101Signed-off-by: Koen Kooi <k-kooi@ti.com>
12:52.17CIA-10103Koen Kooi <koen@openembedded.org> 07org.openembedded.dev * r99ef5269e5 10openembedded.git/recipes/ti/ (2 files in 2 dirs):
12:52.17CIA-101ti-local-power-manager: fix build with recent kernels
12:52.17CIA-101Signed-off-by: Koen Kooi <k-kooi@ti.com>
12:52.19CIA-10103Koen Kooi <koen@openembedded.org> 07org.openembedded.dev * rd0184be13b 10openembedded.git/recipes/ti/ (3 files in 2 dirs):
12:52.30CIA-10103Koen Kooi <koen@openembedded.org> 07org.openembedded.dev * r99479ceeca 10openembedded.git/conf/distro/angstrom-2010.x.conf:
12:52.30CIA-101Angstrom next: prefer linux-omap 2.6.37rcX as main kernel for beagle
12:52.30CIA-101Signed-off-by: Koen Kooi <koen@beagleboard.org>
12:52.32CIA-10103Koen Kooi <koen@openembedded.org> 07org.openembedded.dev * r276cdd4578 10openembedded.git/recipes/bc/ (bc/bc-1.06-fixes-1.patch bc_1.06.bb):
12:52.33CIA-101bc 1.06: fix segfault when using -l
12:52.33CIA-101Signed-off-by: Koen Kooi <koen@openembedded.org>
12:52.34CIA-10103Koen Kooi <koen@openembedded.org> 07org.openembedded.dev * r1c40a83a79 10openembedded.git/recipes/xorg-proto/ (25 files):
12:52.35CIA-101xorg-proto: move BBCLASSEXTEND to .inc
12:52.35CIA-101Signed-off-by: Koen Kooi <koen@openembedded.org>
12:52.37CIA-10103Koen Kooi <koen@openembedded.org> 07org.openembedded.dev * r8df2b96e67 10openembedded.git/conf/distro/include/angstrom-2010-preferred-versions.inc:
12:52.37CIA-101angstrom next: prefer glibc 2.26.x
12:52.37CIA-101Signed-off-by: Koen Kooi <koen@openembedded.org>
13:00.46*** join/#oe anarsoul (~anarsoul@86.57.155.118)
13:03.45*** join/#oe mckoan (~marco@unaffiliated/mckoan)
13:05.00*** join/#oe morphis (~morphis@brmn-4db71abe.pool.mediaWays.net)
13:05.46*** join/#oe etrunko (~edulima@187.106.5.201)
13:15.25*** join/#oe stefan_schmidt (~stefan@134.169.35.235)
13:19.40*** join/#oe Openfree (~df@61.170.205.182)
13:26.11*** join/#oe marex (~marex@eduroam93.ms.mff.cuni.cz)
13:28.22*** join/#oe ericben (~ebenard@pac33-2-82-240-38-71.fbx.proxad.net)
13:37.02*** join/#oe tws (~Miranda@mm-113-208-84-93.dynamic.pppoe.mgts.by)
13:47.30*** join/#oe mpoirier (~quassel@S0106002369de4dac.cg.shawcable.net)
13:48.39*** join/#oe mickey|office (~Mickey@business-092-079-168-007.static.arcor-ip.net)
13:49.53*** join/#oe stefan_schmidt (~stefan@2001:638:602:1183:21f:16ff:fe0d:7d41)
13:56.49CIA-10103Paul Menzel <paulepanter@users.sourceforge.net> 07master * re5fd2bdab8 10openembedded.git/recipes/e17/enjoy_svn.bb: (log message trimmed)
13:56.49CIA-101enjoy: add `elementary` to `DEPENDS`
13:56.49CIA-101Task `configure` fails with the following error message.
13:56.49CIA-101| checking pkg-config is at least version 0.9.0... yes
13:56.49CIA-101| checking for EDBUS... yes
13:57.06CIA-10103Paul Menzel <paulepanter@users.sourceforge.net> 07master * rf3c57f4434 10openembedded.git/recipes/e17/enjoy_svn.bb: (log message trimmed)
13:57.06CIA-101enjoy: Fix commit 1265ac and append to `DEPENDS`.
13:57.06CIA-101With commit 1265ac »enjoy_svn.bb: add missing DEPENDS for the needed gst-plugins« [1] previous `DEPENDS` assignment was discarded and task `configure` failed with the following error.
13:57.06CIA-101checking pkg-config is at least version 0.9.0... yes
13:57.07CIA-101checking for EDBUS... configure: error: Package requirements (edbus) were not met:
13:59.50*** join/#oe cminyard (~cminyard@pool-173-57-145-237.dllstx.fios.verizon.net)
14:00.11*** join/#oe risca (~risca@tappan-125-23.eduroam.liu.se)
14:04.35*** join/#oe kevinsc (~a0214685@nat/ti/x-szsclzsdjqvzqkwx)
14:12.38*** join/#oe aloisiojr (~aloisio@186.212.106.18)
14:17.50*** join/#oe playya_ (~playya@unaffiliated/playya)
14:24.44*** join/#oe kerim (~kerim@81.214.22.138)
14:35.45*** join/#oe dijenerate (~dijenerat@65.48.198.29)
14:39.47*** join/#oe ant_ (~andrea@host6-80-static.42-85-b.business.telecomitalia.it)
14:42.41B_LizzardHi, I updated oe and now it fails on building glibc or something
14:42.58B_LizzardI think someone gave me an alias for cleaning recipes
14:43.25JaMadepends on "or something"
14:43.42B_LizzardWell, it fails on glibc when it cannot find -lgcc_eh
14:43.58JaMafor toolchain upgrades I use alias clean_toolchain="for i in /OE/dev/recipes/gcc/gcc*4.5*bb /OE/dev/recipes/binutils/binutils*2.20.1*bb /OE/dev/recipes/eglibc/eglibc*2.12*bb; do bitbake -c clean -b \$i; done"
14:44.07B_LizzardThanks, dude
14:44.11B_LizzardI'm saving that one
14:44.12JaMabut you have to update it for your versions and libc
14:44.31B_LizzardUh huh
14:44.32B_LizzardThanks, dude
15:01.29*** join/#oe turanmo (~vector@115.119.134.194)
15:13.56*** join/#oe dijenerate (~dijenerat@65.48.198.29)
15:14.53*** join/#oe dijenerate (~dijenerat@65.48.198.29)
15:24.32*** join/#oe lrg (~lrg@slimlogic.co.uk)
15:27.55*** join/#oe risca (~risca@tappan-125-23.eduroam.liu.se)
15:36.02*** join/#oe xeon-enouf (~xeon-enou@unaffiliated/xeon-enouf)
15:46.48GNUtoo|laptopfidencio[AWAY], why does enjoy need internet?
15:47.17stefan_schmidtGNUtoo|laptop: cover fetching I would guess
15:47.22GNUtoo|laptopah ok
15:47.37GNUtoo|laptopit blocks when accesing the albums when no internet is present.....
15:47.56GNUtoo|laptopand indeed that corresponds with cover fetching
15:47.59*** join/#oe mrj10 (~mrj10@63.252.64.254)
15:48.02GNUtoo|laptopwill tcpdump it to be sure
15:48.03GNUtoo|laptopthanks
15:48.09*** part/#oe mrj10 (~mrj10@63.252.64.254)
15:48.47GNUtoo|laptopit fetches them from lastfm?
15:48.55kergoth_hrm
15:48.55stefan_schmidtGNUtoo|laptop: yes
15:49.00GNUtoo|laptopah ok
15:49.04GNUtoo|laptopcan it be disabled
15:49.16stefan_schmidtblocking the playing without access is stupid though :)
15:49.21GNUtoo|laptopindeed
15:49.22stefan_schmidtah
15:49.30stefan_schmidthi kergoth_
15:49.45stefan_schmidtkergoth_: Do you plan any bitbake releases soon?
15:50.04stefan_schmidtwonders what targets we should have for the next release
15:50.32kergoth_yes, we need to get a release out with the parsing improvement soon, though its likely that we're going to postpone it until we get poky's changes merged back
15:50.41JaMaGNUtoo|laptop: for me test-lms doesn't work correctly :/ so I haven't even try enjoy..
15:51.28stefan_schmidtmultithreaded parsing and therefor a newer bitbake would be a worthy goal I think
15:51.49GNUtoo|laptopJaMa, ah? did you try with -mono as said in the postinstall ?
15:51.49stefan_schmidtkergoth_: great, so poky changes are also on the table
15:51.59*** join/#oe awozniak (~awozniak@76.205.222.173)
15:52.06kergoth_parallel parsing was merged to master last week.  i'm testing bitbake with all the poky fixes but the bitbake-runtask and runqueue changes right now
15:52.10JaMaGNUtoo|laptop: no :/ overlooked mono
15:52.14kergoth_expect to push this chunk of it today
15:52.28JaMaGNUtoo|laptop: I was actually reading the output of enjoy error message
15:52.31stefan_schmidtkergoth_: I also tested the parsing changes from master and hit no problems
15:52.40kergoth_glad to hear it
15:52.56GNUtoo|laptopJaMa, try with -mono, the other way doesn't work
15:53.00GNUtoo|laptopI don't know why tough
15:53.26JaMawill try later..
15:53.35GNUtoo|laptopok
15:53.46stefan_schmidtkergoth_: anything else you think is worth for the next release? If we would target march 2011
15:57.33JaMaobi: thanks in advance for patches for --exclude scm
15:58.57obiyou're welcome :)
16:04.14Crofton|workhttp://pastebin.com/gfJv5smB
16:04.15JaMaGNUtoo|laptop: on gta02 it works for me partially with and without -m mono.. but says "ERROR: could not add conversion charset 'UTF-16LE': Invalid argument" instead
16:04.27Crofton|workfails for angstrom 2010 in dev
16:07.28GNUtoo|laptopah ok
16:12.09JaMaGNUtoo|laptop: and after installing eglibc-gconv-utf-16 even this error is gone
16:12.18GNUtoo|laptopok
16:12.39GNUtoo|laptopso what should we do?
16:12.42GNUtoo|laptopdepend on it?
16:12.42*** join/#oe dos1 (~dos@unaffiliated/dos1)
16:13.58CIA-10103Stefan Schmidt <stefan@buglabs.net> 07master * r30779ff69f 10openembedded.git/recipes/u-boot/u-boot-bug_svn.bb:
16:13.58CIA-101u-boot-bug_svn: Change SRC_URI to new location.
16:13.58CIA-101The BugLabs SVN got migrated to a new place. The old on is still in read only
16:13.58CIA-101mode, but will go off soon.
16:14.09CIA-10103Stefan Schmidt <stefan@buglabs.net> 07master * rd6f5d2e160 10openembedded.git/recipes/linux/linux-bug_2.6.27.2.bb:
16:14.09CIA-101linux-bug_2.6.27.2: Change SRC_URI to new location.
16:14.09CIA-101The BugLabs SVN got migrated to a new place. The old on is still in read only
16:14.09CIA-101mode, but will go off soon.
16:14.10CIA-10103Stefan Schmidt <stefan@buglabs.net> 07master * r101d8681be 10openembedded.git/recipes/fbprogress/fbprogress_1.1.bb:
16:14.21GNUtoo|laptopthanks
16:14.32stefan_schmidtGNUtoo|laptop: np
16:14.48stefan_schmidtGNUtoo|laptop: fetching is working for all of them
16:15.11GNUtoo|laptopwow there is fbprogress in oe
16:15.15GNUtoo|laptopI didn't remember that
16:15.31stefan_schmidtheh, it all showed up during my svn.buglabs grep :)
16:15.32GNUtoo|laptopah it's the old version right?
16:15.48GNUtoo|laptopyes I remember now
16:15.59GNUtoo|laptopit's was in oe but was an old version
16:16.00stefan_schmidtDon't know. I did not put it there :D
16:16.07GNUtoo|laptopI think hrw did
16:16.28stefan_schmidtcould be
16:16.37hrwfbprogress should be removed
16:16.46JaMaGNUtoo|laptop: I haven't checked lms sources if it always needs this conversion .. but yes rdepend on something like $LIBC--gconv-utf-16 would be better then error (no idea if uclibc also provide this)
16:17.07GNUtoo|laptopJaMa, could you do it?
16:17.17stefan_schmidthrw: why? never used?
16:17.36JaMaGNUtoo|laptop: not today...
16:17.43hrwstefan_schmidt: bug1 only and even there we iirc worked on psplash
16:17.55GNUtoo|laptopJaMa, I can wait
16:18.46stefan_schmidthrw: ok, its GNUtoo|laptop's call as he maintains bug1 in OE
16:18.53*** join/#oe methril (~methril@189.27.140.209.dynamic.adsl.gvt.net.br)
16:19.31Crofton|workhttp://pastebin.com/gfJv5smB
16:19.34Crofton|workanyone?
16:20.14stefan_schmidtCrofton|work: not building with 2010 here
16:20.25stefan_schmidtCrofton|work: is this before or after koen's glib 2.26 change?
16:20.40Crofton|worklikely after
16:20.58stefan_schmidtmaybe try to revert that one?
16:21.06stefan_schmidtperhaps they killed G_DBUS_TYPE_CSTRING
16:21.17stefan_schmidthas no idea about glib development
16:21.58Crofton|workafter lunch :)
16:22.14Crofton|workthere have been a number of commits in glib
16:22.18Crofton|workthanks for the pointer
16:24.00stefan_schmidtCrofton|work: np
16:32.19*** join/#oe jmpdelos (~polk@outgoing.delos.com)
16:37.45*** join/#oe GarthPS (~quassel@84.7.10.197)
16:41.06CIA-10103Richard Purdie <rpurdie@linux.intel.com> 07master * rf2681f1362 10bitbake.git/lib/bb/runqueue.py:
16:41.06CIA-101bitbake/runqueue.py: Drop duplicated class
16:41.06CIA-101Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
16:41.12CIA-10103Richard Purdie <rpurdie@linux.intel.com> 07master * rfb5ae7ac11 10bitbake.git/lib/bb/utils.py:
16:41.12CIA-101bitbake/utils.py: Allow explode_dep_versions to handle the commas join_deps can introduce into strings
16:41.12CIA-101Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
16:41.13CIA-10103Richard Purdie <rpurdie@linux.intel.com> 07master * r873633d8bc 10bitbake.git/lib/bb/utils.py:
16:41.13CIA-101bitbake/utils.py: Give useful debug information when no lineno information is available
16:41.13CIA-101Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
16:41.13CIA-101Signed-off-by: Chris Larson <chris_larson@mentor.com>
16:41.17CIA-10103Richard Purdie <rpurdie@linux.intel.com> 07master * r61c78368b7 10bitbake.git/lib/bb/ (build.py runqueue.py):
16:41.17CIA-101bitbake/build.py: Set BB_FILENAME to represent the .bb file being built (including any virtual prefix)
16:41.17CIA-101Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
16:41.18CIA-10103Richard Purdie <rpurdie@linux.intel.com> 07master * r62604b9e05 10bitbake.git/lib/bb/ (cooker.py runqueue.py):
16:41.24CIA-101[BUGID #375]
16:41.24CIA-101When configuring for the log file output, we generate a symlink to the
16:41.24CIA-101target filename. This link uses the same file naming, but without the
16:41.25CIA-101active pid, making it easier to see which log file is the last one
16:41.25CIA-101generated.
16:41.26CIA-10103Richard Purdie <rpurdie@linux.intel.com> 07master * r3b66db2b56 10bitbake.git/lib/bb/utils.py:
16:41.26CIA-101bitbake/utils.py: Improve better_exec debug output
16:41.33CIA-10103Chris Larson <chris_larson@mentor.com> 07master * r3aaddb8c43 10bitbake.git/lib/bb/fetch/ (__init__.py git.py): (log message trimmed)
16:41.34CIA-101Merged the following poky fetcher fixes:
16:41.34CIA-101- bitbake/fetch: Allow checking of a single url at a time (massive sstate
16:41.34CIA-101speed improvement)
16:41.34CIA-101- bitbake/fetch: Fix handling of mirrors when checking for url validity
16:41.51CIA-101Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
16:41.51CIA-101Signed-off-by: Chris Larson <chris_larson@mentor.com>
16:44.39*** join/#oe CruX| (~jozo@pc-3r0oapyeojvdpt61ks2su2mddvoc1iv.usr.iklub.sk)
16:46.37*** join/#oe davidlt (~davidlt@221-140.62-81.cust.bluewin.ch)
16:50.32*** join/#oe mr_nice (~nice@95-90-74-25-dynip.superkabel.de)
16:58.19*** join/#oe jmpdelos (~polk@outgoing.delos.com)
17:01.59*** join/#oe rob_w (bob@pD95EE25B.dip.t-dialin.net)
17:03.33CIA-10103Koen Kooi <koen@openembedded.org> 07org.openembedded.dev * r58598ebeb1 10openembedded.git/recipes/gnome/gvfs_1.6.6.bb:
17:03.33CIA-101gvfs: add 1.6.6 which works with a recent glib
17:03.33CIA-101Signed-off-by: Koen Kooi <koen@openembedded.org>
17:05.42obikhem: is there a reason why CVS directories didn't get excluded from tarballs if fullpath was not set?
17:12.08stefan_schmidtCrofton|work: judging from koens commit I have been right :)
17:12.23stefan_schmidthave to go, cu
17:18.46*** join/#oe pirho_ (debian-tor@gateway/tor-sasl/pirho)
17:21.31CIA-10103Roger Monk <r-monk@ti.com> 07org.openembedded.dev * r2dd39d0f4a 10openembedded.git/recipes/ti/ti-linuxutils_2.26.01.02.bb:
17:21.31CIA-101ti-linuxutils: Add 2.26.01.02
17:21.31CIA-101* Add latest linuxutils 2.26.01.02
17:21.31CIA-101* support for linux 2.6.37rc
17:21.31CIA-101Signed-off-by: Roger Monk <r-monk@ti.com>
17:25.02*** join/#oe JaMa (~martin@161-24.13.24.78.awnet.cz)
17:30.37*** join/#oe mrj10 (~mrj10@63.252.64.254)
17:41.43*** join/#oe CMoH-notebook (~cipi@95.76.74.1)
17:41.43*** join/#oe CMoH-notebook (~cipi@unaffiliated/c-moh)
17:42.43davidltIs it possible to switch to different file system for armv7 architecture?
17:43.09davidltRight now it uses JFFS2 which gives warnings when doing a lot of I/O operations
17:43.32davidltAnd as I understand if I have bigger NAND (64>MB) JFFS2 becomes not that great
17:47.20JaMayou can try UBI
17:47.41*** part/#oe mrj10 (~mrj10@63.252.64.254)
17:48.19davidltYeah I just googled that it's LogFS vs UBIFS competition
17:48.34davidltBut I don't know to change that in Bitbake recipies
17:49.02davidltI am cooking: omap3-console-image
17:49.35JaMaUBIFS support is easy if you have machine conf with right params already or pretty easy to add those
17:49.52*** join/#oe kergoth (~kergoth@ip24-251-170-95.ph.ph.cox.net)
17:49.52JaMaand for LogFS I don't think there is support in classes already
17:50.15davidltI see mkfs-jffs2 package in omap3-console-image recipie
17:51.39davidltMaybe you could give more details (still not good at how bitbake works)
17:54.02ka6soxCrofton, you around?
17:54.23*** join/#oe chouimat (~mathieu@kde/developer/chouinard)
17:55.07Crofton|workam now
17:56.31ka6soxlast little details to get patchwork we need help with.
17:57.03JaMadavidlt: look for IMAGE_FSTYPES variable in machine configs
17:57.25davidltFound that, now trying to figure our which one machine config to chane
17:58.19davidltAch, simple
17:58.53davidltit`s "tar.bz2"
17:59.41davidlthmm...
18:01.02*** join/#oe toi (~toi@d54C2AA76.access.telenet.be)
18:02.11*** join/#oe hollisb (~hollisb@nat-wv.mentorg.com)
18:04.03davidltIt includes omap3.inc
18:04.10davidltWhich does not define file system
18:13.38CIA-10103Martin Jansa <Martin.Jansa@gmail.com> 07master * r6143a7ccd4 10openembedded.git/recipes/freesmartphone/cornucopia.inc:
18:13.38CIA-101cornucopia: bump SRCREV
18:13.38CIA-101* fixed close for devices with broken MUX mode that can't close
18:13.38CIA-101* more stuff for n900
18:13.38CIA-101Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
18:13.41CIA-10103Martin Jansa <Martin.Jansa@gmail.com> 07master * r004321e087 10openembedded.git/recipes/ (21 files in 9 dirs):
18:13.41CIA-101recipes: PR bump after EFL SRCREV change resulting to different .so names.
18:16.01*** join/#oe sgw1 (~sgw@c-71-193-189-117.hsd1.wa.comcast.net)
18:20.35*** join/#oe CMoH (~cipi@95.76.74.1)
18:20.36*** join/#oe CMoH (~cipi@unaffiliated/c-moh)
18:21.25Crofton|work~ugt
18:21.25iboti guess ugt is Universal Greeting Time. Created in #mipslinux, it is a rule that states that whenever somebody enters an IRC channel it is always morning, and it is always late when the person leaves. The local time of any other people in the channel, including the greeter, is irrelevant. http://www.total-knowledge.com/~ilya/mips/ugt.html
18:22.02*** join/#oe eFfeM (~frans@j200125.upc-j.chello.nl)
18:24.03eFfeMgm
18:24.38*** join/#oe playya (~playya@unaffiliated/playya)
18:28.48*** join/#oe dijenerate (~dijenerat@65.48.152.26)
18:29.06*** join/#oe reactor16 (~reactor16@static.108.169.4.46.clients.your-server.de)
18:29.11reactor16hi all
18:38.38*** join/#oe marex (~marex@eduroam14.ms.mff.cuni.cz)
18:47.03*** join/#oe radhermit (~radhermit@gentoo/developer/radhermit)
18:57.49*** join/#oe guufy (~Guufy@70-35-57-218.static.wiline.com)
18:59.32*** join/#oe GNUtoo|laptop (~gnutoo@host237-37-dynamic.117-80-r.retail.telecomitalia.it)
19:00.55CIA-10103Frans Meulenbroeks <fransmeulenbroeks@gmail.com> 07org.openembedded.dev * r2a15ce82d5 10openembedded.git/recipes/cdparanoia/cdparanoia_svn.bb:
19:00.59CIA-101cdparanoia: added HOMEPAGE and DESCRIPTION
19:00.59CIA-101Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
19:04.49*** join/#oe Heinervdm (~thomas@pD9E1769C.dip.t-dialin.net)
19:09.31*** join/#oe Crofton (~balister@pool-74-107-167-114.ronkva.east.verizon.net)
19:18.09CIA-10103Paul Menzel <paulepanter@users.sourceforge.net> 07master * r9f15afed40 10openembedded.git/recipes/efl1/ (eina/gnu_source.patch eina_svn.bb): (log message trimmed)
19:18.10CIA-101eina: Remove `gnu_source.patch` which was applied upstream.
19:18.10CIA-101Something similar to this patch was applied upstream r53157 [1] which closes upstream ticket 537 [2].
19:18.10CIA-101$ git grep EFL_SRCREV
19:18.10CIA-101classes/e-base.bbclass:EFL_SRCREV ?= "55157"
19:19.41gandhijeehey, how do i quit microcom
19:22.50Crofton|workctrl a x
19:24.38gandhijeehmm note to self, don't use microcom inside a screen session
19:25.56gandhijeeCrofton: microcom, not minicom
19:26.24Croftonah
19:26.27Croftondunno :)
19:27.38*** part/#oe davidlt (~davidlt@221-140.62-81.cust.bluewin.ch)
19:28.35ka6soxctr-a ctrl-a x
19:28.49ka6soxinside screen
19:33.01TartarusOr fire up a new term inside screen, kill -HUP microcom?
19:33.43*** join/#oe davidlt (~davidlt@221-140.62-81.cust.bluewin.ch)
19:36.39*** join/#oe florian (~fuchs@Maemo/community/contributor/florian)
19:37.29gandhijeeka6sox: that doesn't seem tow ork
19:38.53ka6soxwishes there were something better than minicom
19:39.20gandhijeei just need it for testing, then i have to write my own tid bits to read from the serial ports
19:43.05Tartaruska6sox: screen? :)
19:43.57ka6soxya, screen can work directly some times...forgot that.
19:44.10ka6soxTartarus, I've used that 1 time...
19:44.32TartarusIt took me being reminded of it a few times, and then needing a term program on osx a few more times to finally switch over
19:44.36Tartarusand I'm much happier, honestly
19:44.59Tartarusconsole on window 0, windows 1-N for immediate hacking on the project
19:45.06ka6soxfirst think I make sure is on any machine I work in is Screen
19:45.36ka6sox-k+g
19:45.54Tartarusand it's default on osx, while minicom isn't
19:45.57Tartarusthat's what sealed it for me
19:46.42ka6soxokay that is quite useful...I have a PL2303 dongle to test with now...
19:46.51ka6soxlet me go log into my beagle with that.
19:47.48Tartarusk, thanks
19:47.49Tartarusga
19:48.58ka6soxworks.
19:49.02ka6soxnow I know
19:49.08ka6soxI use ttySG mostly
19:50.11Jay7morning^2
19:50.28eFfeManyone an idea on this:
19:50.29eFfeM/home/hudson/jobs/FM_TEST/workspace/tmp/sysroots/x86_64-linux/usr/armv5te/lib/gcc/arm-oe-linux-gnueabi/4.5.2/../../../../arm-oe-linux-gnueabi/bin/ld: conftest: hidden symbol `__gnu_thumb1_case_uqi' in /home/hudson/jobs/FM_TEST/workspace/tmp/sysroots/x86_64-linux/usr/armv5te/lib/gcc/arm-oe-linux-gnueabi/4.5.2/libgcc.a(_thumb1_case_uqi.o) is referenced by DSO
19:52.19eFfeMkhem maybe?
19:52.26eFfeMthis is from mediatomb configure
19:52.43Jay7about minicom - cu is better than minicom for me :)
19:52.50eFfeMconfigure:12080: checking for JS_NewObject in -ljs
19:53.16Jay7RP, kergoth_: can you please merge locale generation from poky's bitbake?
19:53.23Jay7with cross-localedef
19:56.48ka6soxJay7, have you used hudson?
19:56.56Jay7ka6sox: no
19:57.07Jay7ka6sox: my testbuilder does it all for me :)
19:57.35ka6soxkk
19:58.02ka6soxsomebody recently said their work let them setup some build resources.
20:00.29*** join/#oe kristoffer (~kristoffe@c-34dde555.010-30-6c6b7012.cust.bredbandsbolaget.se)
20:00.33*** join/#oe aloisiojr (~aloisio@186.212.103.21)
20:01.15Tartarusme/mentor, or someone after that?
20:01.27Tartarusonly downside is that currently we're using "old" hosts which expose a few more problems
20:01.45ka6soxTartarus, I thought it might have been you...but didn't want to misspeak
20:02.56ka6soxit sounds like quite a few people are working on getting regression and autobuilding goind.
20:03.00ka6soxgoing.
20:03.07ka6soxthis will help.
20:06.02gandhijeewhat file do i need to change to autoload modules?
20:14.17*** join/#oe timtimred (~meh@85.210.138.98)
20:17.15*** join/#oe jconnolly (~jconnolly@firebug.buglabs.net)
20:17.19CIA-10103Koen Kooi <koen@openembedded.org> 07org.openembedded.dev * rc2372fad7c 10openembedded.git/recipes/networkmanager/ (modemmanager/glibfix.diff modemmanager_0.4.bb):
20:17.19CIA-101modemmanager: add 0.4 with a patch to fix build against recent glib
20:17.19CIA-101Signed-off-by: Koen Kooi <koen@openembedded.org>
20:18.08*** join/#oe morphis (~morphis@brmn-4db71abe.pool.mediaWays.net)
20:30.09*** join/#oe anr78 (~foo@145.79-161-31.customer.lyse.net)
20:38.04*** join/#oe jconnolly (~jconnolly@firebug.buglabs.net)
20:40.00*** join/#oe arun_ (~arun@unaffiliated/sindian)
20:44.22*** join/#oe chouimat (~mathieu@kde/developer/chouinard)
20:45.56CIA-10103Frans Meulenbroeks <fransmeulenbroeks@gmail.com> 07org.openembedded.dev * rca9af336af 10openembedded.git/recipes/libcdaudio/libcdaudio_0.99.12p2.bb:
20:45.56CIA-101libcdaudio: updated LICENSE to LGPLv2+
20:45.56CIA-101COPYING file is the GPLv2 thing
20:45.56CIA-101README file says LGPL
20:45.56CIA-101sources say LGPLv2+
20:52.05*** join/#oe woglinde (~yaairc@g225144247.adsl.alicedsl.de)
20:53.10*** join/#oe mgrundy (~grund@184-208-132-94.pools.spcsdns.net)
20:55.15*** join/#oe anarsoul (~anarsoul@80.249.93.13)
20:59.27*** join/#oe woglinde (~yaairc@g225144247.adsl.alicedsl.de)
21:03.08*** join/#oe Martin__B (~martin@pool-207-66-198-89.dbd-ipconnect.net)
21:11.59*** part/#oe anr78 (~foo@145.79-161-31.customer.lyse.net)
21:24.11*** join/#oe CosmicPenguin (~nobody@207-114-132-30.static.twtelecom.net)
21:28.35*** join/#oe vanous (~vanous@194.228.223.3)
21:32.13*** join/#oe felinethropist (~tushar@adsl-84-125-231.gsp.bellsouth.net)
21:35.38felinethropisthi, I have a question- i have an kernel which boots an embedded powerpc. After bootup, everytime I have to type in the default.script which is in /usr/share/udhcpc/default.script as they system does not have a ROM. So is there any way I could include that script in the source itself so that its there after building the kernel image
21:35.42CIA-10103Thomas Zimmermann <ml@vdm-design.de> 07org.openembedded.dev * rf8c5797237 10openembedded.git/recipes/shr/libphone-ui-shr_git.bb:
21:35.42CIA-101libphone-ui-shr: bump SRC_REV for message-list enhancements
21:35.42CIA-101Signed-off-by: Thomas Zimmermann <ml@vdm-design.de>
21:37.19*** join/#oe tasslehoff (~Mich@145.79-161-31.customer.lyse.net)
21:38.47tasslehoffOn my Angstrom@Beagleboard, I think I want to use proper GNU tools instead of busybox. Is this just a matter of adding task-proper-tools to my recipe?
21:39.12Crofton|roadbasically, yes
21:40.03tasslehoffCrofton|road: should/could I also do something to get rid of the busybox versions to get a cleaner (and a bit lighter) system?
21:41.09kergothhmm.
21:41.16Crofton|workI didn't :)
21:41.22*** join/#oe vanous (~vanous@194.228.223.3)
21:41.31kergothwonder what's the best way to handle progress displays in bitbake in general
21:41.33kergothponders
21:41.47RP__kergoth: You've seen the GUIs do this?
21:42.48*** join/#oe guufy (~Guufy@c-24-130-108-191.hsd1.ca.comcast.net)
21:42.48kergothi don't mean the physical display so much as how best to handle the events in a general way
21:43.18felinethropistHi, can somebody please suggest something on my question?
21:43.48RP__felinethropist: include an initrd with the kernel?
21:44.06RP__felinethropist: include a default commandline for the kernel?
21:45.02felinethropistwith the initrd, how do I specify that the script will be there at that path?
21:57.15*** join/#oe B_Lizzard (~havoc@athedsl-434470.home.otenet.gr)
21:57.42felinethropistanyone?
22:00.42*** join/#oe GarthPS (~quassel@84.7.10.197)
22:02.44*** join/#oe B_Lizzard (~havoc@athedsl-434470.home.otenet.gr)
22:03.00*** join/#oe drw (~drw@cpe-76-187-85-68.tx.res.rr.com)
22:04.44*** join/#oe roza (~ron@nat/cisco/x-lcxjoynxkqtdodup)
22:05.45*** join/#oe grg (~grg@eth7090.sa.adsl.internode.on.net)
22:09.25*** join/#oe mrj10 (~mrj10@mjlap.crhc.uiuc.edu)
22:09.53kergothlib/bb/COW.py hurts my head.
22:09.57kergothreads
22:12.03*** part/#oe mrj10 (~mrj10@mjlap.crhc.uiuc.edu)
22:15.02*** join/#oe GarthPS (~quassel@84.7.10.197)
22:21.25khemcan anyone send a patch to ml plz I want to test new pw setup
22:22.46kergothhrm
22:23.01rozais there a way to specify in a recipe not to create a DEPENDS based on shared libraries that are needed by its binaries
22:25.06kergothroza: why would you want to?
22:26.29*** join/#oe B_Lizzard (~havoc@athedsl-434470.home.otenet.gr)
22:26.44*** join/#oe zub (U2FsdGVkX1@linux.fjfi.cvut.cz)
22:27.04rozaits a messy hack but i need to package binaries files (not being built through oe) and i am running into problems where oe is including dependancy to packages that i don't want it to
22:27.46kergothafaik you should be able to set EXCLUDE_FROM_SHLIBS
22:27.53kergothsee roughly line 610 of classes/package.bbclass
22:28.09rozathanks
22:28.16kergothnp
22:32.18kergothi wonder if all this COW DataSmart madness is just overkill and unnecessary.  we end up parsing the recipes in each task process anyway, which benefits from the operating system's COW implementation.  other file parses copy it, constructing a list of datasmarts, one per config file, but that tree is useless at the moment anyway, since we can't reparse an earlier file without reparsing everything later
22:32.31kergothponders
22:33.18kergothhmmmmm
22:46.54*** join/#oe risca (~risca@h241n2-n-a31.ias.bredband.telia.com)
22:53.31*** join/#oe risca (~risca@h241n2-n-a31.ias.bredband.telia.com)
22:56.32*** join/#oe ant__ (~andrea@host247-251-dynamic.14-87-r.retail.telecomitalia.it)
23:07.28*** join/#oe nitink (~nitink@134.134.139.74)
23:09.55*** join/#oe radhermit (~radhermit@gentoo/developer/radhermit)
23:15.27*** join/#oe radhermit (~radhermit@gentoo/developer/radhermit)
23:23.00*** join/#oe marex (~marex@vasut.kolej.mff.cuni.cz)
23:36.55*** join/#oe mgrundy (~grund@64.244.156.164)
23:38.23CIA-10103Andrea Adami <andrea.adami@gmail.com> 07org.openembedded.dev * r664e3540ef 10openembedded.git/recipes/hal/ohm_git.bb:
23:38.23CIA-101ohm: bump git SRCREV to 2010-02-11 master
23:38.23CIA-101* removes offending dpmsstr.h include
23:38.23CIA-101* explicit packaging of .la files for -dev (installed but not shipped)
23:38.23CIA-101* bump PR
23:44.57ant__kergoth: ping

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.