Previous day | Jump to hour: 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | Next day

Seconds: Show Hide | Joins: Show Hide | View raw
Font: Serif Sans-Serif Monospace | Size: Small Medium Large

Click in the nick column to highlight everything a person has said.
The Logo icon identifies that the person is a core developer (has commit access).

#rockbox log for 2011-02-16

00:00:26kugeldoesn't mount tell you?
00:01:02thomasjfoxI don't have it yet :)
00:01:04 Quit user890104 ()
00:01:10 Join user890104 [0] (~Venci@6bez10.info)
00:01:16Torneit's /home/user/MyDocs
00:01:23thomasjfoxThat's the internal one
00:01:31kugelthomasjfox: mount is not installed by default?
00:01:35Torneoh. that's, er
00:01:40thomasjfoxlinuxstb: Did you get your SD card for the n900 yet?
00:01:46kugelcan linux even work without mount utility?
00:01:55thomasjfoxkugel: I meant the an additional, extra SD card
00:02:01thomasjfoxmount -is- installed :o)
00:02:08kugelah, now I understand
00:02:23 Join JdGordon| [0] (~jonno@vl10.gw.ok-labs.com)
00:02:23 Quit JdGordon| (Changing host)
00:02:23 Join JdGordon| [0] (~jonno@rockbox/developer/JdGordon)
00:02:25kugelno hint in fstab?
00:02:41kugelperhaps gevaerts or amiconn know?
00:03:06 Quit greyback_ (Ping timeout: 250 seconds)
00:03:36Torneit's /media/mmc1 i think
00:04:07Tornepossibly mmc2 etc if it has more than one partition
00:04:26Torneyou can probably assume that anything under /media is a mountpoint for some kind of storage
00:04:33Torneeither the uSD slot or a USB device attached via host mode
00:04:44Tornesince it works the same as hal/etc in that respect
00:06:01JdGordon|the android service and activity should be able to be restarted seperately...
00:06:21JdGordon|right now there is no sure way for some settings to take effect because the service cant be restarted
00:06:28thomasjfoxTorne: Thanks, that's the correct location
00:07:09kugelJdGordon1: they can be started separately...in theory
00:07:11 Join stripwax [0] (~Miranda@87-194-34-169.bethere.co.uk)
00:07:25JdGordon|in theory sure, in practice it aint so easy
00:07:47kugelin practice you don't start a service without an activity
00:07:50JdGordon|it can be added using the shutdown menu item (charcell only iirc)
00:08:56JdGordon|Buschel: you wont save any binsize by removing one tag which just returns the id3->foo value from the wps code... (it is all so generic that you *might* save <100 bytes)
00:16:33 Join greyback_ [0] (~gerry@78-80-200-213.tmcz.cz)
00:17:25 Quit MethoS- (Read error: Connection reset by peer)
00:22:45 Join Barahir [0] (~jonathan@frnk-4d0084ab.pool.mediaWays.net)
00:23:37 Quit pamaury (Remote host closed the connection)
00:30:11*thomasjfox grumbles because rockbox doesn't look up a filename selected via "files" in the database and therefore won't add it to the recently played tracks list
00:31:18pixelmait's not the "gather runtime data not enabled" mistake?
00:31:40pixelmaand which "files" in the database?
00:32:29thomasjfoxpixelma: It is enabled and working if I select a track via the database
00:32:41linuxstbthomasjfox: Yes, I have some microSD cards now.
00:33:03thomasjfoxpixelma: Browsing by folder doesn't check the database if the filename is known (just a guess though)
00:35:20stripwaxthomasjfox - do you mean "browsing by files INSTEAD of browsing in database" ?
00:35:20sideralthomasjfox: It actually should
00:35:35thomasjfoxstripwax: Yes
00:36:04thomasjfoxsideral: Do you know where that lookup function is? Then I could add debug printfs in there
00:36:40 Quit stripwax (Quit: http://miranda-im.org)
00:37:17sideralthomasjfox: AFAICS, the lookup for the runtimedb happens in tagtree_buffer_event, and I believe the lookup function is tagcache_find_index
00:40:46 Join kronflux [0] (~kronflux@142.68.148.70)
00:41:17thomasjfoxsideral: Thanks. I throw some printfs in there
00:41:38 Quit mystica555_ (Read error: Connection reset by peer)
00:42:52 Quit greyback_ (Quit: Ex-Chat)
00:44:07thomasjfoxsideral, kugel: Found it: I access my files via a symlink and so the path in tagcache doesn't match
00:44:42sideralaha, nice find
00:45:31kugelyea, it adds the real path to the db
00:45:50siderallooks like tagcache_find_index (or some higher-level function) should resolve symlinks before doing the lookup
00:46:53thomasjfoxyeah, we just need a realpath() in there for #ifdef APPLICATION
00:47:56thomasjfoxtagcache_find_index() looks like a nice place for it
00:52:08thomasjfoxfind_entry_ram() / find_entry_disk() looks better though as they get called from multiple places
00:53:29sideralthomasjfox: You could also consider doing the realpath early, when the id3->path gets filled in
00:54:08thomasjfoxsideral: There are other call paths using the "lower level" lookup functions
00:54:27sideralOK
00:54:40thomasjfoxsideral: I'll check your idea
01:00
01:01:37kugelthomasjfox: notice the other realpath call, how broken it actually is
01:07:15***Saving seen data "./dancer.seen"
01:13:10 Quit dfkt (Quit: -= SysReset 2.53=- Sic gorgiamus allos subjectatos nunc.)
01:13:38 Quit sideral (Ping timeout: 246 seconds)
01:19:09thomasjfoxkugel: You mean the syntax of realpath()?
01:19:25kugelthere's a comment about it
01:19:45thomasjfoxsideral: bufopen() seems to work good. I'll put that change in FS as it's too deep inside rockbox to commit it directly
01:21:46thomasjfoxkugel: Oh yeah, I was wondering why "abs_target" is a "static char[]" instead of a plain "char[]"?
01:24:41kugelgit log :)
01:25:42kugelit's static because PATH_MAX is pretty bug for our stacks
01:27:39thomasjfoxkugel: thanks
01:28:08kugelbig*
01:30:20 Quit kugel (Remote host closed the connection)
01:30:50 Quit telliott (Quit: Leaving)
01:34:56 Quit Topy44 (Ping timeout: 240 seconds)
01:36:57 Join Keripo [0] (~Keripo@eng398.wireless-resnet.upenn.edu)
01:38:33 Join Topy44 [0] (~Topy44@89.204.137.232)
01:43:20 Quit leavittx (Ping timeout: 264 seconds)
01:45:46 Quit Topy44 (Ping timeout: 255 seconds)
01:55:04 Quit liar (Remote host closed the connection)
02:00
02:01:52CIA-70New commit by thomasjfox (r29317): RaaA: Fix tagcache filename lookups for paths containing symbolic links
02:05:43CIA-70r29317 build result: All green
02:13:51 Join BHSPitMonkey [0] (~stephen@unaffiliated/bhspitmonkey)
02:16:23 Quit mudd1 (Ping timeout: 276 seconds)
02:19:45 Quit user890104 ()
02:30:07 Quit thomasjfox (Remote host closed the connection)
02:38:57 Quit timccc (Remote host closed the connection)
02:44:46 Join timccc [0] (~timccc@112.166.15.141)
02:55:04 Quit DerPapst (Quit: Leaving.)
02:57:34 Join webguest79 [0] (~0c59322e@giant.haxx.se)
02:58:12 Quit webguest79 (Client Quit)
02:59:06 Quit kronflux (Quit: Leaving)
03:00
03:07:17***Saving seen data "./dancer.seen"
03:08:34 Quit saratoga (Quit: Page closed)
03:15:53 Quit thegeek (Read error: Connection reset by peer)
03:18:32 Nick guymann_ is now known as guymann (~charles@66-159-145-2.adsl.snet.net)
03:46:02 Join Llorean [0] (~DarkkOne@rockbox/user/Llorean)
03:48:51 Join Topy44 [0] (~Topy44@89.204.137.232)
04:00
04:01:09 Join Barahir_ [0] (~jonathan@frnk-590f560c.pool.mediaWays.net)
04:04:33 Quit Barahir (Ping timeout: 260 seconds)
04:06:09 Join T44 [0] (~Topy44@89.204.137.232)
04:09:29 Quit Topy44 (Ping timeout: 272 seconds)
04:16:34 Quit Keripo (Ping timeout: 276 seconds)
04:19:37 Join Keripo [0] (~Keripo@eng398.wireless-resnet.upenn.edu)
04:22:04 Quit T44 (Ping timeout: 240 seconds)
04:22:38 Join T44 [0] (~Topy44@89.204.137.232)
04:26:39 Quit T44 (Read error: Connection reset by peer)
04:27:04 Join advcomp2019_ [0] (~advcomp20@97-114-234-88.sxcy.qwest.net)
04:27:04 Quit advcomp2019_ (Changing host)
04:27:05 Join advcomp2019_ [0] (~advcomp20@unaffiliated/advcomp2019)
04:27:08 Join T44 [0] (~Topy44@89.204.137.232)
04:29:03 Quit advcomp2019 (Ping timeout: 260 seconds)
04:35:14 Join Topy [0] (~Topy44@89.204.137.232)
04:35:16 Quit T44 (Read error: Connection reset by peer)
04:40:10 Quit amiconn (Disconnected by services)
04:40:11 Join amiconn_ [0] (quassel@rockbox/developer/amiconn)
04:40:11 Quit pixelma (Disconnected by services)
04:40:12 Join pixelma_ [0] (quassel@rockbox/staff/pixelma)
04:40:27 Nick pixelma_ is now known as pixelma (quassel@rockbox/staff/pixelma)
04:40:28 Nick amiconn_ is now known as amiconn (quassel@rockbox/developer/amiconn)
04:44:52 Quit Topy (Ping timeout: 240 seconds)
04:47:52 Join Topy [0] (~Topy44@89.204.137.232)
04:57:18 Join enthdegree [0] (~enthdegre@cpe-024-211-171-023.nc.res.rr.com)
04:57:39enthdegreeti-83 emu plugin is progressing nicely, I need more time to work on it though
05:00
05:02:02 Quit Barahir_ (Ping timeout: 250 seconds)
05:02:16 Quit tchan (Read error: Connection reset by peer)
05:03:06 Join tchan [0] (~tchan@lunar-linux/developer/tchan)
05:07:21***Saving seen data "./dancer.seen"
05:07:24 Join Topy44 [0] (~Topy44@89.204.137.232)
05:07:44 Quit Topy (Read error: Connection reset by peer)
05:14:11 Quit Topy44 (Read error: Connection reset by peer)
05:17:27 Join Topy44 [0] (~Topy44@89.204.137.232)
05:22:25 Quit Topy44 (Read error: Connection reset by peer)
05:23:50 Join Topy44 [0] (~Topy44@89.204.137.232)
05:32:07 Join Rob2223 [0] (~Miranda@p4FFF2AAD.dip.t-dialin.net)
05:36:31 Quit Rob2222 (Ping timeout: 276 seconds)
05:38:12 Quit Horschti (Quit: Verlassend)
05:44:06 Join T44 [0] (~Topy44@89.204.137.232)
05:44:28 Quit Topy44 (Ping timeout: 246 seconds)
05:46:05 Join L-Strife89 [0] (~Strife89@168.16.226.187)
05:49:33 Quit T44 (Ping timeout: 272 seconds)
05:55:23 Join T44 [0] (~Topy44@89.204.137.232)
06:00
06:03:01 Quit Keripo (Read error: Connection reset by peer)
06:03:49 Quit T44 (Read error: Connection reset by peer)
06:04:19 Join T44 [0] (~Topy44@89.204.137.232)
06:06:17 Quit antil33t ()
06:09:39 Quit linuxguy4 (Ping timeout: 250 seconds)
06:11:28 Join linuxguy3 [0] (~timj@adsl-75-57-175-71.dsl.emhril.sbcglobal.net)
06:14:05 Quit elcan (Read error: Connection reset by peer)
06:15:25 Join Topy [0] (~Topy44@89.204.137.232)
06:17:41 Quit T44 (Ping timeout: 240 seconds)
06:22:39 Quit L-Strife89 (Disconnected by services)
06:22:46 Join Strife1989 [0] (~Strife89@168.16.236.98)
06:23:06 Nick Strife1989 is now known as L-Strife89 (~Strife89@168.16.236.98)
06:24:05 Quit Topy (Ping timeout: 240 seconds)
06:26:15 Join Topy44 [0] (~Topy44@89.204.137.232)
06:27:39 Quit parafin (Ping timeout: 276 seconds)
06:29:25 Join T44 [0] (~Topy44@89.204.137.232)
06:30:34 Quit Topy44 (Read error: Connection reset by peer)
06:36:05 Quit T44 (Ping timeout: 240 seconds)
06:37:05 Join T44 [0] (~Topy44@89.204.137.232)
06:42:05 Quit T44 (Ping timeout: 240 seconds)
06:43:55 Join T44 [0] (~Topy44@89.204.137.232)
06:45:33 Join elcan [0] (user36@pr0.us)
06:45:43 Join Keripo [0] (~Keripo@eng248.wireless-resnet.upenn.edu)
06:47:35 Quit T44 (Read error: Connection reset by peer)
06:48:52 Join Topy44 [0] (~Topy44@89.204.137.232)
06:50:25 Quit [Saint] (Disconnected by services)
06:50:27 Join S_a_i_n_t [0] (S_a_i_n_t@203.184.4.12)
06:59:52 Quit Topy44 (Ping timeout: 272 seconds)
07:00
07:01:09 Join Barahir [0] (~jonathan@frnk-590fcbb0.pool.mediaWays.net)
07:02:02 Join Topy44 [0] (~Topy44@89.204.137.232)
07:03:58 Nick Loto is now known as Loto_ (~nfs@xbmc/user/Loto)
07:04:09 Join T44 [0] (~Topy44@89.204.137.232)
07:05:13 Quit Topy44 (Read error: Connection reset by peer)
07:07:22***Saving seen data "./dancer.seen"
07:09:26 Quit panni_ (Read error: Connection reset by peer)
07:16:11 Quit T44 (Read error: Connection reset by peer)
07:22:17 Quit Keripo (Quit: Leaving.)
07:31:10 Join webguest77 [0] (~478a35bc@giant.haxx.se)
07:31:23 Quit JdGordon| (Quit: leaving)
07:31:51 Quit webguest77 (Client Quit)
07:35:33 Quit L-Strife89 (Ping timeout: 240 seconds)
07:39:14 Join Buschel [0] (~chatzilla@p54A3A390.dip.t-dialin.net)
07:50:11 Join antil33t [0] (antil33t@124-197-51-80.callplus.net.nz)
08:00
08:02:00 Quit Buschel (Quit: ChatZilla 0.9.86 [Firefox 3.6.13/20101203075014])
08:17:43 Join leavittx [0] (~leavittx@89.221.199.187)
08:26:02 Join parafin [0] (parafin@paraf.in)
08:26:36 Join B4gder [0] (~danielx@2a00:1a28:1200:9::2)
08:26:36 Quit B4gder (Changing host)
08:26:36 Join B4gder [0] (~danielx@rockbox/developer/bagder)
08:35:32 Quit milk (Quit: baaaiiii)
08:41:29 Join LinusN [0] (~linus@rockbox/developer/LinusN)
08:50:03 Join esperegu [0] (~quassel@145.116.15.244)
09:00
09:00:45 Join Guest59032 [0] (~bjst@giant.haxx.se)
09:00:45 Quit Guest59032 (Changing host)
09:00:45 Join Guest59032 [0] (~bjst@rockbox/developer/Zagor)
09:00:57 Nick Guest59032 is now known as Zagor (~bjst@rockbox/developer/Zagor)
09:07:24***Saving seen data "./dancer.seen"
09:21:30 Join sideral [0] (~sideral@213.165.85.248)
09:21:31 Quit sideral (Changing host)
09:21:31 Join sideral [0] (~sideral@rockbox/developer/sideral)
09:33:27*sideral pings Saint
09:35:54 Join pamaury [0] (~quassel@dhcp-128-95.residence.ens-lyon.fr)
09:35:55 Quit pamaury (Changing host)
09:35:55 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
09:36:41 Join mudd1 [0] (~cmertes@ip-78-94-203-49.unitymediagroup.de)
09:39:06 Join kugel [0] (~kugel@rockbox/developer/kugel)
09:41:18BRi7Xhowdy
09:53:09 Quit BHSPitMonkey (Read error: Connection reset by peer)
09:53:48 Quit sideral (Quit: Leaving.)
09:59:02 Quit sasquatch (Quit: WeeChat 0.3.2)
09:59:26 Join sasquatch [0] (~username@p4FF2CD3E.dip.t-dialin.net)
09:59:33 Join n1s [0] (~n1s@sb-fw.bmc.uu.se)
09:59:34 Quit n1s (Changing host)
09:59:34 Join n1s [0] (~n1s@rockbox/developer/n1s)
10:00
10:00:30 Quit pamaury (Ping timeout: 240 seconds)
10:01:43 Join ender` [0] (krneki@foo.eternallybored.org)
10:21:33 Join DerPapst [0] (~Alexander@p4FE8ED8E.dip.t-dialin.net)
10:24:05 Quit kugel (Ping timeout: 264 seconds)
10:29:35 Part Zagor
10:30:32 Join Zagor [0] (~bjst@rockbox/developer/Zagor)
10:41:44 Join kugel [0] (~kugel@rockbox/developer/kugel)
10:51:54 Quit DerPapst (Quit: Leaving.)
10:57:13 Join Topy44 [0] (~Topy44@89.204.153.180)
11:00
11:07:28***Saving seen data "./dancer.seen"
11:18:28 Join DerPapst [0] (~Alexander@dslb-188-107-168-039.pools.arcor-ip.net)
11:22:22 Join TheSeven [0] (~TheSeven@rockbox/developer/TheSeven)
11:47:54 Join Kitr88 [0] (~Kitarist@BSN-182-45-225.dial-up.dsl.siol.net)
11:51:42 Quit Kitar|st (Ping timeout: 264 seconds)
11:52:54 Quit Kitr88 (Ping timeout: 264 seconds)
11:57:50 Join Kitar|st [0] (Kitarist@BSN-182-114-125.dial-up.dsl.siol.net)
11:58:29 Join einhirn [0] (~Miranda@bsod.rz.tu-clausthal.de)
12:00
12:17:09JdGordon1has therebeen any word on the RSB deliberations? or are we going to get an answer when we get one?
12:17:25gevaertsthe latter
12:17:43JdGordon1I mean, it feels like it will just go away without any word from anyone after some time
12:18:05gevaertsThe only thing we *can* say is "We're discussing things"
12:18:15gevaertsAnd I'm not sure if that's very useful
12:19:13JdGordon1its better than "we were discussing things and got nowhere, so are leaving it in the hope everyone forgets we were"
12:19:29*JdGordon1 really just wants to say "that was absolutly the wrong descision" already
12:20:30gevaertsWell, technically I'm not sure we actually have to tell anything to anyone but whoever contacted us in the first place :)
12:20:44 Quit kugel (Remote host closed the connection)
12:21:22gevaertsBut while the RSB can definitely decide to not decide, I don't think it can decide to not reply
12:22:41 Quit Suit_Of_Sables (Ping timeout: 240 seconds)
12:23:11gevaertsI'd like to ask for some patience though. We've never done this before, we have to learn things as we go along
12:27:00 Join MethoS- [0] (~clemens@134.102.106.250)
12:32:50 Join robin0800 [0] (~robin0800@cpc2-brig8-0-0-cust964.3-3.cable.virginmedia.com)
12:34:09 Join Suit_Of_Sables [0] (~ennui@c-71-232-78-65.hsd1.ma.comcast.net)
12:34:09 Quit robin0800 (Client Quit)
12:34:30 Join robin0800 [0] (~robin0800@cpc2-brig8-0-0-cust964.3-3.cable.virginmedia.com)
12:45:50 Join Jerom [0] (~jerome@79.132.59.245)
13:00
13:00:19ZagorI am updating the rockbox.org server. Some services (including cgi-irc) may be interrupted.
13:05:03 Quit Jerom (Quit: Leaving.)
13:07:32***Saving seen data "./dancer.seen"
13:23:09 Join Keripo [0] (~Keripo@eng294.wireless-resnet.upenn.edu)
13:24:14 Quit Keripo (Client Quit)
13:30:23 Join kevku [0] (~kevku@2001:7d0:0:f9af:feed:feed:feed:feed)
13:40:27ZagorUpdate is now completed
13:45:50 Quit BRi7X (Read error: Connection reset by peer)
13:52:13 Join ajb_oe [0] (~user@cbnluk-gw0.cambridgebroadband.com)
13:52:40 Part ajb_oe
14:00
14:00:49 Join Keripo [0] (~Keripo@eng294.wireless-resnet.upenn.edu)
14:15:44 Quit robin0800 (Remote host closed the connection)
14:16:11 Quit S_a_i_n_t (Quit: I'm only going to Heaven if it feels like Hell, I'm only going to Heaven if it tastes like caramel...)
14:21:22 Join [Saint] [0] (S_a_i_n_t@203.184.0.198)
14:25:29 Join LambdaCalculus37 [0] (~LambdaCal@rockbox/staff/LambdaCalculus37)
14:25:49LambdaCalculus37bluebrother: Ping
14:28:55 Quit [Saint] (Ping timeout: 272 seconds)
14:30:19 Join TheLemonMan [0] (~lem0n@151.62.177.98)
14:32:13 Join [Saint] [0] (S_a_i_n_t@203.184.0.198)
14:34:24 Join robin0800 [0] (~robin0800@cpc2-brig8-0-0-cust964.3-3.cable.virginmedia.com)
14:36:15 Quit robin0800 (Client Quit)
14:43:02 Join webguest61 [0] (www-data@giant.haxx.se)
14:43:37 Part LinusN
14:43:43 Quit webguest61 (Client Quit)
14:50:23 Join webguest116 [0] (www-data@giant.haxx.se)
14:50:24 Quit Keripo (Quit: Leaving.)
14:50:31 Quit antil33t (Read error: Connection reset by peer)
14:50:41 Join antil33t [0] (antil33t@124-197-51-80.callplus.net.nz)
14:57:29 Quit webguest116 (Quit: CGI:IRC)
14:59:02 Join komputes [0] (~komputes@ubuntu/member/komputes)
15:00
15:00:37 Join dfkt [0] (dfkt@unaffiliated/dfkt)
15:03:27 Quit antil33t (Read error: Connection reset by peer)
15:03:41 Join antil33t [0] (antil33t@124-197-51-80.callplus.net.nz)
15:06:01 Quit mc2739 (Quit: leaving)
15:07:35***Saving seen data "./dancer.seen"
15:08:02 Quit LambdaCalculus37 (Remote host closed the connection)
15:10:19 Join LambdaCalculus37 [0] (~LambdaCal@rockbox/staff/LambdaCalculus37)
15:12:10 Join mc2739 [0] (~mc2739@rockbox/developer/mc2739)
15:38:37 Join kugel [0] (~kugel@g231226084.adsl.alicedsl.de)
15:38:37 Quit kugel (Changing host)
15:38:37 Join kugel [0] (~kugel@rockbox/developer/kugel)
15:45:20 Quit LambdaCalculus37 (Remote host closed the connection)
15:47:09 Join LambdaCalculus37 [0] (~LambdaCal@rockbox/staff/LambdaCalculus37)
15:49:23 Quit mudd1 (Ping timeout: 276 seconds)
15:53:53 Quit mc2739 (Quit: leaving)
15:54:50 Join mc2739 [0] (~mc2739@rockbox/developer/mc2739)
15:55:39 Join {phoenix} [0] (~dirk@p57AA731E.dip.t-dialin.net)
15:59:25 Join mudd1 [0] (~cmertes@ip-78-94-203-49.unitymediagroup.de)
16:00
16:13:07 Quit TheLemonMan (Quit: free(me))
16:23:52 Quit eGen_ (Quit: ... gettin' screew my wife ....)
16:24:29 Join eGen_ [0] (generat0r@gate.mmdecin.cz)
16:27:05 Quit eGen_ (Read error: Connection reset by peer)
16:27:45 Join eGen_ [0] (generat0r@gate.mmdecin.cz)
16:28:58 Quit bzed (Remote host closed the connection)
16:29:06 Join bzed [0] (~bzed@devel.recluse.de)
16:40:29 Quit blast007 (Quit: When the pin is pulled, Mr. Grenade is not our friend)
16:40:38 Join evilnick [0] (18bcf602@rockbox/staff/evilnick)
16:44:26bluebroth3rLambdaCalculus37: pong
16:45:38 Join panni_ [0] (hannes@ip-178-203-73-7.unitymediagroup.de)
16:48:36LambdaCalculus37bluebroth3r: Can you roll me a Mac build of Rockbox Utility? I'm having a spot of bad luck rolling an SVN build, and I want to see if I can install Rockbox on the GoGear models with it.
16:49:52 Join leavittx_ [0] (~lev@89.221.199.187)
16:50:46LambdaCalculus37I also need to add in support for installation on the SA9200.
16:53:13 Quit B4gder (Remote host closed the connection)
16:54:11 Join toffe82 [0] (~chatzilla@maf.wirelesstcp.net)
16:55:38bluebroth3rLambdaCalculus37: sure.
16:55:54LambdaCalculus37Thanks!
16:56:30LambdaCalculus37I just need the GoGears enabled for installation.
16:56:52LambdaCalculus37If it works, I'll enable them in SVN.
16:57:06 Part Zagor
16:57:54 Quit leavittx_ (Ping timeout: 255 seconds)
16:59:34bluebroth3rLambdaCalculus37: hmm, there is no support for the SA9200 in yet afaics
17:00
17:00:23LambdaCalculus37bluebroth3r: Yes, I've got some work for that in my local trunk.
17:00:49LambdaCalculus37I did add the HDD models in, though. That's what I need enabled.
17:02:36bluebroth3rthe existing GoGear models are only disabled, you can enable them via the configuration dialog
17:02:43 Join sideral [0] (~sideral@rockbox/developer/sideral)
17:04:41 Join sideral1 [0] (~sideral@213.165.85.248)
17:04:41 Quit sideral (Disconnected by services)
17:04:42 Quit sideral1 (Changing host)
17:04:42 Join sideral1 [0] (~sideral@rockbox/developer/sideral)
17:05:52 Quit LambdaCalculus37 (Remote host closed the connection)
17:07:38***Saving seen data "./dancer.seen"
17:10:05 Quit sideral1 (Remote host closed the connection)
17:10:40 Join sideral [0] (~sideral@213.165.85.248)
17:10:40 Quit sideral (Changing host)
17:10:40 Join sideral [0] (~sideral@rockbox/developer/sideral)
17:13:36 Join leavittx_ [0] (~lev@89.221.199.187)
17:18:39bluebroth3rLambdaCalculus37: (for the logs): updated, find it at the usual place.
17:20:20 Quit sideral (Remote host closed the connection)
17:21:06 Join sideral [0] (~sideral@213.165.85.248)
17:21:06 Quit sideral (Changing host)
17:21:06 Join sideral [0] (~sideral@rockbox/developer/sideral)
17:24:46 Join benedikt93 [0] (~benedikt9@unaffiliated/benedikt93)
17:25:03 Quit kugel (Remote host closed the connection)
17:35:10 Join pamaury [0] (~quassel@dhcp-128-95.residence.ens-lyon.fr)
17:35:10 Quit pamaury (Changing host)
17:35:10 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
17:35:47 Join kugel [0] (~kugel@g231226084.adsl.alicedsl.de)
17:35:48 Quit kugel (Changing host)
17:35:48 Join kugel [0] (~kugel@rockbox/developer/kugel)
17:39:06 Join domonoky [0] (~Domonoky@rockbox/developer/domonoky)
17:42:31 Quit kugel (Remote host closed the connection)
17:51:25 Join kugel [0] (~kugel@g231226084.adsl.alicedsl.de)
17:51:25 Quit kugel (Changing host)
17:51:25 Join kugel [0] (~kugel@rockbox/developer/kugel)
18:00
18:08:35 Quit kugel (Quit: leaving)
18:08:43 Join kugel [0] (~kugel@g231226084.adsl.alicedsl.de)
18:08:49 Quit kugel (Changing host)
18:08:49 Join kugel [0] (~kugel@rockbox/developer/kugel)
18:20:59 Join esperegu_ [0] (~quassel@145.116.10.163)
18:21:31 Quit esperegu (Ping timeout: 260 seconds)
18:21:32 Quit leavittx (Ping timeout: 240 seconds)
18:24:50 Join TheLemonMan [0] (~lem0n@151.62.177.98)
18:30:04 Quit leavittx_ (Ping timeout: 276 seconds)
18:30:10 Quit DerPapst (Quit: Leaving.)
18:32:50 Join Jerom [0] (~jerome@79.132.59.245)
18:36:16 Join leavittx [0] (~leavittx@89.221.199.187)
18:36:34 Quit antil33t (Read error: Connection reset by peer)
18:36:43 Join antil33t [0] (antil33t@124-197-51-80.callplus.net.nz)
18:45:54 Join thomasjfox [0] (~thomasjfo@dslb-088-067-051-171.pools.arcor-ip.net)
18:46:20 Quit bluefoxx (Quit: ERROR:::UNCAUGHT EXCEPTION AT 0X0F023B29:::ATIKMPAG.SYS:::DESTROYING CLIENT:::ABORTING ALL PROCESSES)
18:49:36 Join robin0800 [0] (~robin0800@cpc2-brig8-0-0-cust964.3-3.cable.virginmedia.com)
18:53:15 Join bluefoxx [0] (fuzzylomba@S0106485b3917092d.vs.shawcable.net)
18:53:36 Quit robin0800 (Client Quit)
18:53:52 Join robin0800 [0] (~robin0800@cpc2-brig8-0-0-cust964.3-3.cable.virginmedia.com)
18:55:50 Join TheSphinX^ [0] (~cold@p5B323BC4.dip.t-dialin.net)
18:56:44 Quit sideral (Quit: Leaving.)
18:59:03CIA-70New commit by thomasjfox (r29318): No need to cast away const. Thanks to sideral
19:00
19:01:35 Join Horscht [0] (~Horscht@p5DD57543.dip.t-dialin.net)
19:01:36 Quit Horscht (Changing host)
19:01:36 Join Horscht [0] (~Horscht@xbmc/user/horscht)
19:02:55 Join Sochiro [0] (~Sochiro@194.90.222.165)
19:03:27CIA-70r29318 build result: All green
19:05:10 Join Lear [0] (chatzilla@rockbox/developer/lear)
19:06:59CIA-70New commit by learman (r29319): FS #11933: Check for external album art if embedded album art fails to load.
19:07:40***Saving seen data "./dancer.seen"
19:09:53kugelthomasjfox: I wonder if you didn't read the readlink comment carefully enough?
19:10:44 Quit Sochiro (Read error: Connection reset by peer)
19:11:10 Join Sochiro [0] (~Sochiro@194.90.222.165)
19:11:18 Join LambdaCalculus37 [0] (www-data@rockbox/staff/LambdaCalculus37)
19:11:20 Join DerPapst [0] (~Alexander@p5DE5BA45.dip.t-dialin.net)
19:23:09 Quit robin0800 (Read error: Connection reset by peer)
19:25:35 Join robin0800 [0] (~robin0800@cpc2-brig8-0-0-cust964.3-3.cable.virginmedia.com)
19:26:01 Join liar [0] (~liar@clnet-p09-185.ikbnet.co.at)
19:29:18 Join Terraborian [0] (www-data@giant.haxx.se)
19:29:25 Quit LambdaCalculus37 (Quit: CGI:IRC 0.5.9 (2006/06/06))
19:30:39thomasjfoxkugel: let me read it again :)
19:31:43kugelthe realpath comment, sorry
19:33:24thomasjfoxOk, now I get it. So MAX_PATH should be in fact PATH_MAX on android
19:33:46 Quit leavittx (Ping timeout: 276 seconds)
19:33:56thomasjfoxkugel: What about moving this very important information in a comment line next to the realpath() call?
19:34:25thomasjfoxI'm pretty sure I'll miss this subtle detail the next time again...
19:34:56 Quit Lear (Quit: ChatZilla 0.9.86 [Firefox 4.0b12pre/20110216030352])
19:35:17kugelI thought next to the static PATM_MAX buffer was a better fit
19:35:53kugelthomasjfox: MAX_PATH is rockbox-specific and too small for realpath
19:36:07thomasjfoxkugel: Ok, I'll fix it
19:37:00thomasjfoxBesides that I'm very happy the play count stuff now works for me
19:38:44 Quit kugel (Quit: Lost terminal)
19:39:11 Join kugel [0] (~kugel@rockbox/developer/kugel)
19:39:12Sochirohey
19:39:38Sochirosay, does rockbox's equalizer settings affect microphone recording, or just audio output?
19:40:01n1sony playback
19:40:17 Quit factor (Read error: Connection reset by peer)
19:40:47CIA-70New commit by thomasjfox (r29320): Fix buffer size used for realpath() call ...
19:41:43Sochiroi see, so the microphone recording settings consists of sample rate, gain, and volume only
19:43:01kugelthomasjfox: realpath resolves symlinks? I need to look if it also does on android
19:43:48n1sthe volume when recording is only for the monitoring part and gain affects the actual recording (or was it the other way around?)
19:43:48thomasjfoxkugel: Linux man page says:
19:43:48thomasjfoxrealpath() expands all symbolic links and resolves references to /./, /../ and extra '/' characters in the null-
19:43:48thomasjfox terminated string named by path to produce a canonicalized absolute pathname
19:43:49n1sbut yes, no DSP on recordings
19:47:00 Quit Terraborian (Quit: CGI:IRC (Ping timeout))
19:55:39thomasjfoxanyone familiar with the default font selection code if there is no config.cfg on first startup?
19:56:34kugelthomasjfox: the linux/glibc manpage doesn't necessarily match android behavior
19:56:52kugelI assume there was a reason I used an extra readlink, but I need to have another look
19:57:00 Quit logbot (Ping timeout: 272 seconds)
19:57:00***ERROR: (Closing Link: giant.haxx.se (Ping timeout: 272 seconds)) from calvino.freenode.net
19:57:00***Cleanup
19:57:00***Cleanup
19:57:00***Saving seen data "./dancer.seen"
19:57:00***Exit
19:57:02***Started Dancer V4.16
19:57:02***Connected to irc.freenode.net on port 6667
19:57:02***Logfile for #rockbox started
19:57:04Mode"logbot :+i" by logbot
19:57:08***Server message 501: 'logbot :Unknown MODE flag'
19:57:08 Join logbot [0] (rockbox@giant.haxx.se)
19:57:08 Join kugel [0] (~kugel@rockbox/developer/kugel)
19:57:08 Join liar [0] (~liar@clnet-p09-185.ikbnet.co.at)
19:57:08 Join robin0800 [0] (~robin0800@cpc2-brig8-0-0-cust964.3-3.cable.virginmedia.com)
19:57:08 Join DerPapst [0] (~Alexander@p5DE5BA45.dip.t-dialin.net)
19:57:08 Join Sochiro [0] (~Sochiro@194.90.222.165)
19:57:08 Join Horscht [0] (~Horscht@xbmc/user/horscht)
19:57:08 Join TheSphinX^ [0] (~cold@p5B323BC4.dip.t-dialin.net)
19:57:08 Join bluefoxx [0] (fuzzylomba@S0106485b3917092d.vs.shawcable.net)
19:57:08 Join thomasjfox [0] (~thomasjfo@dslb-088-067-051-171.pools.arcor-ip.net)
19:57:08 Join antil33t [0] (antil33t@124-197-51-80.callplus.net.nz)
19:57:08 Join Jerom [0] (~jerome@79.132.59.245)
19:57:08 Join TheLemonMan [0] (~lem0n@151.62.177.98)
19:57:08 Join esperegu_ [0] (~quassel@145.116.10.163)
19:57:08 Join domonoky [0] (~Domonoky@rockbox/developer/domonoky)
19:57:08 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
19:57:08 Join benedikt93 [0] (~benedikt9@unaffiliated/benedikt93)
19:57:08 Join toffe82 [0] (~chatzilla@maf.wirelesstcp.net)
19:57:08 Join panni_ [0] (hannes@ip-178-203-73-7.unitymediagroup.de)
19:57:08 Join evilnick [0] (18bcf602@rockbox/staff/evilnick)
19:57:08 Join bzed [0] (~bzed@devel.recluse.de)
19:57:08 Join eGen_ [0] (generat0r@gate.mmdecin.cz)
19:57:08 Join mudd1 [0] (~cmertes@ip-78-94-203-49.unitymediagroup.de)
19:57:08 Join {phoenix} [0] (~dirk@p57AA731E.dip.t-dialin.net)
19:57:08 Join mc2739 [0] (~mc2739@rockbox/developer/mc2739)
19:57:08 Join dfkt [0] (dfkt@unaffiliated/dfkt)
19:57:08 Join komputes [0] (~komputes@ubuntu/member/komputes)
19:57:08 Join [Saint] [0] (S_a_i_n_t@203.184.0.198)
19:57:08 Join kevku [0] (~kevku@2001:7d0:0:f9af:feed:feed:feed:feed)
19:57:08 Join Suit_Of_Sables [0] (~ennui@c-71-232-78-65.hsd1.ma.comcast.net)
19:57:08 Join MethoS- [0] (~clemens@134.102.106.250)
19:57:08 Join einhirn [0] (~Miranda@bsod.rz.tu-clausthal.de)
19:57:08 Join Kitar|st [0] (Kitarist@BSN-182-114-125.dial-up.dsl.siol.net)
19:57:08 Join TheSeven [0] (~TheSeven@rockbox/developer/TheSeven)
19:57:08 Join Topy44 [0] (~Topy44@89.204.153.180)
19:57:08 Join ender` [0] (krneki@foo.eternallybored.org)
19:57:08 Join n1s [0] (~n1s@rockbox/developer/n1s)
19:57:08 Join sasquatch [0] (~username@p4FF2CD3E.dip.t-dialin.net)
19:57:08 Join parafin [0] (parafin@paraf.in)
19:57:08 Join Barahir [0] (~jonathan@frnk-590fcbb0.pool.mediaWays.net)
19:57:08 Join elcan [0] (user36@pr0.us)
19:57:08 Join linuxguy3 [0] (~timj@adsl-75-57-175-71.dsl.emhril.sbcglobal.net)
19:57:08 Join Rob2223 [0] (~Miranda@p4FFF2AAD.dip.t-dialin.net)
19:57:08 Join tchan [0] (~tchan@lunar-linux/developer/tchan)
19:57:08 Join enthdegree [0] (~enthdegre@cpe-024-211-171-023.nc.res.rr.com)
19:57:08 Join pixelma [0] (quassel@rockbox/staff/pixelma)
19:57:08 Join amiconn [0] (quassel@rockbox/developer/amiconn)
19:57:08 Join advcomp2019_ [0] (~advcomp20@unaffiliated/advcomp2019)
19:57:08 Join Llorean [0] (~DarkkOne@rockbox/user/Llorean)
19:57:08 Join timccc [0] (~timccc@112.166.15.141)
19:57:08 Join bluebroth3r [0] (~dom@rockbox/developer/bluebrother)
19:57:08 Join yosafbridge [0] (~yosafbrid@li125-242.members.linode.com)
19:57:08 Join soap [0] (~soap@rockbox/staff/soap)
19:57:08 Join ack` [0] (~ack@mingbai.org)
19:57:08 Join guymann [0] (~charles@66-159-145-2.adsl.snet.net)
19:57:08 Join jepler- [0] (~jepler@emc/developer/pdpc.professional.jepler)
19:57:08 Join Kohlrabi [0] (~kohlrabi@kohlio.de)
19:57:08 Join Battousai [0] (~bryan@gentoo/developer/battousai)
19:57:08 Join Galois [0] (djao@efnet-math.org)
19:57:08 Join afk [0] (Dre@92.30.213.148)
19:57:08 Join tah [0] (~thomas@aktaia.intevation.org)
19:57:08 Join Xerion [0] (~xerion@5419A4D7.cm-5-2c.dynamic.ziggo.nl)
19:57:08 Join balintx_ [0] (~quassel@szerver1.gulyasp-koll.sulinet.hu)
19:57:08 Join froggyman [0] (~seth@unaffiliated/froggyman)
19:57:08 Join @ChanServ [0] (ChanServ@services.)
19:57:08 Join cjcopi [0] (~craig@adsl-76-241-66-141.dsl.bcvloh.sbcglobal.net)
19:57:08 Join linuxstb [0] (~linuxstb@rockbox/developer/linuxstb)
19:57:08 Join n17ikh [0] (~n17ikh@c-68-59-25-51.hsd1.sc.comcast.net)
19:57:08 Join MagusG [0] (magusg@c-71-59-57-46.hsd1.ga.comcast.net)
19:57:08 Join scorche|sh [0] (~scorche@rockbox/administrator/scorche)
19:57:08 Join pikytcus [0] (~bigd@failbox.co.cc)
19:57:08 Join dionoea [0] (~dionoea@videolan/developer/dionoea)
19:57:08 Join krazykit [0] (~kkit@li135-248.members.linode.com)
19:57:08 Join jfc [0] (~john@pool-72-73-80-12.ptldme.east.myfairpoint.net)
19:57:08 Join Bagder [0] (~daniel@rockbox/developer/bagder)
19:57:08 Join Farthen [0] (~Farthen@static.225.178.40.188.clients.your-server.de)
19:57:08 Join JdGordon1 [0] (~jonno@124-168-132-222.dyn.iinet.net.au)
19:57:08 Join markun [0] (~markun@rockbox/developer/markun)
19:57:08 Join Guinness [0] (~Slayer@c-68-55-111-159.hsd1.va.comcast.net)
19:57:08 Join Zarggg [0] (~zarggg@24.229.139.169.res-cmts.sm.ptd.net)
19:57:08 Join Strife89 [0] (~Strife89@168.16.226.187)
19:57:08 Join rasher [0] (~rasher@rockbox/developer/rasher)
19:57:08 Join fkhodkov [0] (~fedor76@ppp-188-65-11-112-bras1.istra.ru)
19:57:08 Join jhMikeS [0] (~jethead71@rockbox/developer/jhMikeS)
19:57:08 Join cooc [0] (~sebger@66.249.87.33)
19:57:08 Join Izzy__ [0] (~Izzy@50.35.228.110)
19:57:08 Join gevaerts [0] (~fg@rockbox/developer/gevaerts)
19:57:08 Join crwl [0] (~crwlll@dsl-jklbrasgw1-fe8edf00-29.dhcp.inet.fi)
19:57:08 Join GodEater [0] (~bibble@rockbox/staff/GodEater)
19:57:08 Join jordan` [0] (~jordan@jem75-13-78-235-252-137.fbx.proxad.net)
19:57:08 Join Zambezi [0] (Zulu@unaffiliated/zambezi)
19:57:08 Join feisar- [0] (jljhook@ihq.in)
19:57:08 Join jae [0] (~jae@dedicated.jaerhard.com)
19:57:08 Join ranmachan [0] (ranma@yumi.tdiedrich.de)
19:57:08 Join Elfish [0] (amba@2a01:4f8:100:90a1:abc:abc:abc:abc)
19:57:08 Join ps-auxw [0] (~arneb@2001:470:c807:0:1532:4e5f:2ad3:4123)
19:57:08 Join tintamarre [0] (~martin@natkirchberg.tudor.lu)
19:57:08 Join logiclost [0] (~lostlogic@erudite.lostlogicx.com)
19:57:08 Join amee2k [0] (~thomas@ve504.cugnet.net)
19:57:08 Join powell14ski_ [0] (~powell14s@c-67-177-228-132.hsd1.co.comcast.net)
19:57:08 Join zu [0] (~zu@ks355000.kimsufi.com)
19:57:08 Join ehntoo [0] (~ehntoo@lug.mtu.edu)
19:57:08 Join simonrvn [0] (simon@197.230-ppp.3menatwork.com)
19:57:08 Join AlexP [0] (~alex@rockbox/staff/AlexP)
19:57:08 Join Utchy [0] (~Utchy@rps6752.ovh.net)
19:57:08 Join plux [0] (~yogurt@h-34-156.A238.priv.bahnhof.se)
19:57:08 Join alexbobP [0] (~alex@ppp-70-253-65-89.dsl.austtx.swbell.net)
19:57:08 Join CIA-70 [0] (~CIA@208.69.182.149)
19:57:08 Join YPSY [0] (~ypsy@geekpadawan.de)
19:57:08 Join TBCOOL [0] (~tb@c-3c3671d5.09-42-73746f22.cust.bredbandsbolaget.se)
19:57:08 Join Loto_ [0] (~nfs@xbmc/user/Loto)
19:57:08 Join preglow [0] (thomj@tvilling2.pvv.ntnu.no)
19:57:08 Join Slasheri [0] (miipekk@rockbox/developer/Slasheri)
19:57:08 Join [fred] [0] (~fred@ircop.efnet.at)
19:57:08 Join literal [0] (~hinrik@w.nix.is)
19:57:08 Join scorche [0] (~scorche@rockbox/administrator/scorche)
19:57:08 Join iq [0] (~iq@unaffiliated/iq)
19:57:08 Join niekie [0] (quasselcor@CAcert/Assurer/niekie)
19:57:08 Join sinthetek [0] (~sinthetek@unaffiliated/sinthetek)
19:57:08 Join vedos [0] (~draft@ihku.org)
19:57:08 Join aevin [0] (eivindsy@unaffiliated/aevin)
19:57:08 Join FOAD [0] (~dok@83.161.135.61)
19:57:08 Join tmzt [0] (~tmzt@76.211.0.152)
19:57:08 Join Torne [0] (~torne@rockbox/developer/Torne)
19:57:08 Join Unhelpful [0] (~quassel@rockbox/developer/Unhelpful)
19:57:08 Join Rondom [0] (~rondom@lvps178-77-79-47.dedicated.hosteurope.de)
19:57:08 Join Hadaka [0] (~naked@naked.iki.fi)
19:57:08 Join pjm0616 [0] (~user@110.9.28.45)
19:57:08 Join maraz [0] (maraz@kapsi.fi)
19:57:08 Join ved [0] (ved@ddsbox.co.cc)
19:57:08 Join miceh [0] (~mtq@h1439481.stratoserver.net)
19:57:08 Join knittl [0] (~knittl@unaffiliated/knittl)
19:57:08 Join simabeis [0] (~simabeis@lobmenschen.de)
19:57:08thomasjfoxwps/WPSLIST specifies 35-Adobe-Helvetica for cabbiev2. I do get 27-Adobe-Helvetica from the apps/settings_lists.c default value
19:57:28 Join factor [0] (~factor@75.108.68.114)
19:57:29thomasjfox35-Adobe-Helvetica for cabbiev2 on 800x480 LCDs
19:57:48kugelsettings_list.c actually dictates the default font
20:00
20:00:03kugelin WPSLIST just says "put this font into the package if cabbie is shipped"
20:00:03 Join L-Strife89 [0] (~Strife89@168.16.232.173)
20:00:03thomasjfoxkugel: Ok. 27-Adobe-Helvetica is too small for the n900 display.
20:00:03thomasjfoxGuess I need a patch in settings_list.c then?
20:00:03kugeli can imagine
20:00:03 Join bertrik [0] (~bertrik@ip117-49-211-87.adsl2.static.versatel.nl)
20:00:03 Quit bertrik (Changing host)
20:00:03 Join bertrik [0] (~bertrik@rockbox/developer/bertrik)
20:01:14thomasjfoxIt's something I noticed yesterday while starting with a config from scratch
20:01:14thomasjfoxNow I also understand why people complained the font size is too small :)
20:01:14thomasjfoxI thought wps/WPSLIST contains resolution specific settings...
20:01:34 Quit factor (Client Quit)
20:01:36 Join Buschel [0] (~chatzilla@p54B66CCA.dip.t-dialin.net)
20:01:54 Join factor [0] (~factor@75.108.68.114)
20:04:30 Quit DerPapst (Read error: Connection reset by peer)
20:05:46 Join DerPapst [0] (~Alexander@p5DE5BA45.dip.t-dialin.net)
20:06:41CIA-70New commit by thomasjfox (r29321): Use 35-Adobe-Helvetica as default font on maemo. 27-Adobe-Helvetica is too small
20:12:56CIA-70r29321 build result: All green
20:14:47 Quit einhirn (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org)
20:16:04thomasjfoxkugel: The only thing mentioning android + readlink() and realpath() in one breath is a rockbox patch on pastie.org ;)
20:16:24kugelthomasjfox: yea you need to look into the sources
20:18:09kugelhttp://android.git.kernel.org/?p=platform/bionic.git;a=summary
20:20:59thomasjfoxcrap, the last time I ran rockbox in valgrind it turned up something about uninitialized vars. Now I can't reproduce it.
20:24:16thomasjfoxah, it's back. Database init is the key
20:28:37*kugel sees readlink and lstat calls in realpath.c so I gues it resolves symlinks as well
20:28:56 Join thegeek [0] (~nnscript@132.108.34.95.customer.cdi.no)
20:29:01thomasjfoxkugel: May be some older version didn't?
20:31:43 Join Keripo [0] (~Keripo@eng354.wireless-resnet.upenn.edu)
20:36:55kugelthomasjfox: dunno
20:38:36thomasjfoxkugel: Ok. Can you make out something out of this valgrind output? http://pastie.org/1571877
20:39:03thomasjfoxI'm currently compiling valgrind 3.6.0 and do the test again, F14 ships only valgrind 3.5.0
20:39:53 Quit Jerom (Quit: Leaving.)
20:44:40 Join thegeek_ [0] (~nnscript@132.108.34.95.customer.cdi.no)
20:44:57 Quit L-Strife89 (Quit: Returning to work)
20:45:10 Quit thegeek_ (Client Quit)
20:45:43 Join thegeek_ [0] (~nnscript@132.108.34.95.customer.cdi.no)
20:55:29 Quit Galois (*.net *.split)
20:59:47 Join Stephen__ [0] (~S@86.42.26.228)
21:00
21:02:20 Quit Buschel (Quit: ChatZilla 0.9.86 [Firefox 3.6.13/20101203075014])
21:14:55 Join Galois [0] (djao@efnet-math.org)
21:22:31 Quit robin0800 (Read error: Connection reset by peer)
21:24:29 Join leavittx_ [0] (~lev@89.221.199.187)
21:30:33 Quit Keripo (Quit: Leaving.)
21:31:16 Join Keripo [0] (~Keripo@eng354.wireless-resnet.upenn.edu)
21:34:55 Join Lear [0] (chatzilla@rockbox/developer/lear)
21:35:21 Quit thomasjfox (Remote host closed the connection)
21:41:06 Quit benedikt93 (Quit: Bye ;))
21:57:04***Saving seen data "./dancer.seen"
22:00
22:00:48 Quit TheSphinX^ (Quit: XChat)
22:00:49 Join baptiste_ [0] (~chatzilla@78.231.137.156)
22:05:04 Join webguest439 [0] (www-data@giant.haxx.se)
22:05:28 Quit Keripo (Quit: Leaving.)
22:05:45 Quit webguest439 (Client Quit)
22:08:41 Quit kugel (Quit: leaving)
22:08:47 Join kugel [0] (~kugel@g231226084.adsl.alicedsl.de)
22:08:50 Quit kugel (Changing host)
22:08:50 Join kugel [0] (~kugel@rockbox/developer/kugel)
22:10:05 Quit kugel (Client Quit)
22:10:13 Join kugel [0] (~kugel@rockbox/developer/kugel)
22:11:48 Join L-Strife89 [0] (~Strife89@207.144.201.128)
22:28:27 Join {-phoenix-} [0] (~dirk@p57AA384E.dip.t-dialin.net)
22:32:49 Quit {phoenix} (Ping timeout: 272 seconds)
22:41:07 Quit baptiste_ (Quit: ChatZilla 0.9.86 [Firefox 3.5.7/20100106054534])
22:43:20 Quit leavittx_ (Ping timeout: 250 seconds)
22:43:33 Join sideral [0] (~sideral@213.165.85.248)
22:43:33 Quit sideral (Changing host)
22:43:33 Join sideral [0] (~sideral@rockbox/developer/sideral)
22:49:41 Quit evilnick (Quit: Page closed)
22:51:19 Quit Lear (Quit: ChatZilla 0.9.86 [Firefox 4.0b12pre/20110216030352])
22:54:41 Quit bertrik (Read error: No route to host)
22:55:52 Join bertrik [0] (~bertrik@ip117-49-211-87.adsl2.static.versatel.nl)
22:55:52 Quit bertrik (Changing host)
22:55:52 Join bertrik [0] (~bertrik@rockbox/developer/bertrik)
22:58:09 Join leavittx_ [0] (~lev@89.221.199.187)
23:00
23:01:11 Nick YPSY is now known as Ypsy (~ypsy@geekpadawan.de)
23:06:08 Join bluebrother [0] (~dom@g224239042.adsl.alicedsl.de)
23:06:08 Quit bluebrother (Changing host)
23:06:08 Join bluebrother [0] (~dom@rockbox/developer/bluebrother)
23:07:38 Quit Rondom (Ping timeout: 276 seconds)
23:09:13 Quit bluebroth3r (Ping timeout: 240 seconds)
23:16:35sideraljhMikeS: Re ClipV2 background noise: I've posted a new AMSv2 audio/power-management settings dumper to FS #11915. Could you please use this new patch to dump the settings on your Fuze v2 again?
23:16:36 Join Jerom [0] (~jerome@79.132.59.245)
23:17:28bertriksideral, I have a clip+, can I help somehow?
23:17:49sideralbertrik: Yes, you could! Please have a look at FS #11915
23:18:51 Quit TheLemonMan (Quit: free(me))
23:21:36sideralMy current theory is that the Clip V2 has a misconfigured DCDC. The low-noise "current force" mode is not documented in the datasheet, so my idea is to see whether other AMSv2 platforms have a different configuration than the Clip V2
23:22:36 Quit L-Strife89 (Quit: Heading back to the dorm.)
23:23:05 Quit komputes (Remote host closed the connection)
23:24:18sideralClarification: The "current force" mode actually is mentioned in the datasheet. The datasheet just doesn't document how it is enabled.
23:30:09 Join markun_ [0] (~markun@rockbox/developer/markun)
23:30:32 Quit n1s (Quit: Lämnar)
23:33:25 Quit markun (Ping timeout: 276 seconds)
23:33:42CIA-70New commit by lenzone10 (r29322): Updated italian translation
23:34:23sideralbertrik: Can you tell me what amsv2_variant differentiates and how that difference is used?
23:35:27bertrikit differentiates between different ways of connecting the sd controller to the sd slot IIRC
23:37:02bertrikon variant 0 (the "old" way), some signal related to the sd card is shared with the button light in a complicated way
23:37:12CIA-70r29322 build result: All green
23:38:49sideralI was wondering how the SD cards in AMSv2 are powered. From a first look at my power management settings, it seems like it's not done through the AS3543 DCDC circuits
23:39:52bertrikI've installed a rockbox with the patch from 11915, what do I do next?
23:41:08siderallogf build, I hope? Go to the debug menu and use the "Log AS3543 registers" entry, then dump logf.txt
23:42:16bertrikI don't have that entry
23:42:39sideralshould be right above "dump log file"
23:43:29sideralbut only in build that has logf enabled, of course
23:44:23bertrikmeh
23:45:55sideralAlso make sure you've used the latest patch from that FS item :)
23:46:02 Quit domonoky (Read error: Connection reset by peer)
23:50:26 Join maxsin [0] (~maxsin@188.115.181.139)
23:52:03 Quit {-phoenix-} (Remote host closed the connection)
23:54:24 Quit leavittx_ (Ping timeout: 250 seconds)
23:55:50sideralbertrik: ...anyway, I saw that amsv2_variant was used in deciding how to put the SD in low-power state. As the background noise is pronounced when accessing the SD on the Clip v2, and only audible when accessing the external SD on the Clip+, the voltage regulator used for the SD card(s) may be in a noisy mode (which is typically the low-power mode)
23:56:32 Join JdGordon| [0] (~jonno@vl10.gw.ok-labs.com)
23:56:32 Quit JdGordon| (Changing host)
23:56:32 Join JdGordon| [0] (~jonno@rockbox/developer/JdGordon)
23:57:08***Saving seen data "./dancer.seen"
23:57:48 Quit bluebrother (Disconnected by services)
23:57:50 Join bluebroth3r [0] (~dom@rockbox/developer/bluebrother)
23:58:38sideralbertrik: Do you have documentation for the AMSv2 SD interface?

Previous day | Next day