• [00:00:31] * BeagleBot (~PircBot@ec2-50-17-196-130.compute-1.amazonaws.com) has joined #beagle
  • [00:00:31] * Topic is 'http://beagleboard.org/chat has a guide on how to ask questions and links to the logs | never ask to ask, just ask | be patient | pastebin a boot log | http://ahsoftware.de/Beaglebone_Black_Boot_explained.svg | http://beagleboard.org/latest-images | http://beagleboard.org/Support/bone101 | direct bonescript/node.js questions to #beagle-bonescript'
  • [00:00:31] * Set by jkridner!~jkridner@pdpc/supporter/active/jkridner on Wed Oct 22 00:02:16 UTC 2014
  • [00:00:31] * BeagleBot (~PircBot@ec2-50-17-196-130.compute-1.amazonaws.com) has joined #beagleboard
  • [00:00:31] * BeagleBot (~PircBot@ec2-50-17-196-130.compute-1.amazonaws.com) has joined #beaglebone
  • [00:00:43] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) Quit (Ping timeout: 244 seconds)
  • [00:02:11] * ggherdov (sid11402@gateway/web/irccloud.com/x-cfaflkcgwnmwkkby) Quit ()
  • [00:02:16] * timsta (45ff7219@gateway/web/freenode/ip.69.255.114.25) has joined #beagle
  • [00:03:09] * ggherdov (sid11402@gateway/web/irccloud.com/x-aixbdwsrzpqgoemp) has joined #beagle
  • [00:03:53] * zoomequipd (~zoomequip@gateway/tor-sasl/zoomequipd) Quit (Ping timeout: 250 seconds)
  • [00:10:57] * thurgood_ (~thurgood@67-198-113-218.static.grandenetworks.net) Quit (Remote host closed the connection)
  • [00:11:06] * zoomequipd (~zoomequip@gateway/tor-sasl/zoomequipd) has joined #beagle
  • [00:16:30] * staylor (~staylor@mail.au-zone.com) Quit (Ping timeout: 265 seconds)
  • [00:17:54] * knob (~knob@199.27.101.98) has joined #beagle
  • [00:18:14] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) has joined #beagle
  • [00:21:27] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) Quit (Remote host closed the connection)
  • [00:21:42] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) has joined #beagle
  • [00:21:46] * LordWillO (~LordWillO@173-31-169-165.client.mchsi.com) has joined #beagle
  • [00:23:14] <LordWillO> really dumb question: if I plug 5v power AND USB into my BBB, will anything bad happen?
  • [00:23:53] <veremit> nope :)
  • [00:23:59] <vvu> no
  • [00:24:01] * drkfdr (~darkfader@ip3e8346be.speed.planet.nl) Quit (Quit: Read error: Connection reset by peer)
  • [00:24:02] <veremit> there's a switching transistor on board
  • [00:24:10] <veremit> and/or diodes too
  • [00:24:47] <LordWillO> ah, cool. Thanks!
  • [00:24:48] <veremit> you might want to debug via usb whilst the board is powered from the barrel connector for peripherals, etc
  • [00:25:13] <LordWillO> exactly what I was planning to do, actually!
  • [00:25:18] * LordWillO (~LordWillO@173-31-169-165.client.mchsi.com) Quit (Client Quit)
  • [00:25:57] * apg (~Thunderbi@unaffiliated/apg) has joined #beagle
  • [00:30:04] <adamwwolf_> I do not think that -mfloat-abi=softfp works on the default gcc on the Wheezy GCC image.
  • [00:30:32] <adamwwolf_> Anyone have any other tips on how to get an arm-linux-gnueabi/armel toolchain on wheezy on a BBB?
  • [00:31:02] <adamwwolf_> When I installed gcc:armel, it wasn't built with thumb support :(
  • [00:31:24] <endrift> you could cross compile it
  • [00:32:03] <endrift> I've built cross-compiler toolchains more than I'd care to admit, so cross-compiling a toolchain shouldn't be THAT bad
  • [00:32:15] <endrift> it might just require building the toolchain twice, with different configs
  • [00:32:17] <veremit> yeah cross-compile
  • [00:32:32] <veremit> I wouldn't build anythinig on an arm board .. just takes too long ;)
  • [00:32:39] * Bob_Saget (~root@n112119154141.netvigator.com) has joined #beagle
  • [00:32:40] <endrift> exactly
  • [00:32:51] <adamwwolf_> the problem is that the software I'm compiling has a lot of dependencies
  • [00:33:03] * pelican1991 (~paritoshp@24.98.206.152) has joined #beagle
  • [00:33:12] <adamwwolf_> and I seem to have to compile all those as well--or is there a trick to gank the headers from a running system or something?
  • [00:33:12] <endrift> you could cross compile the compiler, though
  • [00:33:31] <endrift> what I do there is I just rsync over the whole root and use -sysroot
  • [00:33:35] <adamwwolf_> ah, i see what you're getting at
  • [00:33:48] <adamwwolf_> endrift: I used sysroot with Android a while ago a few contracts back, and it worked slick
  • [00:34:10] <endrift> yeah, I have a whole BBB image on my build machine that I just use -sysroot to compile against
  • [00:34:38] <adamwwolf_> I should be able to use a boot sd for that, right?
  • [00:34:55] <endrift> yeah; I pulled off the actual running image but that should work too
  • [00:35:27] <endrift> and once you have the stuff you want to install, use make DESTDIR=[directory] to install it to a temp directory for packaging
  • [00:35:35] <endrift> *make install DESTDIR
  • [00:35:41] <adamwwolf_> sure, sure
  • [00:35:48] * Crofton (~balister@ip51cc7759.adsl-surfen.hetnet.nl) has joined #beagle
  • [00:35:53] <endrift> (it's a handy trick that I didn't know about for ages)
  • [00:40:11] <adamwwolf_> hmm, how do I point ./configure at my sysroot?
  • [00:40:54] * lokust (~smuxi@dhcp-108-168-2-190.cable.user.start.ca) has joined #beaglebone
  • [00:41:14] <adamwwolf_> in my cflags, sorry for the noise
  • [00:41:48] * n-st (~n-st@2001:470:7272:0:b164:eb84:be08:d05d) Quit (Quit: n-st)
  • [00:48:24] * Bob_Saget (~root@n112119154141.netvigator.com) Quit (Ping timeout: 265 seconds)
  • [00:49:44] * apg (~Thunderbi@unaffiliated/apg) Quit (Quit: apg)
  • [00:49:56] * djerome (~djerome@ip24-251-115-14.ph.ph.cox.net) has joined #beaglebone
  • [00:55:14] * manuel__ (~manuel@c-73-16-8-100.hsd1.ma.comcast.net) has joined #beagle
  • [00:55:37] * gustavoz (~gustavoz@181.46.99.160) Quit (Read error: Connection reset by peer)
  • [00:56:17] * wgrant_ is now known as wgrant
  • [00:59:03] * apg (~Thunderbi@unaffiliated/apg) has joined #beagle
  • [01:00:44] * Bob_Saget (~root@n112118216158.netvigator.com) has joined #beagle
  • [01:02:17] * knob (~knob@199.27.101.98) Quit (Quit: Leaving)
  • [01:03:46] * apg (~Thunderbi@unaffiliated/apg) Quit (Client Quit)
  • [01:10:34] * hashcode (~hashcode@unaffiliated/hashcode) Quit (Quit: Leaving)
  • [01:18:44] * mrjazzcat (~mrjazzcat@c-24-8-176-66.hsd1.co.comcast.net) Quit (Ping timeout: 244 seconds)
  • [01:23:49] * jedahan (~jedahan@subtle/user/jedahan) Quit (Quit: ZZZzzz…)
  • [01:25:10] * uwe_ (~uwe_@dslb-088-064-076-043.088.064.pools.vodafone-ip.de) Quit (Ping timeout: 255 seconds)
  • [01:30:44] * Gazpaxxo (~bizarro_1@160.Red-79-158-46.staticIP.rima-tde.net) Quit (Read error: Connection reset by peer)
  • [01:32:02] * Gazpaxxo (~bizarro_1@160.Red-79-158-46.staticIP.rima-tde.net) has joined #beagle
  • [01:35:36] * emeb (~ericb@ip68-104-219-12.ph.ph.cox.net) Quit (Quit: Leaving.)
  • [01:35:53] * seitensei (~quassel@unaffiliated/seitensei) has joined #beagle
  • [01:37:26] * uwe_ (~uwe_@dslb-088-064-078-234.088.064.pools.vodafone-ip.de) has joined #beagle
  • [01:38:26] * nofxx (~nofxx@unaffiliated/nofxx) Quit (Ping timeout: 264 seconds)
  • [01:39:39] * karki__ (~karki@117.192.228.123) has joined #beagle
  • [01:40:09] * karki_ (~karki@117.192.228.123) has joined #beagle
  • [01:45:44] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) has joined #beagle
  • [01:49:01] * karki_ (~karki@117.192.228.123) Quit (Ping timeout: 255 seconds)
  • [01:49:27] * Bob_Saget (~root@n112118216158.netvigator.com) Quit (Ping timeout: 256 seconds)
  • [01:49:30] * karki__ (~karki@117.192.228.123) Quit (Ping timeout: 276 seconds)
  • [01:50:23] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) Quit (Ping timeout: 240 seconds)
  • [01:51:34] * nofxx (~nofxx@unaffiliated/nofxx) has joined #beaglebone
  • [01:52:15] * warsh (~warsh@2604:2000:1241:61f9:59e1:e870:b48a:c3b8) Quit (Quit: ZNC - http://znc.in)
  • [01:52:45] * warsh (~warsh@2604:2000:1241:61f9:a5dc:e947:7f4b:b077) has joined #beagle
  • [01:52:50] <adamwwolf_> endrift: having issues with sysroot
  • [01:53:04] <endrift> adamwwolf_: same issue as above?
  • [01:53:09] <endrift> (I just saw your messages)
  • [01:53:14] <adamwwolf_> it finds the first level of libraries fine, but doesn't find anything those libraries depend on
  • [01:53:26] <endrift> hmm
  • [01:53:29] <adamwwolf_> nope, I did CFLAGS="--sysroot=/path/to/rootfs"
  • [01:53:35] <adamwwolf_> some folks online say it might be a linker thing?
  • [01:53:43] <endrift> oh, yes
  • [01:53:45] * pwillard (~pwillard@c-73-184-136-133.hsd1.ga.comcast.net) Quit (Quit: Leaving)
  • [01:53:54] <endrift> you might need -Wl,rpath=/path/to/rootfs/lib
  • [01:53:58] <endrift> er
  • [01:54:05] <endrift> -Wl,rpath,/path/to/rootfs/lib
  • [01:54:08] <endrift> one of those
  • [01:54:47] <endrift> -Wl,-rpath,/path/to/rootfs/lib apparently
  • [01:55:11] <adamwwolf_> thanks!
  • [01:55:29] <endrift> and you can do more than one if you need /path/to/rootfs/arm-linux-gnueabi/lib for example
  • [01:55:32] <adamwwolf_> Nice!
  • [01:55:33] <adamwwolf_> it worked
  • [01:55:38] <adamwwolf_> +10 points endrift
  • [01:55:55] <endrift> I've done this too much by now @@
  • [01:56:03] <endrift> glad you got it working
  • [01:56:17] <endrift> --sysroot is for the compiler, -rpath is for the linker
  • [01:56:23] <endrift> -Wl says "pass these flags to the linker"
  • [01:57:18] * nandub1 (~nandub@68-112-216-246.dhcp.slid.la.charter.com) Quit (Ping timeout: 276 seconds)
  • [02:00:02] * nandub1 (~nandub@68-112-216-246.dhcp.slid.la.charter.com) has joined #beagle
  • [02:01:21] * manuel__ (~manuel@c-73-16-8-100.hsd1.ma.comcast.net) Quit (Quit: manuel__)
  • [02:02:36] * Bob_Saget (~root@n112119154141.netvigator.com) has joined #beagle
  • [02:03:12] * pelican1991 (~paritoshp@24.98.206.152) Quit (Quit: pelican1991)
  • [02:05:13] * ddp (~ddp@67.130.216.24) has joined #beagle
  • [02:08:33] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) Quit (Remote host closed the connection)
  • [02:09:08] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) has joined #beagle
  • [02:09:46] * W1N9Zr0 (~w1n9zr0@2605:6400:20:895b:22:0:1c4:4d6a) Quit (Ping timeout: 272 seconds)
  • [02:13:34] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) Quit (Ping timeout: 245 seconds)
  • [02:14:28] * W1N9Zr0 (~w1n9zr0@2605:6400:20:895b:22:0:1c4:4d6a) has joined #beagle
  • [02:18:30] * idwer (~irc@unaffiliated/idwer) Quit (Remote host closed the connection)
  • [02:27:57] <adamwwolf_> endrift: another issue :)
  • [02:28:12] <endrift> what this time?
  • [02:28:22] <adamwwolf_> so I got through configure fine, but now midway through teh compile, ld complains it cannot find lz, however, it found -lz during configure...
  • [02:29:40] <endrift> hmm
  • [02:29:47] <endrift> is this is a HOSTCC vs CC issue?
  • [02:30:19] <adamwwolf_> i'm not sure. when i'm cross compiling, it's properly using arm-linux-gnueabi-gcc
  • [02:30:27] <endrift> assuming these are autoconf projects, are you making sure to use --target and --host appropriately?
  • [02:30:30] * ddp (~ddp@67.130.216.24) Quit (Quit: ddp)
  • [02:30:38] <adamwwolf_> i'll doublecheck. thanks for hte pointers
  • [02:32:32] <adamwwolf_> (I think they are correct. --host i686-linux-gnu and --target arm-linux-gnueabi)
  • [02:32:50] * jedahan (~jedahan@subtle/user/jedahan) has joined #beagle
  • [02:34:29] <adamwwolf_> endrift: i'm going to try again, i'm not sure why it can't find -lz, because it explicitly can find it during ./configure
  • [02:38:17] * jedahan (~jedahan@subtle/user/jedahan) Quit ()
  • [02:43:07] * bkearns (~bkearns@c-76-126-174-172.hsd1.ca.comcast.net) has joined #beagle
  • [02:43:17] * TheoMurpse (~TheoMurps@cpe-72-191-48-158.satx.res.rr.com) Quit (Quit: This computer has gone to sleep)
  • [02:49:42] * gustavoz (~gustavoz@181.46.99.160) has joined #beagle
  • [02:53:01] * ddp (~ddp@67.130.216.24) has joined #beagle
  • [02:53:06] * staylor (~staylor@S01067426ac686a17.cg.shawcable.net) has joined #beagle
  • [02:55:54] * bugzc_ (~bugzc@CPE00222ddfe208-CM00222ddfe205.cpe.net.cable.rogers.com) has joined #beagle
  • [02:55:54] * bugzc_ (~bugzc@CPE00222ddfe208-CM00222ddfe205.cpe.net.cable.rogers.com) Quit (Changing host)
  • [02:55:54] * bugzc_ (~bugzc@unaffiliated/bugzc) has joined #beagle
  • [02:56:03] * jamesaxl (~jamesaxl@105.157.102.76) Quit (Remote host closed the connection)
  • [03:09:18] * Stoob (~steev@krypton.bugfix.in) Quit (Ping timeout: 244 seconds)
  • [03:09:40] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) has joined #beagle
  • [03:10:05] * Stoob (~steev@krypton.bugfix.in) has joined #beagle
  • [03:21:20] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) Quit (Ping timeout: 272 seconds)
  • [03:25:20] * plustwo_ (~quassel@unaffiliated/plustwo) Quit (Quit: No Ping reply in 180 seconds.)
  • [03:27:58] * plustwo (~quassel@unaffiliated/plustwo) has joined #beagle
  • [03:30:18] * VirG (~VirGin@c-24-6-53-29.hsd1.ca.comcast.net) has joined #beagle
  • [03:35:00] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) has joined #beagle
  • [03:36:31] * pelican1991 (~paritoshp@24.98.206.152) has joined #beagle
  • [03:37:51] * plustwo (~quassel@unaffiliated/plustwo) Quit (Quit: No Ping reply in 180 seconds.)
  • [03:39:42] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) Quit (Ping timeout: 272 seconds)
  • [03:41:53] * plustwo (~quassel@unaffiliated/plustwo) has joined #beagle
  • [03:47:26] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) has joined #beagle
  • [03:53:58] * TheoMurpse (~TheoMurps@cpe-72-191-48-158.satx.res.rr.com) has joined #beaglebone
  • [03:58:49] * plustwo (~quassel@unaffiliated/plustwo) Quit (Quit: No Ping reply in 180 seconds.)
  • [04:00:45] * hashcode (~hashcode@unaffiliated/hashcode) has joined #beagle
  • [04:01:09] * plustwo (~quassel@unaffiliated/plustwo) has joined #beagle
  • [04:04:55] * plustwo (~quassel@unaffiliated/plustwo) Quit (Client Quit)
  • [04:06:24] * sidbh_ (~Siddharth@123.201.22.175) has joined #beagle
  • [04:07:54] * plustwo (~quassel@unaffiliated/plustwo) has joined #beagle
  • [04:08:51] * sidbh__ (~Siddharth@203.88.132.179) Quit (Ping timeout: 256 seconds)
  • [04:11:15] * plustwo (~quassel@unaffiliated/plustwo) Quit (Client Quit)
  • [04:13:51] * plustwo (~quassel@164.151.129.28) has joined #beagle
  • [04:13:55] * webdaford (~daford@ool-457895c1.dyn.optonline.net) Quit (Quit: Leaving)
  • [04:13:55] * plustwo (~quassel@164.151.129.28) Quit (Changing host)
  • [04:13:55] * plustwo (~quassel@unaffiliated/plustwo) has joined #beagle
  • [04:15:48] * signal11_ is now known as signal11
  • [04:18:57] * warsh (~warsh@2604:2000:1241:61f9:a5dc:e947:7f4b:b077) Quit (Quit: ZNC - http://znc.in)
  • [04:19:14] * bkearns (~bkearns@c-76-126-174-172.hsd1.ca.comcast.net) Quit (Quit: Leaving.)
  • [04:20:19] * day- (~day@unaffiliated/day) has joined #beagle
  • [04:20:20] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) Quit (Remote host closed the connection)
  • [04:20:27] * warsh (~warsh@2604:2000:1241:61f9:a5dc:e947:7f4b:b077) has joined #beagle
  • [04:22:59] * day (~day@unaffiliated/day) Quit (Ping timeout: 246 seconds)
  • [04:25:14] * NishanthMenon (~nmenon@64.124.195.67) has joined #beagle
  • [04:29:38] * plustwo (~quassel@unaffiliated/plustwo) Quit (Quit: No Ping reply in 180 seconds.)
  • [04:32:17] * plustwo (~quassel@unaffiliated/plustwo) has joined #beagle
  • [04:32:45] * warsh (~warsh@2604:2000:1241:61f9:a5dc:e947:7f4b:b077) Quit (Quit: ZNC - http://znc.in)
  • [04:36:14] * staylor (~staylor@S01067426ac686a17.cg.shawcable.net) Quit (Quit: My MacBook Pro has gone to sleep. ZZZzzz…)
  • [04:36:33] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) has joined #beagle
  • [04:36:46] * warsh (~warsh@2604:2000:1241:61f9:a5dc:e947:7f4b:b077) has joined #beagle
  • [04:38:13] * warsh (~warsh@2604:2000:1241:61f9:a5dc:e947:7f4b:b077) Quit (Client Quit)
  • [04:39:12] * warsh (~warsh@2604:2000:1241:61f9:a5dc:e947:7f4b:b077) has joined #beagle
  • [04:41:12] * thews (~thews@unaffiliated/thews) has joined #beagle
  • [04:42:21] * thews_ (~thews@unaffiliated/thews) Quit (Read error: Connection reset by peer)
  • [04:54:27] * gusnan (~gusnan@s213-100-228-162.cust.tele2.se) Quit (Ping timeout: 245 seconds)
  • [04:56:31] * gusnan (~gusnan@s213-100-228-162.cust.tele2.se) has joined #beagle
  • [05:03:22] * luciano_ (~luciano@190.120.53.112) has joined #beaglebone
  • [05:03:47] * luciano_ (~luciano@190.120.53.112) has joined #beagle
  • [05:03:51] * sidbh_ (~Siddharth@123.201.22.175) Quit (Ping timeout: 276 seconds)
  • [05:04:48] * krajo1 (~krajo1@host146.nwt.cz) has joined #beagle
  • [05:05:21] * sidbh (~Siddharth@123.201.30.188) has joined #beagle
  • [05:08:30] <luciano_> Hi , i need help , i have this capes http://cdn.logicsupply.com/media/catalog/product/cache/1/image/bd5fa33d207734c88c51f8ebb17de6c4/b/b/bbb-exp-c-chipsee-7inch-touchscreen.jpg, and i want run a qt application , but the touchscreen doesn't work , because need set variable qws_mouse_proto, , can anyone help me?
  • [05:08:36] <uhhimhere> hi guys how does the kernel decide which mach-- file to use.Is it something we define in menuconfig?
  • [05:09:00] * djerome (~djerome@ip24-251-115-14.ph.ph.cox.net) Quit (Remote host closed the connection)
  • [05:14:18] * boneskull (~boneskull@c-50-137-151-209.hsd1.or.comcast.net) Quit ()
  • [05:14:53] * boneskull (~boneskull@c-50-137-151-209.hsd1.or.comcast.net) has joined #beagle
  • [05:23:42] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) has joined #beagle
  • [05:27:52] <timsta> hello folks..anyone used xenomai RTOS with MQTT or ZeroMQ on a BBB?
  • [05:28:33] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) Quit (Ping timeout: 276 seconds)
  • [05:31:06] * konradoo77 (~debian@93.154.164.140) has joined #beagle
  • [05:31:09] * hitlin37 (uid16371@gateway/web/irccloud.com/x-umywqhyxntvtihnl) has joined #beagle
  • [05:35:15] * ddp (~ddp@67.130.216.24) Quit (Quit: ddp)
  • [05:39:21] * gburca (~gburca@71.239.96.207) has joined #beagle
  • [05:39:48] * gburca (~gburca@71.239.96.207) has left #beagle
  • [05:42:01] * j0rd_ (~j0rd_@unaffiliated/j0rd-/x-9112651) Quit (Ping timeout: 272 seconds)
  • [05:42:19] * konradoo77 (~debian@93.154.164.140) Quit (Ping timeout: 245 seconds)
  • [05:43:36] * j0rd_ (~j0rd_@unaffiliated/j0rd-/x-9112651) has joined #beagle
  • [05:57:30] * Leschveux_ (~quassel@96.127.239.250) has joined #beagle
  • [06:01:12] * pelican1991 (~paritoshp@24.98.206.152) Quit (Quit: pelican1991)
  • [06:01:34] * Leschveux (~quassel@96.127.239.250) Quit (Ping timeout: 272 seconds)
  • [06:20:22] * SebastianFlyte (~sebf@pool-72-83-66-10.washdc.east.verizon.net) Quit (Ping timeout: 255 seconds)
  • [06:23:51] * boneskull (~boneskull@c-50-137-151-209.hsd1.or.comcast.net) Quit ()
  • [06:24:49] * kiwichris (~kiwichris@msc1401703.lnk.telstra.net) Quit ()
  • [06:25:42] * luciano_ (~luciano@190.120.53.112) Quit (Quit: Leaving)
  • [06:30:10] * plustwo (~quassel@unaffiliated/plustwo) Quit (Quit: No Ping reply in 180 seconds.)
  • [06:32:52] * Crofton (~balister@ip51cc7759.adsl-surfen.hetnet.nl) Quit (Ping timeout: 240 seconds)
  • [06:32:58] * SebastianFlyte (~sebf@pool-173-79-109-85.washdc.fios.verizon.net) has joined #beaglebone
  • [06:38:43] * plustwo (~quassel@164.151.129.28) has joined #beagle
  • [06:38:55] * plustwo (~quassel@164.151.129.28) Quit (Changing host)
  • [06:38:55] * plustwo (~quassel@unaffiliated/plustwo) has joined #beagle
  • [06:39:03] * boneskull (~boneskull@c-50-137-151-209.hsd1.or.comcast.net) has joined #beagle
  • [06:41:06] <tbr> timsta: I'm using MQTT and don't see any reason for RT patches
  • [06:42:33] * plustwo (~quassel@unaffiliated/plustwo) Quit (Client Quit)
  • [06:43:58] * torpor (~Adium@80-123-56-72.adsl.highway.telekom.at) has joined #beagle
  • [06:44:28] * georgec1 (~george@61.95.193.238) has joined #beagle
  • [06:45:40] * plustwo (~quassel@unaffiliated/plustwo) has joined #beagle
  • [06:46:09] * lyakh (~lyakh@xdsl-87-79-135-126.netcologne.de) has joined #beagle
  • [06:46:15] * georgec (~george@61.95.193.238) Quit (Ping timeout: 264 seconds)
  • [06:47:43] * timsta (45ff7219@gateway/web/freenode/ip.69.255.114.25) Quit (Ping timeout: 246 seconds)
  • [06:48:23] * pjain (0e8b800c@gateway/web/freenode/ip.14.139.128.12) has joined #beagle
  • [06:49:05] * BennyB_ (~heldb@host-88-217-198-167.customer.m-online.net) has joined #beagle
  • [06:50:22] * plustwo (~quassel@unaffiliated/plustwo) Quit (Client Quit)
  • [06:50:42] * ocamlman (~ocamlman@cpe-104-229-169-2.twcny.res.rr.com) Quit (Ping timeout: 246 seconds)
  • [06:51:34] <pjain> how can i run bonescript on my beagle board without cloud9
  • [06:52:02] <pjain> i tried to install nodejs but fail to install bonescript using same
  • [06:52:55] * plustwo (~quassel@unaffiliated/plustwo) has joined #beagle
  • [06:55:01] * pjain (0e8b800c@gateway/web/freenode/ip.14.139.128.12) Quit (Quit: Page closed)
  • [06:55:27] * The_Ball (~ballen@202.10.92.134) Quit (Remote host closed the connection)
  • [07:03:01] * Crofton (~balister@ip51cc7759.adsl-surfen.hetnet.nl) has joined #beagle
  • [07:03:08] * georgec (~george@61.95.193.238) has joined #beagle
  • [07:05:32] * divine (~divine@2001:470:8247:1::42) Quit (Ping timeout: 272 seconds)
  • [07:05:56] * georgec1 (~george@61.95.193.238) Quit (Ping timeout: 244 seconds)
  • [07:06:14] * plustwo (~quassel@unaffiliated/plustwo) Quit (Quit: No Ping reply in 180 seconds.)
  • [07:12:59] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) has joined #beagle
  • [07:15:22] * plustwo (~quassel@unaffiliated/plustwo) has joined #beagle
  • [07:17:19] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) Quit (Ping timeout: 245 seconds)
  • [07:23:08] * plustwo (~quassel@unaffiliated/plustwo) Quit (Quit: No Ping reply in 180 seconds.)
  • [07:24:37] * NulL` (~bleh1@178.16.3.12) has joined #beagle
  • [07:25:45] * plustwo (~quassel@unaffiliated/plustwo) has joined #beagle
  • [07:26:27] * Killerhands (~Killerhan@pool-108-23-13-43.lsanca.fios.verizon.net) has joined #beagle
  • [07:26:29] <Killerhands> sup doods
  • [07:31:22] * ppisati (~ppisati@2-230-238-136.ip204.fastwebnet.it) has joined #beagle
  • [07:31:33] * Ceriand|desktop (~Ceriand@unaffiliated/ceriand) has joined #beagle
  • [07:31:44] * krajo1_ (~krajo1@host36.nwt.cz) has joined #beagle
  • [07:33:08] * krajo1__ (~krajo1@host146.nwt.cz) has joined #beagle
  • [07:34:21] * krajo1 (~krajo1@host146.nwt.cz) Quit (Ping timeout: 244 seconds)
  • [07:36:49] * krajo1_ (~krajo1@host36.nwt.cz) Quit (Ping timeout: 265 seconds)
  • [07:40:41] * BobCat (~Bob@unaffiliated/bobcat) Quit (Read error: Connection reset by peer)
  • [07:42:10] * BobCat (~Bob@ool-2f12223f.dyn.optonline.net) has joined #beagle
  • [07:42:10] * BobCat (~Bob@ool-2f12223f.dyn.optonline.net) Quit (Changing host)
  • [07:42:10] * BobCat (~Bob@unaffiliated/bobcat) has joined #beagle
  • [07:50:38] * warsh (~warsh@2604:2000:1241:61f9:a5dc:e947:7f4b:b077) Quit (Quit: ZNC - http://znc.in)
  • [07:53:26] * apg (~Thunderbi@unaffiliated/apg) has joined #beagle
  • [07:57:16] * warsh (~warsh@2604:2000:1241:61f9:e1b0:189:3119:6c30) has joined #beagle
  • [08:01:22] * jackmitchell (~Thunderbi@cbnluk-gw0.cambridgebroadband.com) Quit (Remote host closed the connection)
  • [08:08:42] * bugzc_ (~bugzc@unaffiliated/bugzc) Quit ()
  • [08:12:24] * old-papa-work (~wl@72.250.215.186) has joined #beagle
  • [08:12:24] * old-papa-work (~wl@72.250.215.186) has joined #beaglebone
  • [08:17:06] * old-papa-work (~wl@72.250.215.186) Quit (Ping timeout: 272 seconds)
  • [08:17:25] * old-papa-work (~wl@63.90.74.119) has joined #beagle
  • [08:17:25] * old-papa-work (~wl@63.90.74.119) has joined #beaglebone
  • [08:20:28] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) has joined #beagle
  • [08:21:46] * NulL` (~bleh1@178.16.3.12) Quit (Ping timeout: 265 seconds)
  • [08:22:40] * pwillard (~pwillard@c-73-184-136-133.hsd1.ga.comcast.net) has joined #beagle
  • [08:23:42] * krajo1__ (~krajo1@host146.nwt.cz) Quit (Quit: Konversation terminated!)
  • [08:25:20] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) Quit (Ping timeout: 272 seconds)
  • [08:26:20] * demok (~okan@139.179.138.36) Quit (Remote host closed the connection)
  • [08:26:57] * Mr_Sheesh (~mr_s@unaffiliated/mr-sheesh/x-0757054) Quit (Disconnected by services)
  • [08:27:21] * Mr_Sheesh_AFK (~mr_s@unaffiliated/mr-sheesh/x-0757054) has joined #beagle
  • [08:28:08] * Mr_Sheesh_AFK is now known as Mr_Sheesh
  • [08:32:50] * florian_kc (~fuchs@Maemo/community/contributor/florian) has joined #beagle
  • [08:34:16] * boneskull (~boneskull@c-50-137-151-209.hsd1.or.comcast.net) Quit ()
  • [08:35:06] * florian_kc is now known as florian
  • [08:36:16] * apg (~Thunderbi@unaffiliated/apg) Quit (Ping timeout: 255 seconds)
  • [08:38:18] * apg (~Thunderbi@unaffiliated/apg) has joined #beagle
  • [08:39:45] * sambuc (~sambuc@PC-024881.clients.vu.nl) Quit (Remote host closed the connection)
  • [08:40:14] * SebastianFlyte (~sebf@pool-173-79-109-85.washdc.fios.verizon.net) Quit (Ping timeout: 245 seconds)
  • [08:41:12] * sambuc (~sambuc@PC-024881.clients.vu.nl) has joined #beagle
  • [08:46:19] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) has joined #beagle
  • [08:47:37] * rob_w (~rob@unaffiliated/rob-w/x-1112029) has joined #beagle
  • [08:51:16] * vagrantc (~vagrant@freegeek/vagrantc) Quit (Quit: leaving)
  • [08:53:14] * The_Ball (~ballen@c114-77-179-73.hillc3.qld.optusnet.com.au) has joined #beagle
  • [08:53:40] * SebastianFlyte (~sebf@pool-71-178-230-48.washdc.fios.verizon.net) has joined #beaglebone
  • [08:58:09] * koleto (~koleto@95.90.212.141) has joined #beagle
  • [09:03:54] * phantoxe (~destroy@acarlosss.broker.freenet6.net) has joined #beagle
  • [09:06:58] * Shadyman (~matthew@unaffiliated/shadyman) Quit (Quit: Leaving.)
  • [09:15:12] * koleto (~koleto@95.90.212.141) has left #beagle
  • [09:40:13] * Crofton (~balister@ip51cc7759.adsl-surfen.hetnet.nl) Quit (Quit: Leaving)
  • [09:46:27] * GusBricker (~GusBricke@c122-107-239-5.mckinn3.vic.optusnet.com.au) has joined #beaglebone
  • [09:47:26] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) Quit (Remote host closed the connection)
  • [09:47:52] * stamina (~stamina@177-211-128-083.dynamic.caiway.nl) has joined #beaglebone
  • [09:51:06] * SlpyLion (~anonymous@89-253-73-110.customers.ownit.se) has joined #beagle
  • [09:58:11] * SlpyLion (~anonymous@89-253-73-110.customers.ownit.se) Quit (Quit: SlpyLion)
  • [10:03:27] * torpor (~Adium@80-123-56-72.adsl.highway.telekom.at) Quit (Quit: Leaving.)
  • [10:04:07] * roland_ (~roland@dhcp-048222.wlan.ntnu.no) has joined #beagle
  • [10:04:56] * TheoMurpse (~TheoMurps@cpe-72-191-48-158.satx.res.rr.com) Quit (Quit: This computer has gone to sleep)
  • [10:04:56] <roland_> Hi,
  • [10:05:17] * TheoMurpse (~TheoMurps@cpe-72-191-48-158.satx.res.rr.com) has joined #beaglebone
  • [10:05:27] * gusnan (~gusnan@s213-100-228-162.cust.tele2.se) Quit (Ping timeout: 264 seconds)
  • [10:05:29] <roland_> does someone know how the EEPROM on capes is being read? Via I2C or SPI?
  • [10:05:35] <LetoThe2nd> i2c
  • [10:05:41] * TheoMurpse (~TheoMurps@cpe-72-191-48-158.satx.res.rr.com) Quit (Client Quit)
  • [10:05:47] <roland_> with which address?
  • [10:06:16] <av500> its in the SRM
  • [10:06:26] <roland_> you mean in the BBB_SRM?
  • [10:06:30] <LetoThe2nd> no idea, schematics should tell you. AFAIK its just an ordinary 24Cwhatever eeprom
  • [10:06:44] <LetoThe2nd> maybe 0x50-0x57
  • [10:07:05] * gusnan (~gusnan@s213-100-228-162.cust.tele2.se) has joined #beagle
  • [10:08:25] * shoragan (~shoragan@debian/developer/shoragan) has joined #beagle
  • [10:09:31] * SlpyLion (~anonymous@89-253-73-110.customers.ownit.se) has joined #beagle
  • [10:10:06] * The_Ball (~ballen@c114-77-179-73.hillc3.qld.optusnet.com.au) Quit (Remote host closed the connection)
  • [10:11:12] * The_Ball (~ballen@c114-77-179-73.hillc3.qld.optusnet.com.au) has joined #beagle
  • [10:11:38] * roland_ (~roland@dhcp-048222.wlan.ntnu.no) has left #beagle
  • [10:15:26] * The_Ball (~ballen@c114-77-179-73.hillc3.qld.optusnet.com.au) Quit (Ping timeout: 246 seconds)
  • [10:18:07] * LordDVG (~LordDVG@unaffiliated/lorddvg) has joined #beagle
  • [10:20:36] * anates (~roland@dhcp-048222.wlan.ntnu.no) has joined #beagle
  • [10:22:02] * NishanthMenon (~nmenon@64.124.195.67) Quit (Quit: Good day for a change of scene. Repapering the bedroom wall.)
  • [10:24:46] * NishanthMenon (~nmenon@64.124.195.67) has joined #beagle
  • [10:28:35] * shoragan (~shoragan@debian/developer/shoragan) Quit (Quit: Leaving)
  • [10:34:40] * kalem (~kalem@unaffiliated/kalem) has joined #beagleboard
  • [10:34:42] * kalem (~kalem@unaffiliated/kalem) has joined #beagle
  • [10:36:12] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) has joined #beagle
  • [10:37:23] * TheoMurpse (~TheoMurps@cpe-72-191-48-158.satx.res.rr.com) has joined #beaglebone
  • [10:37:58] * torpor (~Adium@80-123-56-72.adsl.highway.telekom.at) has joined #beagle
  • [10:49:15] * nofxx (~nofxx@unaffiliated/nofxx) Quit (Ping timeout: 264 seconds)
  • [10:49:30] * TheoMurpse (~TheoMurps@cpe-72-191-48-158.satx.res.rr.com) Quit (Quit: This computer has gone to sleep)
  • [10:49:50] * TheoMurpse (~TheoMurps@cpe-72-191-48-158.satx.res.rr.com) has joined #beaglebone
  • [10:50:15] * TheoMurpse (~TheoMurps@cpe-72-191-48-158.satx.res.rr.com) Quit (Client Quit)
  • [10:52:10] * TheoMurpse (~TheoMurps@cpe-72-191-48-158.satx.res.rr.com) has joined #beaglebone
  • [10:54:49] * divine (~divine@24-176-230-194.static.snlo.ca.charter.com) has joined #beaglebone
  • [10:56:48] * c10ud (~c10ud@emesene/dictator/c10ud) has joined #beagle
  • [10:59:27] * SlpyLion_ (~anonymous@89-253-73-110.customers.ownit.se) has joined #beagle
  • [11:01:07] * SlpyLion (~anonymous@89-253-73-110.customers.ownit.se) Quit (Ping timeout: 245 seconds)
  • [11:01:07] * SlpyLion_ is now known as SlpyLion
  • [11:08:13] * mythos (~mythos@unaffiliated/mythos) Quit (Ping timeout: 264 seconds)
  • [11:09:41] * Parduz (97548216@gateway/web/freenode/ip.151.84.130.22) has joined #beagle
  • [11:10:02] <Parduz> hello from italy
  • [11:10:34] <Parduz> could someone help me with "configure" options?
  • [11:10:49] * uhhimhere (~uhhimhere@jrc-53-15.tm.net.my) Quit (Read error: Connection reset by peer)
  • [11:10:49] <tbr> configure for what?
  • [11:11:19] <Parduz> I'm trying to cross-compile the wxWidgets for the BBB with debiam, from a Windows7 machine
  • [11:11:47] <Parduz> i'm stuck in the --host --target --build options, at the oment
  • [11:11:52] <Parduz> *moment*
  • [11:12:31] * tbr slowly backs away
  • [11:13:17] <Parduz> configure is a linux stuff, no reasont to backs away (if the problem is me being a dirty win user)
  • [11:14:01] <tbr> it's like the most convoluted and error prone way possible to approach this
  • [11:14:56] <LetoThe2nd> apt-get install libwxwhatever or howsit called (easiest way)
  • [11:15:09] <LetoThe2nd> or compile on the debian (second easiest way)
  • [11:15:23] <LetoThe2nd> or set up a linux vm to cross compile (third easiest way)
  • [11:16:00] * anates (~roland@dhcp-048222.wlan.ntnu.no) Quit (Ping timeout: 244 seconds)
  • [11:16:00] <LetoThe2nd> properly crosscompiling a debian package on a windows host is probably the most error prone, hardest and useless way to do it.
  • [11:16:13] <Parduz> not sure what you mean, tbr. I'm already cross-compiling terminal apps, i think i may be able to build GUI apps too.
  • [11:16:47] <tbr> Parduz: right, good luck with that. Your problem will be that nobody in here does that, so nobody will answer your questions.
  • [11:16:55] <Parduz> letoThe2nd, i see. Still, i'd like to try, if you could help me with that options
  • [11:17:20] <Parduz> i just don't know what to pass.
  • [11:17:38] <LetoThe2nd> Parduz: sorry, i do not feel like wasting my time with tasks that i do not deem worth it
  • [11:17:54] * TheoMurpse (~TheoMurps@cpe-72-191-48-158.satx.res.rr.com) Quit (Quit: This computer has gone to sleep)
  • [11:18:14] <Parduz> Thanks for the non-help, then
  • [11:18:15] <LetoThe2nd> read that as: i am no windows user and will not read up on the strange ways to use it because i'm just not interested
  • [11:19:22] <Parduz> Leto: i'm asking help about a linus stuff. You have the right to judge that i'm wasting my time (or yours), but basically i'm asking for help about linux stuffs, whatever are my purposes
  • [11:21:08] <LetoThe2nd> Parduz: i'm not keeping you from anything. go ahead. if you figure it out and maybe even document it for the rest of the world, probably a lot of windows users will be thankful. its just something that i won#t do with my time.
  • [11:21:45] <LetoThe2nd> feel free to read my posts again, i always said that i won't waste *my* time, i never talked about yours.
  • [11:23:23] <LetoThe2nd> and crosscompiling a standard binary might even still be easy, but when you'Re talking about wxwidgets, you're talking about the proper use of a library. that means sysroots, the same libraries, all the fun shebang.
  • [11:24:15] <LetoThe2nd> and i just won't deal with it for windows.
  • [11:24:28] * LetoThe2nd thinks its a good moment now to grab lunch
  • [11:27:53] * hitlin37 (uid16371@gateway/web/irccloud.com/x-umywqhyxntvtihnl) Quit (Quit: Connection closed for inactivity)
  • [11:32:16] * GusBricker (~GusBricke@c122-107-239-5.mckinn3.vic.optusnet.com.au) Quit (Remote host closed the connection)
  • [11:37:12] * uhhimhere (~uhhimhere@jrc-53-15.tm.net.my) has joined #beagle
  • [11:40:37] * SlpyLion (~anonymous@89-253-73-110.customers.ownit.se) Quit (Quit: SlpyLion)
  • [11:53:35] * GusBricker (~GusBricke@CPE-120-149-34-233.oirx2.lon.bigpond.net.au) has joined #beaglebone
  • [11:56:59] * LordDVG (~LordDVG@unaffiliated/lorddvg) Quit (Remote host closed the connection)
  • [12:00:36] * VirG (~VirGin@c-24-6-53-29.hsd1.ca.comcast.net) Quit (Quit: Leaving.)
  • [12:02:25] * mythos (~mythos@unaffiliated/mythos) has joined #beagle
  • [12:02:27] * Akuma (~Akuma@apn-46-169-22-104.dynamic.gprs.plus.pl) has joined #beagleboard
  • [12:02:27] * Akuma (~Akuma@apn-46-169-22-104.dynamic.gprs.plus.pl) has joined #beagle
  • [12:07:22] * Gazpaxxo (~bizarro_1@160.Red-79-158-46.staticIP.rima-tde.net) Quit (Read error: Connection reset by peer)
  • [12:09:01] * Gazpaxxo (~bizarro_1@160.Red-79-158-46.staticIP.rima-tde.net) has joined #beagle
  • [12:10:01] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) Quit (Remote host closed the connection)
  • [12:11:04] * jpsaman (~jpsaman@videolan/developer/jpsaman) has joined #beagle
  • [12:11:14] * SlpyLion (~anonymous@89-253-73-110.customers.ownit.se) has joined #beagle
  • [12:15:03] * GusBricker (~GusBricke@CPE-120-149-34-233.oirx2.lon.bigpond.net.au) Quit (Remote host closed the connection)
  • [12:26:11] * anates (~roland@dhcp-048222.wlan.ntnu.no) has joined #beagle
  • [12:27:08] <anates> What is the purpose of PWR_BUT? I couldn't find anything about it (except its voltage level) in the SRM...
  • [12:31:56] * niles (7aada468@gateway/web/freenode/ip.122.173.164.104) has joined #beagle
  • [12:32:05] <niles> hi need a linux phone os developer
  • [12:32:08] <tbr> wasn't that wired into the PMIC? I'm unsure, either it's unused or it might produce a power button key event
  • [12:32:30] <tbr> niles: for what?
  • [12:32:32] <anates> yes, it was wired into the PMIC, but I don't understand the purpose...
  • [12:32:57] <anates> -was +is
  • [12:33:16] <niles> hello Tbr - I need to show case a fully operational linux phone to my clients
  • [12:33:19] <tbr> anates: you might need to as jkridner or someone on the mailign list might know.
  • [12:33:39] * karki_ (~karki@117.192.242.88) has joined #beagle
  • [12:33:42] <tbr> niles: rrrright...
  • [12:34:08] <niles> tbr - if the client likes the product I am in business
  • [12:34:28] <tbr> niles: sure, your problem is that you don't have a product though.
  • [12:34:56] * karki__ (~karki@117.192.242.88) has joined #beagle
  • [12:34:57] <niles> tbr - so my requirement is I need a a single point of contact - who would run the show
  • [12:36:01] <tbr> you not only need that, you need double digit VC funding and hire a team of 50+ people
  • [12:36:37] <niles> tbr - so I need some one who can handle the show .
  • [12:37:06] <LetoThe2nd> niles: you're to pay for the development upfront?
  • [12:37:18] <tbr> niles: your problem is that if someone is capable to run the show they either already do themselves or they know there is no benefit in entering the market.
  • [12:37:25] <LetoThe2nd> niles: if not, what would a phone developer need you for?
  • [12:37:55] <niles> tbr - the problem is whom to trust and to what extent :)
  • [12:38:13] * BennyB_ (~heldb@host-88-217-198-167.customer.m-online.net) Quit (Ping timeout: 264 seconds)
  • [12:38:25] * kalem (~kalem@unaffiliated/kalem) Quit (Ping timeout: 265 seconds)
  • [12:38:52] <LetoThe2nd> niles: long story short. "do you have enough venture capital that you are willing to spend right now so that somebody will create your product?"
  • [12:38:59] <av500> niles: show your client any Android phone
  • [12:39:02] <av500> they all run Linux
  • [12:39:08] <LetoThe2nd> niles: if not, everything is moot.
  • [12:39:20] <ynezz> or Nexus5 -> Ubuntu
  • [12:39:30] <ynezz> or I can sell you my Neo9731
  • [12:39:32] <av500> ynezz: stock nexus runs linux
  • [12:39:42] <av500> dmesg proves me right
  • [12:39:59] <ynezz> but with ugly Android UI
  • [12:40:04] <uhhimhere> hi guys id like your opinion on this : hey take a look at this post; id like your opinion : http://forum.cyanogenmod.org/topic/103336-dtsi-compiling-vanilla-linux-on-samsung-gt-s7580/
  • [12:40:04] <ynezz> ubuntu > *
  • [12:40:06] <LetoThe2nd> niles: yeah, you can also contact canonical. they say they have a linux phone. for enough $$$ they will certainly rebrand it for you.
  • [12:40:14] <LetoThe2nd> niles: or mozilla foundation.
  • [12:40:16] <av500> uhhimhere: is that beagle related?
  • [12:40:26] <niles> @av500 - the concept is simple - they want a phone which is open to the user -- do what u wants types -- freedom and hassle free
  • [12:40:27] <anates> @uhhimhere: I think you are in the wrong chat...
  • [12:40:36] <LetoThe2nd> av500: more like bogus related
  • [12:40:38] <uhhimhere> oh sorry i just noticed talk about android
  • [12:40:46] <jacekowski> niles: nokia has n900
  • [12:40:49] <jacekowski> niles: used to have
  • [12:40:51] <av500> had
  • [12:41:04] <jacekowski> niles: and there is new samsung linux stuff
  • [12:41:08] <uhhimhere> i used to have one; pissed me off that i was stuck with a crappy browser
  • [12:41:10] <av500> lolzen
  • [12:41:21] <niles> lettothe2d - yep talk are on the canonical too
  • [12:41:29] <jacekowski> uhhimhere: there was chrome for n900
  • [12:41:33] <tbr> LetoThe2nd: firefoxOS is handled by Mozilla Corporation, not the foundation IIRC. So basically Netscape2 Corp.
  • [12:41:38] <jacekowski> uhhimhere: and it worked quite well
  • [12:41:40] <ynezz> html5 write once, lagging everywhere
  • [12:41:40] <LetoThe2nd> niles: so what would anybody need you for?
  • [12:41:44] <LetoThe2nd> tbr: ah thanks
  • [12:41:46] <Humpelst1lzchen> uhhimhere: used the wrong browser?
  • [12:41:55] <av500> niles: understood
  • [12:42:15] <uhhimhere> Humpelst1lzchen: yeah but even then it was a really old version
  • [12:42:18] <av500> besides a kernel and a blinking shell cursor, what should it run?
  • [12:42:27] <niles> letotthe2nd - i have a vision , the client and after it clicks we have the money and still control the vision :)
  • [12:43:07] <uhhimhere> would have been nice to have midori running on it though
  • [12:43:09] <LetoThe2nd> niles: a famous german saying is "if you're having visions, you should go see a psychologist"
  • [12:43:19] <av500> niles: so, getting a phone hardware is easy
  • [12:43:35] <av500> niles: and ubuntu and FF OS both show they can run on ex-Android phones
  • [12:43:41] <av500> now, what would you run on it?
  • [12:43:41] <LetoThe2nd> niles: still you're not answering. what would anybody need you for? do you have hardware? do you have developers? do you have money to invest?
  • [12:43:53] <LetoThe2nd> niles: visions i can have the dozen a dime here.
  • [12:43:59] <uhhimhere> everybody needs a waterboy
  • [12:44:17] <tbr> visions are easy, just obtain a box of shroomz
  • [12:44:27] <niles> letothe2nd - :) - well thanks for your time ... tc
  • [12:44:47] <LetoThe2nd> niles: np, just being honest.
  • [12:44:51] <uhhimhere> well the neo900 guys are working on a new phone
  • [12:44:53] <uhhimhere> new-ish
  • [12:45:02] <uhhimhere> well new board
  • [12:45:04] <karki__> LetoThe2nd : +1
  • [12:45:09] <tbr> no they are working on an old phone
  • [12:45:20] <uhhimhere> openmoko
  • [12:45:28] <uhhimhere> with a new SoC
  • [12:45:33] <Humpelst1lzchen> tbr: basicly everything new but display and case :)
  • [12:45:34] <tbr> they had the chance to work on something new but preferred to stay with the OMAP3
  • [12:45:48] <niles> basically - I need someone to control the show , the hardware , the software and the support.
  • [12:46:11] <uhhimhere> tbr, yeah I would have seconded something with a vivante
  • [12:46:12] <tbr> Humpelst1lzchen: they want to stay with the Oompa3 because "binary compatibility". too bad it's also immediate obsolescence
  • [12:46:17] <niles> need a proper project cost , a model phone and apprx estimation for the same
  • [12:46:48] <Humpelst1lzchen> tbr: its needed for maemo.
  • [12:46:51] * SiC (~Simon@cpc12-aztw24-2-0-cust193.aztw.cable.virginm.net) has joined #beagle
  • [12:47:02] <jacekowski> most of the open source linux phones/devices end up very expensive
  • [12:47:07] <jacekowski> that linux console
  • [12:47:07] <tbr> you need about 30+ M USD, a team of 50+ people (kick ass, or ten times the money and people if average) and an ODM
  • [12:47:10] <av500> niles: again, what does your phone run?
  • [12:47:10] <jacekowski> what's the name of it
  • [12:47:14] <av500> X11 and openoffice?
  • [12:47:26] <tbr> Humpelst1lzchen: yes "binary compatibility", I said that already
  • [12:47:41] <jacekowski> pandora
  • [12:47:50] <av500> I doubt moz stuck 30M into their phones
  • [12:47:53] <uhhimhere> pandora isnt a phone
  • [12:48:04] <jacekowski> but it's a similiar hardware
  • [12:48:08] <uhhimhere> its doesnt have any baseband stuff
  • [12:48:09] <tbr> av500: you might be surprised
  • [12:48:10] <jacekowski> just without the radio
  • [12:48:17] <uhhimhere> yeah thats a big part of a phone
  • [12:48:21] <jacekowski> but i'm just giving you an idea on how much it's going to cost
  • [12:48:24] <niles> @av500 - do you have the expertise to run the show then I can let you know what are the milestones
  • [12:48:27] <jacekowski> think pandora + radio
  • [12:48:44] * stamina (~stamina@177-211-128-083.dynamic.caiway.nl) Quit (Quit: WeeChat 1.1.1)
  • [12:48:44] <uhhimhere> if you dont want that then help me out with http://forum.cyanogenmod.org/topic/103336-dtsi-compiling-vanilla-linux-on-samsung-gt-s7580/
  • [12:48:49] <av500> niles: I work for a company that makes smart phones
  • [12:49:34] * anates (~roland@dhcp-048222.wlan.ntnu.no) Quit (Quit: Konversation terminated!)
  • [12:49:54] <jacekowski> pandora used to sell for something close to 1k eur
  • [12:49:57] <niles> @av500 - so tell me what will can you run the show
  • [12:50:02] <uhhimhere> jacekowski: baseband is a big part development wise i think you need a bunch of licenses
  • [12:50:03] <jacekowski> for hardware that was obsolete when it was released
  • [12:50:15] <jacekowski> uhhimhere: not exactly
  • [12:50:22] <jacekowski> uhhimhere: it's typically just buy and forget type thing
  • [12:50:35] <niles> @av500 - can`t disclose much right now
  • [12:50:36] <uhhimhere> nah all the driver development for RF
  • [12:50:39] <av500> niles: I can offer to read your PDF
  • [12:50:50] <jacekowski> uhhimhere: you get that all with your baseband
  • [12:51:26] <jacekowski> yas in, you buy it and they will give you ready to use binary driver
  • [12:51:28] <av500> since I have no idea what your show is, I cannot run it for now
  • [12:52:00] <jacekowski> if i were you i would buy existing android phone and get normal linux to run on it
  • [12:52:02] <uhhimhere> well then its not much of an open pandora if everythings closed
  • [12:52:04] <jacekowski> probably a nexus device
  • [12:52:31] <uhhimhere> jacekowski, that is an existing android phone.
  • [12:53:18] <niles> @av500 - unfortunately can`t disclose much as I am bounded by certain contracts
  • [12:53:28] <av500> so?
  • [12:53:36] <jacekowski> yeah, and you can hack it fairly easily to run linux
  • [12:53:36] <av500> why are you even asking here then?
  • [12:54:09] <niles> @av500 - all that is required is i need a SPOC ( single point of contact ) he/she should have the expertise to run the show on the software / hardware front
  • [12:54:35] <LetoThe2nd> "i have a vision and contracts, but no money, no product, no software, no developers and about nothing else too. will you please work for free and do my 'show'"
  • [12:54:48] <LetoThe2nd> did i word it correctly?
  • [12:54:51] <karki__> :')
  • [12:54:52] <av500> niles: again, I can offer to read your PDF at my usual contraction rates
  • [12:55:02] <av500> lol
  • [12:55:07] <av500> contracting
  • [12:55:19] <niles> @av500 - cos i need a fresher , not big shots required and i need a clean slate no fixed idea boxes ... don`t under estimate a public chat u have no idea what works out here :)
  • [12:55:28] <av500> a what?
  • [12:55:48] <LetoThe2nd> ah ok, so we even have no idea what works and what not.
  • [12:55:53] <LetoThe2nd> popcorn, anybody?
  • [12:55:57] <karki__> me
  • [12:56:06] <LetoThe2nd> karki__: how many metric tons?
  • [12:56:18] <uhhimhere> and all of this is beagle related?
  • [12:56:23] <karki__> as long as niles lasts :')
  • [12:56:26] <av500> uhhimhere: its ... complicated
  • [12:58:10] <karki__> LetoThe2nd : I have no cash to pay you, have no clue if I want pop corn, no idea how much I want. But somehow can you deliver it to me? :D
  • [12:58:18] * apg (~Thunderbi@unaffiliated/apg) Quit (Quit: apg)
  • [12:58:47] <uhhimhere> hey if you guys help me out with my stupid quest ill send a coupon to you or something
  • [12:59:10] <niles> ok guys thanks for your time .... may be just not my day ......and yes for all those who were asking about the money and especially lettothe2nd -- i have the $$$$$$....so next time guys understand nobody works for free and nobody should ....:)
  • [12:59:12] <niles> tc guys
  • [12:59:15] * koleto (~koleto@95.90.212.141) has joined #beagle
  • [12:59:28] <av500> niles: I can still read your PDF
  • [12:59:30] * day- is now known as day
  • [12:59:32] <av500> if you want
  • [12:59:45] <av500> feel free to PM it to me
  • [12:59:55] <uhhimhere> here's a nice pdf :http://www.broadcom.com/docs/support/videocore/VideoCoreIV-AG100-R.pdf
  • [13:00:03] <av500> +1
  • [13:00:16] * TheoMurpse (~TheoMurps@cpe-72-191-48-158.satx.res.rr.com) has joined #beaglebone
  • [13:00:47] <uhhimhere> dual core GPU with quad core/slice(up to 16 "slices") GPU-coprocessor
  • [13:01:02] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) has joined #beagle
  • [13:02:21] <LetoThe2nd> niles: if you have the $$$$$$, contact canonical, mozilla, av500, tbr, or any ODM you desire. you don'T need us then :) go ahead :)
  • [13:02:40] * SlpyLion (~anonymous@89-253-73-110.customers.ownit.se) Quit (Quit: SlpyLion)
  • [13:02:43] <LetoThe2nd> (and make sure its LOTS of $$$$$$)
  • [13:02:45] <av500> heh, why am I only third in the list?
  • [13:03:16] <LetoThe2nd> av500: you should have been 500th according to your nick, but i was to lazy to look up 497 chinese odms
  • [13:03:27] * av500 is now known as av1
  • [13:03:32] * av1 is now known as av500
  • [13:03:37] * niles (7aada468@gateway/web/freenode/ip.122.173.164.104) Quit (Ping timeout: 246 seconds)
  • [13:04:57] <av500> good riddancer
  • [13:04:57] * pwillard (~pwillard@c-73-184-136-133.hsd1.ga.comcast.net) Quit (Quit: Leaving)
  • [13:04:58] <av500> good riddance
  • [13:05:30] * TheoMurpse (~TheoMurps@cpe-72-191-48-158.satx.res.rr.com) Quit (Ping timeout: 276 seconds)
  • [13:05:35] <karki__> hehehe
  • [13:05:59] * sidbh_ (~Siddharth@123.201.22.212) has joined #beagle
  • [13:06:01] <karki__> I liked av1 for sometime there :D
  • [13:06:33] * dj_pi (~dj@c-107-5-228-80.hsd1.mi.comcast.net) has joined #beagle
  • [13:08:34] * sidbh (~Siddharth@123.201.30.188) Quit (Ping timeout: 245 seconds)
  • [13:10:02] * nighty^ (~nighty@hokuriku.rural-networks.com) has joined #beagleboard
  • [13:12:39] * dj_pi (~dj@c-107-5-228-80.hsd1.mi.comcast.net) Quit (Ping timeout: 276 seconds)
  • [13:12:47] <uhhimhere> how much would i have to pay someone to help me out?
  • [13:14:17] <av500> I can read your PDF :)
  • [13:14:33] <uhhimhere> which pdf
  • [13:14:42] <av500> ball is in your court :)
  • [13:14:45] <uhhimhere> so does that mean youd help out for free
  • [13:14:55] <av500> I know too little about DTS
  • [13:15:03] <uhhimhere> oh :(
  • [13:18:12] * VirG (~VirGin@adsl-76-235-121-110.dsl.pltn13.sbcglobal.net) has joined #beagle
  • [13:18:41] * phantoxe (~destroy@acarlosss.broker.freenet6.net) Quit (Remote host closed the connection)
  • [13:21:30] * n0mis is now known as nomis
  • [13:21:40] <Parduz> ok, there's someone (other than LetoThe2ns :) ) that can explain me the --host, --target and --build options of "configure"? I can't find any help on the web
  • [13:22:11] <av500> http://www.gnu.org/software/automake/manual/html_node/Cross_002dCompilation.html
  • [13:22:18] <av500> https://www.google.com/search?q=autotools+host+target+build
  • [13:22:30] <av500> https://autotools.io/autoconf/canonical.html
  • [13:22:51] <av500> there is even a book: http://www.amazon.com/gp/product/B00BC2HTHM/ref=as_li_qf_sp_asin_il_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=B00BC2HTHM&linkCode=as2&tag=flamswebl-20&linkId=XZ7UZ65D74G4VPPN
  • [13:23:22] <Parduz> thanks, i'm reading the links
  • [13:24:28] <Parduz> ok, so seems that the --host is what i need to specify, at least.
  • [13:24:44] <Parduz> what's the "parameter" for BBB with Debian?
  • [13:26:56] <karki__> av500, niles still does not beat the guy who thought the IRC was a customer service center for the BBB :')
  • [13:27:38] <karki__> and he wrote a formal complaint to jkridner saying that the customer service was not upto par :D
  • [13:27:53] <av500> well, in a way I can understand that guy more
  • [13:36:19] * Darek` (darek@work.sznajder.org) has joined #beagle
  • [13:37:49] * thurgood_ (~thurgood@67-198-113-218.static.grandenetworks.net) has joined #beagle
  • [13:41:11] * torpor (~Adium@80-123-56-72.adsl.highway.telekom.at) Quit (*.net *.split)
  • [13:41:11] * Darek- (darek@work.sznajder.org) Quit (*.net *.split)
  • [13:41:11] * samael (~earendil@multivac.valis-e.com) Quit (*.net *.split)
  • [13:41:11] * djakov (~djakov@2a02:2660:0:4010::209) Quit (*.net *.split)
  • [13:41:11] * Darek` is now known as Darek-
  • [13:51:40] * SlpyLion (~anonymous@89-253-73-110.customers.ownit.se) has joined #beagle
  • [13:56:04] * kalem (~kalem@unaffiliated/kalem) has joined #beagleboard
  • [13:56:06] * kalem (~kalem@unaffiliated/kalem) has joined #beagle
  • [13:58:08] * dge (~quassel@96.127.239.250) has joined #beagle
  • [14:00:35] <vmayoral> hi! anyone with a bit of experience with dtbs? I'm trying to custom the am335x-boneblack.dts however i get an unexpected error when compiling it: "label or path, 'ocp', not found". "ocp" is defined in am33xx.dtsi which is included
  • [14:02:05] <vmayoral> has someone bumped into something similar? any ideas on how i can debug this?
  • [14:02:16] * Leschveux_ (~quassel@96.127.239.250) Quit (Ping timeout: 272 seconds)
  • [14:04:10] * jpsaman (~jpsaman@videolan/developer/jpsaman) Quit (Quit: Leaving)
  • [14:05:21] * koleto (~koleto@95.90.212.141) Quit (Quit: koleto)
  • [14:08:52] * SlpyLion (~anonymous@89-253-73-110.customers.ownit.se) Quit (Quit: SlpyLion)
  • [14:10:33] * libregeekingkid (~quassel@116.75.34.93) has joined #beagle
  • [14:10:51] * kalem (~kalem@unaffiliated/kalem) Quit (Ping timeout: 264 seconds)
  • [14:11:01] * SlpyLion (~anonymous@89-253-73-110.customers.ownit.se) has joined #beagle
  • [14:13:15] * SlpyLion (~anonymous@89-253-73-110.customers.ownit.se) Quit (Client Quit)
  • [14:15:23] * mrjazzcat (~mrjazzcat@c-24-8-176-66.hsd1.co.comcast.net) has joined #beagle
  • [14:17:55] * demok_ (~okan@24.133.188.226) has joined #beagle
  • [14:18:00] * demok_ (~okan@24.133.188.226) Quit (Read error: Connection reset by peer)
  • [14:18:02] * libregeekingkid (~quassel@116.75.34.93) Quit (Read error: Connection reset by peer)
  • [14:18:21] * demok (~okan@24.133.188.226) has joined #beagle
  • [14:18:37] * phantoxe (~destroy@acarlosss.broker.freenet6.net) has joined #beagle
  • [14:26:34] * djakov (~djakov@2a02:2660:0:4010::209) has joined #beagle
  • [14:26:34] * torpor (~Adium@80-123-56-72.adsl.highway.telekom.at) has joined #beagle
  • [14:30:03] * libregeekingkid (~quassel@116.75.34.93) has joined #beagle
  • [14:30:27] * libregeekingkid (~quassel@116.75.34.93) Quit (Read error: Connection reset by peer)
  • [14:33:05] * kalem (~kalem@unaffiliated/kalem) has joined #beagle
  • [14:33:05] * kalem (~kalem@unaffiliated/kalem) has joined #beagleboard
  • [14:37:24] * paul175 (~pjsanfil@ofwgwc03.rockwellcollins.com) Quit (Remote host closed the connection)
  • [14:37:45] * pwillard (~pwillard@c-73-184-136-133.hsd1.ga.comcast.net) has joined #beagle
  • [14:38:03] * paul175 (~pjsanfil@ofwgwc03.rockwellcollins.com) has joined #beagle
  • [14:45:00] * knob (~knob@76.76.202.243) has joined #beagle
  • [14:47:46] * Crofton (~balister@cable-78.29.240.33.coditel.net) has joined #beagle
  • [14:48:10] * libregeekingkid_ (~quassel@116.75.34.93) has joined #beagle
  • [14:48:28] * libregeekingkid_ (~quassel@116.75.34.93) Quit (Client Quit)
  • [14:51:02] * kalem (~kalem@unaffiliated/kalem) Quit (Ping timeout: 272 seconds)
  • [14:54:27] * dgerlach (dave@nat/ti/x-qkhpaqnwttnucczk) has joined #beagle
  • [14:54:39] * acidfoo (~nib@unaffiliated/acidmen) has joined #beaglebone
  • [14:54:42] * acidfoo (~nib@unaffiliated/acidmen) has left #beaglebone
  • [14:54:54] * acidfoo (~nib@unaffiliated/acidmen) has joined #beagle
  • [14:54:55] <acidfoo> moo
  • [14:55:22] <acidfoo> is it "legal" to base a commercial product on the beagle bone black ? or it's only for development - thank you
  • [14:56:06] * Mounicq1 (~Thunderbi@130.230.21.109.rev.sfr.net) has joined #beagle
  • [14:56:15] * Mounicq1 (~Thunderbi@130.230.21.109.rev.sfr.net) Quit (Client Quit)
  • [14:57:16] * Mounicq1 (~Thunderbi@130.230.21.109.rev.sfr.net) has joined #beagle
  • [14:57:30] <karki__> AFAIK, it's legal
  • [14:58:07] <karki__> you can build and sell a product that has the B bone in it :)
  • [14:59:20] * webdaford (~daford@ool-457895c1.dyn.optonline.net) has joined #beagle
  • [15:00:23] * ocamlman (~ocamlman@cpe-104-229-169-2.twcny.res.rr.com) has joined #beagle
  • [15:00:43] <thurgood_> it's an open design
  • [15:01:21] <thurgood_> mostly it's a matter of clearing fcc or whatever other regulations you might need to satisfy
  • [15:02:42] <thurgood_> we had bitch of a time with fccc compliance with the stuff based on beagle board classic designs
  • [15:03:57] <thurgood_> not sure if the bbb is better in that regard, the bbb is subject to less restriction as it is not technically an end user product
  • [15:05:06] * Bob_Saget (~root@n112119154141.netvigator.com) Quit (Ping timeout: 276 seconds)
  • [15:06:08] <thurgood_> there's also some trademark stuff like you cannot say it's a bbb
  • [15:06:26] <acidfoo> ok!
  • [15:06:29] <acidfoo> great
  • [15:07:59] <agmlego|skynet> Keep in mind though that if you use the module as a whole in your design, you are tied to CircuitCo's producstion schedule and sales volume.
  • [15:08:21] <agmlego|skynet> It may be better for your application to use the design files and make your own product.
  • [15:08:42] <thurgood_> more likely than not
  • [15:09:11] <thurgood_> especially if you're on a schedule, it's hard to get more than one at a time through most channels
  • [15:09:25] <thurgood_> or at least it was for a while
  • [15:09:33] <acidfoo> yeah I found another supplier
  • [15:09:37] <acidfoo> http://www.logicsupply.com/bb-black-c/
  • [15:09:46] <acidfoo> a little bit more expensive, but you can order a lot at a time
  • [15:10:59] <agmlego|skynet> Interesting. I thought the Element14 version was pulled completely off the market.
  • [15:11:12] * koleto (~koleto@95.90.212.141) has joined #beagle
  • [15:11:16] <agmlego|skynet> And that the Element14 version was not allowed to be called a BealgeBone Black by name.
  • [15:12:15] <thurgood_> I think they licensed the name
  • [15:12:25] <agmlego|skynet> Ah.
  • [15:14:04] * dgerlach1 (dave@nat/ti/x-zkwudklrxgjputwq) has joined #beagle
  • [15:15:01] * gusnan (~gusnan@s213-100-228-162.cust.tele2.se) Quit (Ping timeout: 265 seconds)
  • [15:16:14] <thurgood_> the element14 boards disappeared for a while, but I'm not sure of the details
  • [15:16:28] <agmlego|skynet> Yeah, me netiher.
  • [15:16:34] * gusnan (~gusnan@s213-100-228-162.cust.tele2.se) has joined #beagle
  • [15:16:37] <thurgood_> probably just ran out of supply
  • [15:16:56] <agmlego|skynet> Could be. But usually that does not mean the entire product page disappears from the Internet.
  • [15:17:31] <thurgood_> depends how much backorders they were having to fill :P
  • [15:17:31] * dgerlach (dave@nat/ti/x-qkhpaqnwttnucczk) Quit (Ping timeout: 256 seconds)
  • [15:17:37] <agmlego|skynet> Maybe.
  • [15:17:43] <agmlego|skynet> It was just strange is all.
  • [15:18:01] <thurgood_> it's just conjecture, as I said I don't know the details
  • [15:18:08] <agmlego|skynet> Yeah, agreed.
  • [15:20:27] * libregeekingkid_ (~quassel@116.75.34.93) has joined #beagle
  • [15:28:57] * libregeekingkid_ (~quassel@116.75.34.93) Quit (Remote host closed the connection)
  • [15:28:58] * wednesday (~wednesday@c-76-104-145-102.hsd1.wa.comcast.net) Quit (Read error: Connection reset by peer)
  • [15:29:16] * libregeekingkid_ (~quassel@116.75.34.93) has joined #beagle
  • [15:29:49] * veremit (~Michael@unaffiliated/veremit) Quit (Ping timeout: 245 seconds)
  • [15:30:01] <adamwwolf_> Man, this is a mess.
  • [15:30:29] <adamwwolf_> I'm trying to get something to run on my BBB running wheezy.
  • [15:30:48] <adamwwolf_> I need it to be compiled as float-abi=soft, however
  • [15:30:50] * lokust (~smuxi@dhcp-108-168-2-190.cable.user.start.ca) has left #beaglebone
  • [15:31:06] <adamwwolf_> so if I natively compile on wheezy, it uses armhf, which is float-abi=hard
  • [15:31:31] <adamwwolf_> if I try to install gcc:armel on wheezy, it almost works, however, gcc:armel was built to not use thumb, which I also need
  • [15:32:00] <adamwwolf_> so I try to cross compile, but this is a weird thing, and the makefiles already have a sysroot built into them, that they need
  • [15:32:07] <adamwwolf_> so I can't point it at *my* sysroot
  • [15:32:27] * dgerlach1 (dave@nat/ti/x-zkwudklrxgjputwq) Quit (Ping timeout: 264 seconds)
  • [15:32:38] <adamwwolf_> oh, and the gcc on wheezy by default appears to ignore -mfloat-abi=soft
  • [15:32:47] <agmlego|skynet> why does it need to be soft float?
  • [15:33:04] <adamwwolf_> it's a loader that loads a binary without source that is softfloat
  • [15:33:05] <thurgood_> you can't specify multiple library paths?
  • [15:33:25] <jkridner> gm all
  • [15:33:37] <jkridner> gm _av500_
  • [15:33:39] <jkridner> sorry I'm late
  • [15:33:44] <adamwwolf_> thurgood_: I tried, but I got different errors during the ./configure. I used to cross compile without sysroot all the time, but it appears I ahve lost my touch
  • [15:34:00] <adamwwolf_> I'll get my configure line and error from that test, one moment
  • [15:34:14] <jkridner> :(
  • [15:34:40] <agmlego|skynet> jkridner: hi!
  • [15:34:41] * SoCo_cpp_ (~soco@gateway/tor-sasl/sococpp/x-93321146) Quit (Ping timeout: 250 seconds)
  • [15:34:48] <jkridner> howdy agmlego|skynet
  • [15:35:18] <adamwwolf_> hi jkridner
  • [15:35:50] <jkridner> hi adamwwolf_!
  • [15:36:02] * dgerlach (dave@nat/ti/x-bqpxwnbogrjuadoj) has joined #beagle
  • [15:36:06] <jkridner> for those interested, we are having a GSoC chat some time in #beagle-gsoc
  • [15:36:30] <jkridner> adamwwolf_: why do you need softfloat on wheezy?!?
  • [15:37:04] * SoCo_cpp_ (~soco@gateway/tor-sasl/sococpp/x-93321146) has joined #beagle
  • [15:37:34] <adamwwolf_> jkridner: do you remember about a year ago when someone decompiled Starcraft and Brood War to C, then recompiled for gnueabi, and then got wine working enough so it played on openpandora?
  • [15:37:35] <jkridner> agmlego|skynet: about a year ago, we licensed them the name "BeagleBone Black", but they have to say "Element14 BeagleBone Black", not "BeagleBoard.org BeagleBone Black"
  • [15:37:57] <jkridner> agmlego|skynet: we've talked about changing that, but want to avoid any confusion on the manufacturer.
  • [15:38:13] <jkridner> adamwwolf_: I don't, but that's super cool!
  • [15:38:19] <adamwwolf_> jkridner: it's an amazing hack
  • [15:38:25] <adamwwolf_> 4 months of work by a really sharp dude
  • [15:38:28] * koleto (~koleto@95.90.212.141) Quit (Quit: koleto)
  • [15:38:47] * jkridner wishes openpandora would have taken over the world
  • [15:39:10] <adamwwolf_> jkridner: I am about 4 days into getting SC and BW to work on the BBB
  • [15:39:12] <jkridner> (to the likes of the demoscene people)
  • [15:39:20] <jkridner> adamwwolf_: sweet!
  • [15:39:27] <adamwwolf_> but this is the weird sticking point right now
  • [15:39:45] <adamwwolf_> if I compile wine on the BBB, I can easily compile it as hardfloat
  • [15:39:59] <adamwwolf_> it appears that GCC on wheezy won't let me do mfloat-abi=soft
  • [15:40:17] <adamwwolf_> (also, starcraft and broodwar don't even really do floating point, this is just an ABI thing)
  • [15:40:32] <adamwwolf_> so I tried to cross compile wine, which is just crazy btw
  • [15:40:54] <adamwwolf_> you have to compile it once natively, leave your build artifacts around, and point the cross compiling ./configure at your native artifacts
  • [15:41:11] * koleto (~koleto@95.90.212.141) has joined #beagle
  • [15:41:11] * SiC (~Simon@cpc12-aztw24-2-0-cust193.aztw.cable.virginm.net) Quit (Remote host closed the connection)
  • [15:41:22] <jkridner> adamwwolf_: but, if you are recompiling, why can't you leave the armhf thing? what is already compiled that you are linking against?
  • [15:41:47] <adamwwolf_> so I installed all the libraries and headers on my BBB, made a copy of the rootfs, used it as a sysroot, and got through ./configure just fine for wine on my PC
  • [15:41:47] <adamwwolf_> then once I started make, it complained it coudln't find any libraries that it found no problem during the ./configure
  • [15:42:21] <adamwwolf_> notaz, the guy who decompiled/recompiled starcraft for arm, links it against libwine.so
  • [15:42:31] <adamwwolf_> oh, this is hte other half of hte story I forgot
  • [15:42:43] <adamwwolf_> so he provides a compiled wine that *would* work fine, except he uses omapfp
  • [15:42:45] <adamwwolf_> omapfb
  • [15:42:50] <jkridner> ah, so if you could get a rebuild of libwine.so, you wouldn't have to change the ABI?
  • [15:42:57] * veremit (~Michael@88-145-147-84.host.pobb.as13285.net) has joined #beagle
  • [15:42:57] * veremit (~Michael@88-145-147-84.host.pobb.as13285.net) Quit (Changing host)
  • [15:42:57] * veremit (~Michael@unaffiliated/veremit) has joined #beagle
  • [15:43:00] <adamwwolf_> so I was really bummed and almost dropped the project
  • [15:43:02] <jkridner> k. why not try running it on Angstrom?
  • [15:43:05] <adamwwolf_> however, I looked at what he used omapfb for
  • [15:43:11] <adamwwolf_> he just used omapfb for changing the screen resolution!
  • [15:43:53] <adamwwolf_> so I'm attacking this on a few fronts. he volunteered to try to build the starcraft executable with armhf
  • [15:44:11] <adamwwolf_> that would mean I just compile wine for armhf, which I have already done, and it should load fine
  • [15:46:15] <adamwwolf_> and it might be the only real reasonable option, however, it isn't something *I* can do, because only he has that source
  • [15:46:59] <adamwwolf_> it appears that any time I ask for a softfloat-producing gcc on wheezy people start to gag and slowly walk backwards with a forced smile :)
  • [15:47:55] <adamwwolf_> so let me back up a bit--before sysroot, we just cross compiled with a bunch of -I and -Ls, right?
  • [15:48:26] * emeb (~ericb@ip68-104-219-12.ph.ph.cox.net) has joined #beagle
  • [15:50:42] * jkridner changes topic to 'http://beagleboard.org/chat has a guide on how to ask questions and links to the logs | never ask to ask, just ask | be patient | pastebin a boot log | http://ahsoftware.de/Beaglebone_Black_Boot_explained.svg | http://beagleboard.org/latest-images | http://beagleboard.org/Support/bone101 | direct bonescript/node.js questions to #beagle-bonescript | books: http://bit.ly/bbb-books'
  • [15:51:05] <jkridner> too many books not to have some people read them!
  • [15:51:39] * NishanthMenon (~nmenon@64.124.195.67) Quit (Ping timeout: 264 seconds)
  • [15:51:44] <jkridner> adamwwolf_: that was my reaction. :-)
  • [15:51:57] * demok (~okan@24.133.188.226) Quit (Ping timeout: 245 seconds)
  • [15:52:21] * agmlego|skynet still does not understand the value of printed media for this kind of thing.
  • [15:52:50] <adamwwolf_> jkridner: I once did a contract job where we ported some OS2 code to Android for a medical device manufacturer, and it took me multiple days of convincing before I thought there might even be merit to what they were doing :)
  • [15:53:07] <jkridner> adamwwolf_: I've been depending on build systems like Buildroot, Gentoo and Yocto/Angstrom for most of my cross-compiling beyond a simple single-C-file app.
  • [15:53:19] <adamwwolf_> yeah, that's the rub
  • [15:53:28] <adamwwolf_> I think 5 years ago I was better suited to solve this problem
  • [15:53:54] <adamwwolf_> when I'm cross compiling, I'm either in yocto or ndk-build these days
  • [15:55:09] <jkridner> adamwwolf_: having a dead tree to thumb through can be handy when trying to just build up some general knowledge
  • [15:55:23] <jkridner> er, agmlego|skynet: ^^^
  • [15:57:00] <adamwwolf_> harrumph.
  • [15:57:54] <adamwwolf_> when i try to take the --sysroot out of the cross compile on my ubuntu box, I get errors where arm-linux-gnueabi-gcc cannot find /lib/arm-linux-gnueabi/libc.so.6, which I believe is due ot the leading slash.
  • [15:58:05] <adamwwolf_> gunna take a break from this project today, maybe notaz will recompile it for hardfloat for me :)
  • [15:58:56] <agmlego|skynet> jkridner: I guess.
  • [16:00:16] * boneskull (~boneskull@c-50-137-151-209.hsd1.or.comcast.net) has joined #beagle
  • [16:00:16] * boneskull (~boneskull@c-50-137-151-209.hsd1.or.comcast.net) Quit (Client Quit)
  • [16:00:33] * Peuc (~Peuc@162.222.145.110) Quit (Quit: Leave now!)
  • [16:00:47] <Parduz> How could I know why gcc hangs when called by configure when --host=arm-linux-gnueabihf? tried with CFLAGS=-v but it doesn't produce any output
  • [16:01:01] <Parduz> Hi agmlego
  • [16:01:17] * stamina (~stamina@177-211-128-083.dynamic.caiway.nl) has joined #beaglebone
  • [16:01:52] * Peuc (~Peuc@162.222.145.110) has joined #beagle
  • [16:02:09] <agmlego|skynet> Parduz: Hello.
  • [16:02:58] * koleto (~koleto@95.90.212.141) Quit (Quit: koleto)
  • [16:04:02] * koleto (~koleto@95.90.212.141) has joined #beagle
  • [16:07:32] * libregeekingkid_ (~quassel@116.75.34.93) Quit (Remote host closed the connection)
  • [16:08:57] * phantoxeD (destroy@a89-152-21-144.cpe.netcabo.pt) Quit (Ping timeout: 244 seconds)
  • [16:09:09] * phantoxe (~destroy@acarlosss.broker.freenet6.net) Quit (Ping timeout: 265 seconds)
  • [16:09:59] <thurgood_> Parduz: does it give any sort of log?
  • [16:10:25] * SiC (~Simon@cpc12-aztw24-2-0-cust193.aztw.cable.virginm.net) has joined #beagle
  • [16:12:26] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) Quit (Remote host closed the connection)
  • [16:17:03] * kalem (~kalem@unaffiliated/kalem) has joined #beagleboard
  • [16:17:05] * kalem (~kalem@unaffiliated/kalem) has joined #beagle
  • [16:17:37] <veremit> usually gcc will spew lots of output .. do you have -W (anything) set?
  • [16:17:58] <veremit> or -q or something?
  • [16:18:06] * koleto (~koleto@95.90.212.141) Quit (Quit: koleto)
  • [16:21:36] <Parduz> i have the log from configure, but it does'nt include any ourput from the gcc.
  • [16:23:20] <Parduz> when configure launch gcc for testing, gcc hangs (with Windows telling that it ceased to work) then configure exit saying that the compiler cannot create executables
  • [16:23:39] * florian (~fuchs@Maemo/community/contributor/florian) Quit (Quit: Client exiting)
  • [16:23:48] <Parduz> "This application has requested the Runtime to terminate it in an unusual way."
  • [16:24:39] * Mounicq1 (~Thunderbi@130.230.21.109.rev.sfr.net) Quit (Ping timeout: 264 seconds)
  • [16:25:15] <Parduz> this is my command:
  • [16:25:16] <Parduz> $ ../configure -prefix=/c/SysGCC/wxWidgets/arm-wx -disable-shared -enable-debug CC=/c/SysGCC/BeagleDebian/bin/arm-linux-gnueabihf-gcc --host=arm-linux-gnueabihf
  • [16:26:33] * Crofton (~balister@cable-78.29.240.33.coditel.net) Quit (Ping timeout: 265 seconds)
  • [16:29:16] * sam___ (af64ae1f@gateway/web/freenode/ip.175.100.174.31) has joined #beagle
  • [16:29:57] * konradoo77 (~debian@ip-37-209-149-101.free.aero2.net.pl) has joined #beagle
  • [16:31:09] * libregeekingkid_ (~quassel@116.75.34.93) has joined #beagle
  • [16:32:02] * samael (~earendil@multivac.valis-e.com) has joined #beagle
  • [16:35:53] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) has joined #beagle
  • [16:37:22] * knob (~knob@76.76.202.243) Quit (Ping timeout: 244 seconds)
  • [16:38:14] * knob (~knob@76.76.202.243) has joined #beagle
  • [16:38:48] <veremit> the clue is in the last statement .. because you are compiling for arm .. you won't be able to run the executable in windows
  • [16:39:11] <veremit> you need to find the option which forbids it from 'testing' the output from gcc I think :)
  • [16:39:48] <veremit> then the test-gcc will succeed, which will feed back to the configure phase.
  • [16:40:53] <veremit> if that is indeed what's going wrong.
  • [16:41:27] * emeb (~ericb@ip68-104-219-12.ph.ph.cox.net) Quit (Read error: Connection reset by peer)
  • [16:41:57] * woglinde (~henning@fb-n15-11.unbelievable-machine.net) has joined #beagle
  • [16:42:34] * KaaK (~Kevin@wsip-72-205-198-77.ks.ks.cox.net) has joined #beagle
  • [16:43:42] * emeb (~ericb@ip68-104-219-12.ph.ph.cox.net) has joined #beagle
  • [16:46:06] * torpor1 (~Adium@194-96-159-208.adsl.highway.telekom.at) has joined #beagle
  • [16:46:55] * torpor (~Adium@80-123-56-72.adsl.highway.telekom.at) Quit (Ping timeout: 252 seconds)
  • [16:47:16] * c10ud (~c10ud@emesene/dictator/c10ud) Quit (Quit: cya)
  • [16:49:53] * SiC (~Simon@cpc12-aztw24-2-0-cust193.aztw.cable.virginm.net) Quit (Remote host closed the connection)
  • [16:50:38] * sam___ (af64ae1f@gateway/web/freenode/ip.175.100.174.31) Quit (Quit: Page closed)
  • [16:51:12] * sam___ (af64ae1f@gateway/web/freenode/ip.175.100.174.31) has joined #beagle
  • [16:51:31] * sam___ (af64ae1f@gateway/web/freenode/ip.175.100.174.31) Quit (Client Quit)
  • [16:54:19] * AliasVulcan (uid63023@gateway/web/irccloud.com/x-rdeppkmqiocwwvhq) has joined #beaglebone
  • [16:54:37] * Parduz (97548216@gateway/web/freenode/ip.151.84.130.22) Quit (Ping timeout: 246 seconds)
  • [16:55:43] * Parduz (97548216@gateway/web/freenode/ip.151.84.130.22) has joined #beagle
  • [16:56:57] <Parduz> sorry guys, connection gone down
  • [16:57:10] * __butch__ (~Adium@2601:9:4d00:17ae:84ef:8ac4:81e8:7c80) has joined #beagle
  • [16:57:38] <Parduz> would you like to re-write the replies to my last msgs?
  • [17:00:05] * Ceriand|desktop (~Ceriand@unaffiliated/ceriand) Quit (Quit: Leaving.)
  • [17:03:03] * koleto (~koleto@95.90.212.141) has joined #beagle
  • [17:10:56] * TheoMurpse (~TheoMurps@cpe-72-191-48-158.satx.res.rr.com) has joined #beaglebone
  • [17:10:57] * Gazpaxxo (~bizarro_1@160.Red-79-158-46.staticIP.rima-tde.net) Quit (Read error: Connection reset by peer)
  • [17:11:54] * ppisati (~ppisati@2-230-238-136.ip204.fastwebnet.it) Quit (Quit: leaving)
  • [17:12:32] * Gazpaxxo (~bizarro_1@226.Red-79-153-177.dynamicIP.rima-tde.net) has joined #beagle
  • [17:15:03] * konradoo77 (~debian@ip-37-209-149-101.free.aero2.net.pl) Quit (Ping timeout: 264 seconds)
  • [17:18:27] * bizarro_1 (~bizarro_1@226.Red-79-153-177.dynamicIP.rima-tde.net) has joined #beagle
  • [17:19:56] * rcn-ee (~voodoo@64.77.213.245) has joined #beagle
  • [17:20:49] <rcn-ee> yates, got it... make sure "CONFIG_USB_ETH_EEM" is disabled: https://github.com/RobertCNelson/boot-scripts/blob/master/boot/am335x_evm.sh#L92
  • [17:28:13] * micr0 (~micr0@static-72-89-169-38.nycmny.fios.verizon.net) has joined #beagle
  • [17:31:05] * Parduz (97548216@gateway/web/freenode/ip.151.84.130.22) Quit (Quit: Page closed)
  • [17:33:31] * konradoo77 (~debian@ip-78-30-92-238.free.aero2.net.pl) has joined #beagle
  • [17:34:28] * boneskull (~boneskull@c-50-137-151-209.hsd1.or.comcast.net) has joined #beagle
  • [17:34:31] * koleto (~koleto@95.90.212.141) Quit (Quit: koleto)
  • [17:34:42] <ocamlman> I am using the BB-BONE-PRU-01 which uses p9_27 -- the code TODO:\n QBBS TODO, r31, 5 does not loop infinitely as I expect, whether p9_27 is attached to 3.3v or gnd
  • [17:39:59] * gustavoz (~gustavoz@181.46.99.160) Quit (Quit: Leaving)
  • [17:40:32] * NulL` (~bleh1@178.16.3.12) has joined #beagle
  • [17:40:33] * koleto (~koleto@95.90.212.141) has joined #beagle
  • [17:40:33] * koleto (~koleto@95.90.212.141) Quit (Client Quit)
  • [17:40:50] * VirG (~VirGin@adsl-76-235-121-110.dsl.pltn13.sbcglobal.net) Quit (Quit: Leaving.)
  • [17:43:03] * trampel (~trampel@73.19.41.124) has joined #beagle
  • [17:45:45] * uv (~uv@94-21-182-4.pool.digikabel.hu) has joined #beagle
  • [17:46:47] * mrjazzcat (~mrjazzcat@c-24-8-176-66.hsd1.co.comcast.net) Quit (Ping timeout: 265 seconds)
  • [17:47:37] * FlyingWookie (~FlyingWoo@205-200-65-5.static.mtsallstream.net) has joined #beagle
  • [17:50:39] * karki__ (~karki@117.192.242.88) Quit (Ping timeout: 245 seconds)
  • [17:50:44] * karki_ (~karki@117.192.242.88) Quit (Ping timeout: 244 seconds)
  • [17:52:40] * nmschulte (~nmschulte@unaffiliated/reklipz) Quit (Disconnected by services)
  • [17:53:58] * nmschulte_ (~nmschulte@71-34-206-83.omah.qwest.net) has joined #beagle
  • [17:54:31] * staylor (~staylor@mail.au-zone.com) has joined #beagle
  • [17:55:55] * VirG (~VirGin@adsl-76-235-121-110.dsl.pltn13.sbcglobal.net) has joined #beagle
  • [17:57:09] * koleto (~koleto@95.90.212.141) has joined #beagle
  • [17:57:56] * jedahan (~jedahan@subtle/user/jedahan) has joined #beagle
  • [18:00:47] * eFfeM (~frans@c73189.upc-c.chello.nl) has joined #beagle
  • [18:04:08] * mdp (sid49840@gateway/web/irccloud.com/x-qovylhrhdezrzums) Quit ()
  • [18:04:15] * koleto (~koleto@95.90.212.141) Quit (Quit: koleto)
  • [18:04:19] * mdp (sid49840@gateway/web/irccloud.com/x-uynmpdaojvtpphoa) has joined #beagle
  • [18:04:37] * mythos (~mythos@unaffiliated/mythos) Quit (Ping timeout: 264 seconds)
  • [18:04:51] * woglinde (~henning@fb-n15-11.unbelievable-machine.net) Quit (Ping timeout: 264 seconds)
  • [18:05:49] * cityLights (~niv@bzq-84-111-154-73.red.bezeqint.net) Quit (Ping timeout: 256 seconds)
  • [18:05:50] * KiloJuliet (~gplgeek@pdpc/supporter/student/GPLGeek) Quit (Read error: Connection reset by peer)
  • [18:06:29] * RagBal (~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl) Quit (Ping timeout: 252 seconds)
  • [18:07:13] * keatont (~keatont@keatonstaylor.com) Quit (Ping timeout: 252 seconds)
  • [18:07:57] * WillAmes (~py@ool-18b9b3ea.dyn.optonline.net) Quit (Ping timeout: 252 seconds)
  • [18:07:57] * djinni (~djinni@192.241.198.49) Quit (Ping timeout: 252 seconds)
  • [18:08:02] * jonmasters_ (~jcm@edison.jonmasters.org) Quit (Excess Flood)
  • [18:08:28] * koleto (~koleto@95.90.212.141) has joined #beagle
  • [18:08:41] * Vadtec (~Vadtec@unaffiliated/vadtec) Quit (Ping timeout: 252 seconds)
  • [18:08:41] * JamesJRH (~james@ps87731.dreamhost.com) Quit (Ping timeout: 252 seconds)
  • [18:08:41] * armin76 (~armin@gentoo/developer/armin76) Quit (Ping timeout: 252 seconds)
  • [18:09:03] * buq2 (~buq2@dsl-trebrasgw2-54f9ad-174.dhcp.inet.fi) Quit (Ping timeout: 252 seconds)
  • [18:09:03] * cityoflights2 (~nivw@vpn.xsignnet.com) Quit (Ping timeout: 252 seconds)
  • [18:09:03] * jj2baile (~jon@corn-syrup.csclub.uwaterloo.ca) Quit (Ping timeout: 252 seconds)
  • [18:09:03] * PaulePanter (~paul@mail.gw90.de) Quit (Ping timeout: 252 seconds)
  • [18:09:03] * vvu (~vvu@unaffiliated/vvu) Quit (Ping timeout: 252 seconds)
  • [18:09:03] * Brucie555 (~Bruce@static-50-43-113-18.bvtn.or.frontiernet.net) Quit (Ping timeout: 252 seconds)
  • [18:09:24] * JamesJRH (~james@ps87731.dreamhost.com) has joined #beagle
  • [18:09:25] * ds2 (noinf@rehut.com) Quit (Ping timeout: 252 seconds)
  • [18:09:25] * krabban (~markus@188.226.153.107) Quit (Ping timeout: 252 seconds)
  • [18:09:25] * hxla (~wagner@192.241.175.33) Quit (Ping timeout: 252 seconds)
  • [18:09:39] * PaulePanter (~paul@mail.gw90.de) has joined #beagle
  • [18:09:39] * PaulePanter (~paul@mail.gw90.de) has joined #beagleboard
  • [18:09:41] * vvu (~vvu@vvu.vdev.ro) has joined #beagle
  • [18:09:42] * vvu (~vvu@vvu.vdev.ro) Quit (Changing host)
  • [18:09:42] * vvu (~vvu@unaffiliated/vvu) has joined #beagle
  • [18:09:43] * koleto (~koleto@95.90.212.141) Quit (Client Quit)
  • [18:09:46] * jj2baile (~jon@corn-syrup.csclub.uwaterloo.ca) has joined #beagle
  • [18:09:55] * buq2 (~buq2@dsl-trebrasgw2-54f9ad-174.dhcp.inet.fi) has joined #beagle
  • [18:10:08] * koleto (~koleto@95.90.212.141) has joined #beagle
  • [18:10:12] * hxla (~wagner@192.241.175.33) has joined #beagle
  • [18:10:27] * krabban (~markus@188.226.153.107) has joined #beagle
  • [18:11:57] * jonmasters (~jcm@edison.jonmasters.org) has joined #beagle
  • [18:13:27] * RagBal (~RagBal@54694E34.cm-12-2b.dynamic.ziggo.nl) has joined #beagle
  • [18:13:41] * keatont (~keatont@keatonstaylor.com) has joined #beagle
  • [18:13:53] * trampel (~trampel@73.19.41.124) Quit (Quit: Leaving)
  • [18:15:06] * Vadtec (~Vadtec@unaffiliated/vadtec) has joined #beagle
  • [18:15:43] * koleto (~koleto@95.90.212.141) Quit (Quit: koleto)
  • [18:18:40] * djinni (~djinni@192.241.198.49) has joined #beagle
  • [18:19:06] * koleto (~koleto@95.90.212.141) has joined #beagle
  • [18:19:06] * koleto (~koleto@95.90.212.141) Quit (Client Quit)
  • [18:20:32] * cityoflights2 (~nivw@vpn.infinidat.com) has joined #beagle
  • [18:21:11] * lyakh_ (~lyakh@xdsl-87-79-43-27.netcologne.de) has joined #beagle
  • [18:21:24] * ds2 (noinf@rehut.com) has joined #beagle
  • [18:21:24] * ds2 (noinf@rehut.com) has joined #beaglebone
  • [18:22:17] * armin76 (~armin@176.17.23.95.dynamic.jazztel.es) has joined #beagle
  • [18:22:17] * armin76 (~armin@176.17.23.95.dynamic.jazztel.es) Quit (Changing host)
  • [18:22:17] * armin76 (~armin@gentoo/developer/armin76) has joined #beagle
  • [18:22:37] * phantoxeD (destroy@a89-152-21-144.cpe.netcabo.pt) has joined #beagle
  • [18:24:12] * NishanthMenon (~nmenon@64.124.195.67) has joined #beagle
  • [18:24:52] * lyakh (~lyakh@xdsl-87-79-135-126.netcologne.de) Quit (Ping timeout: 255 seconds)
  • [18:25:27] * sidbh_ (~Siddharth@123.201.22.212) Quit (Ping timeout: 265 seconds)
  • [18:28:01] * sidbh_ (~Siddharth@219.91.177.212) has joined #beagle
  • [18:28:26] * fmotu (~bobb@108.175.206.24) Quit (Remote host closed the connection)
  • [18:30:22] * LordDVG (~LordDVG@unaffiliated/lorddvg) has joined #beagle
  • [18:30:23] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) Quit (Remote host closed the connection)
  • [18:30:59] * fmotu (~bobb@108.175.206.24) has joined #beagle
  • [18:32:05] * jamesaxl (~jamesaxl@41.248.202.202) has joined #beagle
  • [18:32:48] * konradoo77 (~debian@ip-78-30-92-238.free.aero2.net.pl) Quit (Ping timeout: 246 seconds)
  • [18:34:39] * mkad (~error@c-d29b72d5.022-26-73746f3.cust.bredbandsbolaget.se) has joined #beagle
  • [18:34:39] * mkad (~error@c-d29b72d5.022-26-73746f3.cust.bredbandsbolaget.se) Quit (Changing host)
  • [18:34:39] * mkad (~error@unaffiliated/mkad) has joined #beagle
  • [18:42:15] * koleto (~koleto@95.90.212.141) has joined #beagle
  • [18:43:46] * stamina (~stamina@177-211-128-083.dynamic.caiway.nl) Quit (Ping timeout: 255 seconds)
  • [18:44:08] * eFfeM (~frans@c73189.upc-c.chello.nl) Quit (Quit: Leaving.)
  • [18:51:06] * konradoo77 (~debian@ip-93-154-232-206.free.aero2.net.pl) has joined #beagle
  • [19:02:02] * mkad (~error@unaffiliated/mkad) Quit (Ping timeout: 244 seconds)
  • [19:03:22] <ocamlman> hey, can someone help me troubleshoot a PRU/GPIO issue?
  • [19:05:30] * ambro718 (~ambro@gentoo/contributor/ambro718) has joined #beagle
  • [19:05:42] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) Quit (Remote host closed the connection)
  • [19:05:50] <ambro718> Hey, is qemu faster than BBB for compiling?
  • [19:06:07] <Humpelst1lzchen> dep
  • [19:06:09] * Mode-M (~Mode-M@109.125.72.232.dynamic.cablesurf.de) has joined #beagle
  • [19:06:10] <agmlego|skynet> ambro718: Is a chicken faster than a pickle?
  • [19:06:19] <Humpelst1lzchen> depends on your cpu but probably not
  • [19:06:22] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) has joined #beagle
  • [19:06:48] * fmotu (~bobb@108.175.206.24) Quit (Quit: Lost terminal)
  • [19:07:04] <Humpelst1lzchen> I use my tiny arm quad to compile big projects for the BBB
  • [19:07:49] <ambro718> though with emulation I could parallelize it considerably
  • [19:08:13] <ambro718> have multiple VMs building different packages
  • [19:08:35] <rcn-ee> except, qemu doesn't parallelize very well.. so you need one qemu instance pre core. ;)
  • [19:09:20] <ambro718> yes that's what I meant. I'm trying to get NixOS running on BBB and Nix supports this pretty well.
  • [19:09:32] <ambro718> distributed builds that is
  • [19:10:24] <rcn-ee> start with qemu now, but either pick up a wand-quad + sata or any quad core/sata arm configuration.. then switch over when it arrives. ;) it's just faster...
  • [19:10:53] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) Quit (Ping timeout: 265 seconds)
  • [19:11:15] <ambro718> Another question, is it possible to interact with the bootloader at boot time via serial port and specify what to boot (kernel,initrd)?
  • [19:11:29] <ambro718> Further is it possible to make a boot menu?
  • [19:11:53] * luciano_ (~luciano@190.120.53.112) has joined #beagle
  • [19:12:03] <luciano_> Hi , i need help , i have this capes http://cdn.logicsupply.com/media/catalog/product/cache/1/image/bd5fa33d207734c88c51f8ebb17de6c4/b/b/bbb-exp-c-chipsee-7inch-touchscreen.jpg, and i want run a qt application , but the touchscreen doesn't work , because need set variable qws_mouse_proto, , can anyone help me?
  • [19:12:18] <rcn-ee> some of that is possible now... later bb.org images, use a variable in uEnv.txt (uname_r=) to specify which kernel..
  • [19:12:46] <rcn-ee> but we dont' have a "u-boot-grub" bootsplash yet..
  • [19:13:23] * mkad (~error@c-d29b72d5.022-26-73746f3.cust.bredbandsbolaget.se) has joined #beagle
  • [19:13:23] * mkad (~error@c-d29b72d5.022-26-73746f3.cust.bredbandsbolaget.se) Quit (Changing host)
  • [19:13:23] * mkad (~error@unaffiliated/mkad) has joined #beagle
  • [19:13:57] <ambro718> rcn-ee: when you say specify which kernel, you mean one can predefine boot targets (not just kernel also initrd and parameters)?
  • [19:14:43] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) has joined #beagle
  • [19:14:44] <rcn-ee> ambro718, http://elinux.org/Beagleboard:U-boot_partitioning_layout_2.0#uEnv.txt_Rootfs_Partition_.2Fboot.2FuEnv.txt
  • [19:15:21] <smurray> ocamlman: what issue are you seeing?
  • [19:15:29] <ocamlman> I am using the BB-BONE-PRU-01 which uses p9_27 -- the code TODO:\n QBBS TODO, r31, 5 does not loop infinitely as I expect, whether p9_27 is attached to 3.3v or gnd
  • [19:16:00] <ocamlman> smurray, perhaps "uses" is better said "claims exclusive use of in the DTO"
  • [19:17:36] <smurray> ocamlman: just a min, will have to poke around to refresh my memory
  • [19:17:47] <ambro718> rcn-ee: where do I define the boot configurations?
  • [19:17:52] <ocamlman> smurray, thanks! lemme know if i can provide any more information too
  • [19:18:36] <luciano_> anyone have this cape ? http://cdn.logicsupply.com/media/catalog/product/cache/1/image/bd5fa33d207734c88c51f8ebb17de6c4/b/b/bbb-exp-c-chipsee-7inch-touchscreen.jpg ??
  • [19:19:35] <jkridner> calculus: hey, I'll be at SCaLE finally!
  • [19:19:59] <jkridner> luciano_: I've seen it. heard it works pretty well. Saw it at Maker Shed
  • [19:20:43] * mythos (~mythos@unaffiliated/mythos) has joined #beagle
  • [19:21:09] <luciano_> jkridner, i have problem with angstrom and qt
  • [19:21:54] * Akuma (~Akuma@apn-46-169-22-104.dynamic.gprs.plus.pl) Quit (Read error: Connection reset by peer)
  • [19:22:25] <luciano_> jkridner, the variable qws_mouse_proto, don't work, you work with qt?
  • [19:23:50] <ambro718> I took a look at the uEnv for ArchLinux and I'm confused, where is the kernel?
  • [19:23:53] * plaw is now known as vdotplaw
  • [19:24:02] * vdotplaw is now known as maw_plaw
  • [19:24:07] <agmlego|skynet> There is no kernel.
  • [19:24:12] <agmlego|skynet> The kernel is a myth.
  • [19:24:19] <agmlego|skynet> Long live the kernel.'
  • [19:24:42] <ambro718> I copied 3 files to the boot partition, MLO u-boot.imd uEnv.txt
  • [19:25:28] <smurray> ocamlman: have you changed BB-BONE-PRU-01-00A0.dts? the pin is configured as output in the version I'm looking at
  • [19:26:02] * maw_plaw is now known as plaw
  • [19:26:12] <ocamlman> smurray, ah, I have not. That would be an easy fix
  • [19:26:35] * plaw is now known as maw_plaw
  • [19:26:49] * maw_plaw is now known as plaw
  • [19:27:31] <jkridner> luciano_: not really, I've been all Debian for a while. Been helping a couple of people with Qt issues there, but nothing very complex.
  • [19:28:26] * VirG (~VirGin@adsl-76-235-121-110.dsl.pltn13.sbcglobal.net) Quit (Quit: Leaving.)
  • [19:29:39] * jedahan_ (~jedahan@subtle/user/jedahan) has joined #beagle
  • [19:30:18] * jedahan (~jedahan@subtle/user/jedahan) Quit (Read error: Connection reset by peer)
  • [19:31:31] <ocamlman> smurray, I don't see a pre-made dts for p9-27 as an input - do you know of such a thing?
  • [19:32:24] * stamina (~stamina@177-211-128-083.dynamic.caiway.nl) has joined #beaglebone
  • [19:32:28] <smurray> no, but it shouldn't be too bad to edit it and recompile it with dtc
  • [19:32:29] * LordWillO (~LordWillO@173-31-169-165.client.mchsi.com) has joined #beagle
  • [19:33:22] * Crofton (~balister@cable-78.29.240.33.coditel.net) has joined #beagle
  • [19:33:30] <smurray> you want to change the line in the pinctrl part from "0x1a4 0x25" to "0x1a4 0x26", I think
  • [19:34:20] <smurray> it might be "0x1a4 0x06", I'm at work and don't have access to all the docs atm
  • [19:36:02] * mkad (~error@unaffiliated/mkad) Quit (Ping timeout: 272 seconds)
  • [19:37:01] * jedahan (~jedahan@subtle/user/jedahan) has joined #beagle
  • [19:37:32] * jedahan_ (~jedahan@subtle/user/jedahan) Quit (Read error: Connection reset by peer)
  • [19:39:48] <ocamlman> smurray, i'll give it a shot. thanks a bunch!
  • [19:40:29] <smurray> np
  • [19:41:06] * luciano_ (~luciano@190.120.53.112) Quit (Ping timeout: 272 seconds)
  • [19:42:39] * jedahan (~jedahan@subtle/user/jedahan) Quit (Ping timeout: 276 seconds)
  • [19:45:38] * bugzc_ (~bugzc@unaffiliated/bugzc) has joined #beagle
  • [19:48:03] * libregeekingkid_ (~quassel@116.75.34.93) Quit (Ping timeout: 264 seconds)
  • [19:49:00] * ocamlman (~ocamlman@cpe-104-229-169-2.twcny.res.rr.com) Quit (Remote host closed the connection)
  • [19:50:26] * mrjazzcat (~mrjazzcat@c-24-8-176-66.hsd1.co.comcast.net) has joined #beagle
  • [19:51:49] * jedahan (~jedahan@subtle/user/jedahan) has joined #beagle
  • [19:52:51] * konradoo77 (~debian@ip-93-154-232-206.free.aero2.net.pl) Quit (Ping timeout: 264 seconds)
  • [19:53:30] * LordDVG (~LordDVG@unaffiliated/lorddvg) Quit (Remote host closed the connection)
  • [19:54:05] * vagrantc (~vagrant@freegeek/vagrantc) has joined #beagle
  • [19:54:57] * konradoo77 (~debian@ip-37-209-144-180.free.aero2.net.pl) has joined #beagle
  • [19:58:58] * Akuma (~Akuma@apn-46-169-22-104.dynamic.gprs.plus.pl) has joined #beagleboard
  • [19:58:58] * Akuma (~Akuma@apn-46-169-22-104.dynamic.gprs.plus.pl) has joined #beagle
  • [19:59:22] * KiloJuliet (~gplgeek@pdpc/supporter/student/GPLGeek) has joined #beagle
  • [20:01:37] * Akuma (~Akuma@apn-46-169-22-104.dynamic.gprs.plus.pl) Quit (Read error: Connection reset by peer)
  • [20:01:58] * Akuma (~Akuma@apn-46-169-22-104.dynamic.gprs.plus.pl) has joined #beagleboard
  • [20:01:58] * Akuma (~Akuma@apn-46-169-22-104.dynamic.gprs.plus.pl) has joined #beagle
  • [20:02:48] * bizarro_1 (~bizarro_1@226.Red-79-153-177.dynamicIP.rima-tde.net) Quit (Quit: Leaving)
  • [20:06:01] * emeb (~ericb@ip68-104-219-12.ph.ph.cox.net) Quit (Read error: Connection reset by peer)
  • [20:06:42] * ccesario (~ccesario@helpdesk.tecnomega.com.br) Quit (Ping timeout: 276 seconds)
  • [20:07:19] * emeb (~ericb@ip68-104-219-12.ph.ph.cox.net) has joined #beagle
  • [20:09:44] * jedahan (~jedahan@subtle/user/jedahan) Quit (Quit: ZZZzzz…)
  • [20:10:07] * luciano_ (~luciano@190.120.53.112) has joined #beagle
  • [20:13:53] * NulL`` (~bleh1@46.226.188.220) has joined #beagle
  • [20:13:54] * torpor1 (~Adium@194-96-159-208.adsl.highway.telekom.at) Quit (Quit: Leaving.)
  • [20:14:34] * jedahan (~jedahan@subtle/user/jedahan) has joined #beagle
  • [20:15:31] * geekswine (0e8b5206@gateway/web/freenode/ip.14.139.82.6) has joined #beagle
  • [20:15:56] * torpor (~Adium@194-96-159-208.adsl.highway.telekom.at) has joined #beagle
  • [20:16:08] * NulL` (~bleh1@178.16.3.12) Quit (Ping timeout: 265 seconds)
  • [20:18:52] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) has joined #beagle
  • [20:23:36] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) Quit (Ping timeout: 276 seconds)
  • [20:24:48] * gusnan (~gusnan@s213-100-228-162.cust.tele2.se) Quit (Ping timeout: 272 seconds)
  • [20:26:14] * torpor (~Adium@194-96-159-208.adsl.highway.telekom.at) Quit (Quit: Leaving.)
  • [20:26:20] * gusnan (~gusnan@s213-100-228-162.cust.tele2.se) has joined #beagle
  • [20:27:09] * BobCat (~Bob@unaffiliated/bobcat) Quit (Quit: Leaving)
  • [20:27:40] * BobCat (~Bob@unaffiliated/bobcat) has joined #beagle
  • [20:27:44] * NulL` (~bleh1@46.226.191.247) has joined #beagle
  • [20:27:46] * NulL` is now known as NulL```
  • [20:28:38] * Brucie555 (~Bruce@static-50-43-113-18.bvtn.or.frontiernet.net) has joined #beagle
  • [20:30:01] * knob (~knob@76.76.202.243) Quit (Quit: Leaving)
  • [20:30:38] * NulL`` (~bleh1@46.226.188.220) Quit (Ping timeout: 265 seconds)
  • [20:33:32] * kalem (~kalem@unaffiliated/kalem) Quit (Ping timeout: 265 seconds)
  • [20:35:54] * idwer (~irc@unaffiliated/idwer) has joined #beagle
  • [20:36:31] * torpor (~Adium@194-96-159-208.adsl.highway.telekom.at) has joined #beagle
  • [20:36:46] * torpor (~Adium@194-96-159-208.adsl.highway.telekom.at) Quit (Client Quit)
  • [20:38:27] * jedahan_ (~jedahan@subtle/user/jedahan) has joined #beagle
  • [20:38:43] * jedahan (~jedahan@subtle/user/jedahan) Quit (Read error: Connection reset by peer)
  • [20:40:12] * idwer (~irc@unaffiliated/idwer) Quit (Ping timeout: 246 seconds)
  • [20:40:29] * idwer (~irc@unaffiliated/idwer) has joined #beagle
  • [20:41:23] * gusnan (~gusnan@s213-100-228-162.cust.tele2.se) Quit (Ping timeout: 240 seconds)
  • [20:42:38] * Guest54322 (~guest@5ED11658.cm-7-2a.dynamic.ziggo.nl) has joined #beagle
  • [20:43:12] * gusnan (~gusnan@s213-100-228-162.cust.tele2.se) has joined #beagle
  • [20:44:42] * luciano_ (~luciano@190.120.53.112) Quit (Quit: Leaving)
  • [20:46:07] * jedahan_ (~jedahan@subtle/user/jedahan) Quit (Read error: Connection reset by peer)
  • [20:46:10] * florian (~fuchs@Maemo/community/contributor/florian) has joined #beagle
  • [20:46:15] * Starduster_ (~guest@unaffiliated/starduster) Quit (Ping timeout: 264 seconds)
  • [20:46:52] * jedahan (~jedahan@subtle/user/jedahan) has joined #beagle
  • [20:53:59] * eFfeM (~frans@c73189.upc-c.chello.nl) has joined #beagle
  • [20:54:34] * jamesaxl_ (~jamesaxl@41.140.158.145) has joined #beagle
  • [20:54:39] * jamesaxl (~jamesaxl@41.248.202.202) Quit (Ping timeout: 264 seconds)
  • [20:54:39] * konradoo77 (~debian@ip-37-209-144-180.free.aero2.net.pl) Quit (Ping timeout: 264 seconds)
  • [20:55:50] * __butch__ (~Adium@2601:9:4d00:17ae:84ef:8ac4:81e8:7c80) Quit (Ping timeout: 272 seconds)
  • [20:57:48] * konradoo77 (~debian@ip-78-30-112-144.free.aero2.net.pl) has joined #beagle
  • [20:59:28] * webdaford (~daford@ool-457895c1.dyn.optonline.net) Quit (Quit: Leaving)
  • [21:03:03] * jamesaxl_ is now known as jamesaxl
  • [21:04:36] * GusBricker (~GusBricke@CPE-120-149-34-233.oirx2.lon.bigpond.net.au) has joined #beaglebone
  • [21:04:48] * Mode-M (~Mode-M@109.125.72.232.dynamic.cablesurf.de) Quit (Remote host closed the connection)
  • [21:04:56] * yates (~user@71.51.249.81) Quit (Quit: rcirc on GNU Emacs 24.3.1)
  • [21:07:51] * jedahan (~jedahan@subtle/user/jedahan) Quit (Ping timeout: 265 seconds)
  • [21:08:50] * jedahan (~jedahan@static-72-89-169-38.nycmny.fios.verizon.net) has joined #beagle
  • [21:08:54] * Shadyman (~matthew@184.175.20.207) has joined #beagle
  • [21:08:56] * jedahan (~jedahan@static-72-89-169-38.nycmny.fios.verizon.net) Quit (Changing host)
  • [21:08:56] * jedahan (~jedahan@subtle/user/jedahan) has joined #beagle
  • [21:08:56] * Shadyman (~matthew@184.175.20.207) Quit (Changing host)
  • [21:08:56] * Shadyman (~matthew@unaffiliated/shadyman) has joined #beagle
  • [21:14:27] * konradoo77 (~debian@ip-78-30-112-144.free.aero2.net.pl) Quit (Ping timeout: 264 seconds)
  • [21:14:37] * NulL``` (~bleh1@46.226.191.247) Quit (Ping timeout: 265 seconds)
  • [21:17:46] <ds2> hmmm
  • [21:27:55] * Shadyman (~matthew@unaffiliated/shadyman) Quit (Quit: Leaving.)
  • [21:30:29] * jedahan_ (~jedahan@subtle/user/jedahan) has joined #beagle
  • [21:31:49] * jedahan (~jedahan@subtle/user/jedahan) Quit (Read error: Connection reset by peer)
  • [21:32:22] * NulL` (~bleh1@46.226.191.247) has joined #beagle
  • [21:32:27] * uv (~uv@94-21-182-4.pool.digikabel.hu) Quit (Remote host closed the connection)
  • [21:34:17] * jedahan_ (~jedahan@subtle/user/jedahan) Quit (Read error: Connection reset by peer)
  • [21:34:27] * NulL`` (~bleh1@87.254.94.206) has joined #beagle
  • [21:34:48] * jedahan (~jedahan@subtle/user/jedahan) has joined #beagle
  • [21:35:05] * geekswine (0e8b5206@gateway/web/freenode/ip.14.139.82.6) Quit (Quit: Page closed)
  • [21:36:11] * StinkyFinger (~StinkyFin@host-92-19-148-179.as13285.net) has joined #beagle
  • [21:36:11] * StinkyFinger (~StinkyFin@host-92-19-148-179.as13285.net) has joined #beaglebone
  • [21:36:51] * NulL` (~bleh1@46.226.191.247) Quit (Ping timeout: 265 seconds)
  • [21:39:16] * NulL`` (~bleh1@87.254.94.206) Quit (Ping timeout: 265 seconds)
  • [21:48:24] * jedahan (~jedahan@subtle/user/jedahan) Quit (Ping timeout: 272 seconds)
  • [21:52:36] * Akuma (~Akuma@apn-46-169-22-104.dynamic.gprs.plus.pl) Quit (Read error: Connection reset by peer)
  • [21:53:00] * jedahan (~jedahan@subtle/user/jedahan) has joined #beagle
  • [21:56:55] * jedahan_ (~jedahan@subtle/user/jedahan) has joined #beagle
  • [21:57:05] * jedahan (~jedahan@subtle/user/jedahan) Quit (Read error: Connection reset by peer)
  • [21:57:54] * eFfeM (~frans@c73189.upc-c.chello.nl) Quit (Quit: Leaving.)
  • [21:59:32] * Leschveux_ (~quassel@96.127.239.250) has joined #beagle
  • [22:00:17] * FileNotFound (~FileNotFo@net-one.magnetek.net) Quit (Quit: WeeChat 0.4.2)
  • [22:02:58] * Mr_Sheesh (~mr_s@unaffiliated/mr-sheesh/x-0757054) Quit (Disconnected by services)
  • [22:03:08] * Mr_Sheesh_AFK (~mr_s@unaffiliated/mr-sheesh/x-0757054) has joined #beagle
  • [22:03:12] * Mr_Sheesh_AFK is now known as Mr_Sheesh
  • [22:03:23] * dge (~quassel@96.127.239.250) Quit (Ping timeout: 244 seconds)
  • [22:06:39] * florian (~fuchs@Maemo/community/contributor/florian) Quit (Ping timeout: 256 seconds)
  • [22:06:53] * drkfdr (~darkfader@ip3e8346be.speed.planet.nl) has joined #beagle
  • [22:07:04] * Akuma (~Akuma@apn-31-1-130-84.dynamic.gprs.plus.pl) has joined #beagleboard
  • [22:07:04] * Akuma (~Akuma@apn-31-1-130-84.dynamic.gprs.plus.pl) has joined #beagle
  • [22:08:08] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) has joined #beagle
  • [22:11:57] * jedahan_ (~jedahan@subtle/user/jedahan) Quit (Ping timeout: 245 seconds)
  • [22:13:06] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) Quit (Ping timeout: 272 seconds)
  • [22:13:11] * GusBricker (~GusBricke@CPE-120-149-34-233.oirx2.lon.bigpond.net.au) Quit (Remote host closed the connection)
  • [22:13:35] * jedahan (~jedahan@subtle/user/jedahan) has joined #beagle
  • [22:13:55] * Guest6545 (archaic@gateway/shell/layerbnc/x-bzfavyraixiknriu) has left #beagle
  • [22:17:19] * dlan (~dennis@gentoo/developer/dlan) Quit (Ping timeout: 245 seconds)
  • [22:17:44] * jedahan (~jedahan@subtle/user/jedahan) Quit (Ping timeout: 245 seconds)
  • [22:19:05] * dlan (~dennis@gentoo/developer/dlan) has joined #beagle
  • [22:20:25] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) Quit (Remote host closed the connection)
  • [22:21:01] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) has joined #beagle
  • [22:23:52] * dlan (~dennis@gentoo/developer/dlan) Quit (Ping timeout: 272 seconds)
  • [22:25:22] * FlyingWookie (~FlyingWoo@205-200-65-5.static.mtsallstream.net) Quit (Quit: Leaving)
  • [22:25:51] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) Quit (Ping timeout: 264 seconds)
  • [22:25:57] * nighty^ (~nighty@hokuriku.rural-networks.com) Quit (Quit: Disappears in a puff of smoke)
  • [22:28:53] * mrpackethead (~mrpacketh@147.200.109.203.static.cust.vf.net.nz) has joined #beagle
  • [22:29:49] * mythos (~mythos@unaffiliated/mythos) Quit (Ping timeout: 264 seconds)
  • [22:30:38] * dlan_ (~dennis@gentoo/developer/dlan) has joined #beagle
  • [22:35:20] * dlan_ (~dennis@gentoo/developer/dlan) Quit (Remote host closed the connection)
  • [22:35:40] * rob_w (~rob@unaffiliated/rob-w/x-1112029) Quit (Read error: Connection reset by peer)
  • [22:40:02] * dlan_ (~dennis@gentoo/developer/dlan) has joined #beagle
  • [22:41:07] * dlan_ (~dennis@gentoo/developer/dlan) Quit (Remote host closed the connection)
  • [22:41:14] * dgerlach (dave@nat/ti/x-bqpxwnbogrjuadoj) Quit (Quit: Leaving.)
  • [22:41:28] * dlan_ (~dennis@gentoo/developer/dlan) has joined #beagle
  • [22:42:22] * StinkyFinger (~StinkyFin@host-92-19-148-179.as13285.net) Quit (Remote host closed the connection)
  • [22:43:06] * mythos (~mythos@unaffiliated/mythos) has joined #beagle
  • [22:51:36] * jedahan (~jedahan@subtle/user/jedahan) has joined #beagle
  • [22:53:17] * nicksydney (~quassel@43.230.dsl.syd.iprimus.net.au) Quit (Quit: No Ping reply in 180 seconds.)
  • [22:53:44] * nicksydney (~quassel@43.230.dsl.syd.iprimus.net.au) has joined #beagle
  • [22:55:14] * BobCat (~Bob@unaffiliated/bobcat) Quit (Ping timeout: 245 seconds)
  • [23:01:01] * bfederau (~quassel@service.basyskom.com) Quit (Read error: Connection reset by peer)
  • [23:01:18] * bfederau (~quassel@service.basyskom.com) has joined #beagle
  • [23:12:57] * __butch__ (~Adium@2601:9:4d00:17ae:84b6:f9bb:ac23:1906) has joined #beagle
  • [23:14:26] * stamina (~stamina@177-211-128-083.dynamic.caiway.nl) Quit (Remote host closed the connection)
  • [23:18:17] * BobKitten (~Bob@unaffiliated/bobcat) has joined #beagle
  • [23:21:21] * rcn-ee (~voodoo@64.77.213.245) Quit (Remote host closed the connection)
  • [23:22:11] * jedahan (~jedahan@subtle/user/jedahan) Quit ()
  • [23:28:38] * jedahan (~jedahan@subtle/user/jedahan) has joined #beagle
  • [23:31:09] * thurgood_ (~thurgood@67-198-113-218.static.grandenetworks.net) Quit (Remote host closed the connection)
  • [23:31:54] * jonmasters (~jcm@edison.jonmasters.org) Quit (Ping timeout: 245 seconds)
  • [23:34:50] * jkridner (~jkridner@pdpc/supporter/active/jkridner) Quit (Ping timeout: 244 seconds)
  • [23:40:01] * BobKitten is now known as BobCat
  • [23:40:58] * jonmasters (~jcm@edison.jonmasters.org) has joined #beagle
  • [23:42:28] * lyakh_ (~lyakh@xdsl-87-79-43-27.netcologne.de) Quit (Quit: thanks, bye)
  • [23:53:18] * Guest54322 (~guest@5ED11658.cm-7-2a.dynamic.ziggo.nl) Quit ()
  • [23:56:50] * vmayoral (~vmayoral@12.Red-79-154-33.dynamicIP.rima-tde.net) has joined #beagle
  • [23:57:32] * dj_pi (~dj@c-107-5-228-80.hsd1.mi.comcast.net) has joined #beagle