--- Log for 05.10.110 Server: kornbluth.freenode.net Channel: #rockbox --- Nick: logbot Version: Dancer V4.16 Started: 2 days and 23 hours ago 00.09.20 Quit avacore (Ping timeout: 264 seconds) 00.10.06 Join avacore^ [0] (nobody@1008ds1-rdo.0.fullrate.dk) 00.10.35 Quit captainkewllll (Quit: Page closed) 00.11.10 Quit guymann (Quit: PEEEEEEEENISES) 00.18.12 Join stripwax [0] (~Miranda@87-194-34-169.bethere.co.uk) 00.20.41 Quit jgarvey (Quit: Leaving) 00.22.58 Quit domonoky (Read error: Connection reset by peer) 00.24.43 Quit CGL (Ping timeout: 272 seconds) 00.36.08 Quit sasquatch (Ping timeout: 276 seconds) 00.40.08 Join JdGordon| [0] (~jonno@vl10.gw.ok-labs.com) 00.40.08 Quit JdGordon| (Changing host) 00.40.08 Join JdGordon| [0] (~jonno@rockbox/developer/JdGordon) 00.42.38 Quit ender` (Quit: I spilled Spot Remover on my dog... Now he's gone.) 00.45.56 Quit avacore^ (Ping timeout: 264 seconds) 00.46.21 Join avacore [0] (nobody@1008ds1-rdo.0.fullrate.dk) 00.48.11 Join sasquatch [0] (~username@p4FF2D08C.dip.t-dialin.net) 00.57.09 Quit dfkt (Quit: -= SysReset 2.53=- Sic gorgiamus allos subjectatos nunc.) 01.01.26 *** Saving seen data "./dancer.seen" 01.03.17 Quit Staphylo (Quit: Bye les gens =)) 01.33.32 Part toffe82 01.38.23 Quit Judas_PhD (Quit: This is a quitting message) 01.42.27 Quit clone4crw (Ping timeout: 276 seconds) 02.03.41 Quit stripwax (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org) 02.09.37 Join anewuser [0] (anewuser@unaffiliated/anewuser) 02.13.26 Join madalu [0] (~user@unaffiliated/madalu) 02.19.32 Quit anewuser (Ping timeout: 264 seconds) 02.33.29 Join Judas_PhD [0] (~kevin@misterfluffy.dsl.xmission.com) 02.47.51 Quit _s1gma (Quit: Leaving) 02.48.10 Quit MethoS- (Remote host closed the connection) 02.54.56 Join anewuser [0] (anewuser@unaffiliated/anewuser) 02.56.50 Quit DerPapst (Quit: Leaving.) 03.01.30 *** Saving seen data "./dancer.seen" 03.31.31 Quit froggyman (Quit: Bye) 03.33.26 Join ntryon [0] (~ntryon@42.interlockroc.net) 03.44.26 Join shuffle2 [0] (shuffle2@cpe-74-74-168-216.rochester.res.rr.com) 03.45.10 # is there support for file i/o within firmware? All I'm seeing is some crazy wrapper in plugin.c :p 03.45.57 # * shuffle2 misses fopen() and friends :( 03.54.11 Quit Strife89TX (Quit: Leaving) 04.00.32 Quit ntryon (Ping timeout: 245 seconds) 04.06.15 # shuffle2: open() write() read() and creat() are all there 04.06.48 # ah yea, i found file.h eventually :) 04.13.06 # is there something special that must be done to use malloc? 04.13.18 Join clone4crw [0] (~calvin@97-86-227-168.dhcp.roch.mn.charter.com) 04.13.19 # linker can't find the symbol 04.13.25 # malloc doesnt exist 04.13.29 # hehe 04.13.34 # malloc is evil! 04.13.37 # :( 04.13.43 # what is less evil? 04.15.06 Quit amiconn (Disconnected by services) 04.15.07 Join amiconn_ [0] (quassel@rockbox/developer/amiconn) 04.15.09 Quit pixelma (Disconnected by services) 04.15.10 Join pixelma_ [0] (quassel@rockbox/staff/pixelma) 04.15.25 Nick pixelma_ is now known as pixelma (quassel@rockbox/staff/pixelma) 04.15.26 # buffer_alloc? 04.15.27 # what do you need a buffer for? 04.15.27 Nick amiconn_ is now known as amiconn (quassel@rockbox/developer/amiconn) 04.15.36 # when/how big/how long? 04.15.40 # reading a file to mem (hopefully) 04.15.59 # i don't know how large the ram is on an ipod video, heh 04.16.22 # ~35KB 04.16.42 # buffer_alloc() will permenantly take part of the buffer, you can borrow the plugin buffer (temporarily) or the audio buffer if audio is stopped 04.16.43 # transfer from hdd over usb 04.17.06 # i mean, from hdd and out the external usb 04.17.39 # if audio is stopped you might be able to just use audiobuf without any fiddling (slightly dangerous though) 04.17.47 # s/slightly// 04.17.53 # ha 04.18.20 # so what you're really saying 04.18.26 # is there's no good way to do this? 04.18.52 # no, there are a few ways, I need a bit more info to tell you the best way though 04.18.59 # ask away 04.19.27 # 35k? you can probably just use get_plugin_buffer() 04.19.44 # you can do this from firmware code? 04.19.46 # * JdGordon| doesnt know which (if any) buffers usb steals to work 04.19.52 # probably not 04.20.03 Quit TheSeven (Ping timeout: 265 seconds) 04.20.51 # usb (at least on ipod video) doesn't steal any buffers 04.21.07 # it has a static one in... 04.21.19 # ibss segment iirc 04.22.25 # well it'd be nicer to have proper file i/o 04.22.41 # open/read/write *is* proper i/o :) 04.23.00 # doesn't count if you can't put the data anywhere 04.23.08 Quit madalu (Remote host closed the connection) 04.23.18 # idk...i could try to stream directly from hdd 04.23.25 # * shuffle2 smells latency issues 04.23.49 # if you can guarenteee audio is stopped you can use audiobuf 04.24.05 Join TheSeven [0] (~TheSeven@rockbox/developer/TheSeven) 04.24.06 # * JdGordon| isnt sure how to do that from firmware/ though 04.25.59 # i'm pretty sure USB uses the audio buffer 04.30.01 Quit engwan_ (Ping timeout: 240 seconds) 04.36.21 Quit fdinel (Quit: Miranda IM! Smaller, Faster, Easier. http://miranda-im.org) 04.36.39 Quit Judas_PhD (Quit: This is a quitting message) 04.38.53 Join Judas_PhD [0] (~kevin@misterfluffy.dsl.xmission.com) 04.43.06 Quit shai (Read error: Connection reset by peer) 04.57.40 Join Barahir [0] (~jonathan@frnk-590f5579.pool.mediaWays.net) 05.01.07 Quit Barahir_ (Ping timeout: 276 seconds) 05.01.33 *** Saving seen data "./dancer.seen" 05.01.47 Quit clone4crw (Remote host closed the connection) 05.03.41 Join froggyman [0] (~seth@pool-72-69-221-231.chi01.dsl-w.verizon.net) 05.03.41 Quit froggyman (Changing host) 05.03.41 Join froggyman [0] (~seth@unaffiliated/froggyman) 05.13.47 Quit bluebrother (Ping timeout: 240 seconds) 05.14.43 Join bluebrother [0] (~dom@g224237143.adsl.alicedsl.de) 05.14.44 Quit bluebrother (Changing host) 05.14.44 Join bluebrother [0] (~dom@rockbox/developer/bluebrother) 05.18.06 Quit yorick (Remote host closed the connection) 05.18.49 # ohh man, the new rockbox i upgraded to is much better on my sansa fuze, lots of little problems fixed 05.19.00 # great job guys 05.25.45 Join darkenvy [0] (d826be44@gateway/web/freenode/ip.216.38.190.68) 05.34.01 Quit ps-auxw (Ping timeout: 265 seconds) 05.34.20 Quit anewuser () 05.35.33 # hey 05.35.41 # I just got a 240gb hdd for my 5th gen 05.35.46 # anything I should know? 05.37.24 # apart from the meaning of life you mean? 05.37.38 # yea lol 05.37.48 # more of configuration of rockbox or whatnot 05.38.38 # like I enjoy using my ipod as a flash drive but it wont support files over 4gb 05.38.46 # any way I can format as fat32 and still have rockbox? 05.39.04 # you HAVE to have fat for rockbox to work, fat32 is best 05.40.18 # thats fine 05.40.31 # im a linux user anyways, fuck ntsc lol 05.41.06 # you cant watch tv on your ipod 05.41.07 # so this is a noob question but how do I format to fat32 and then STILL format via window's itunes so Ic an install rockbox? 05.41.22 # use itunes 05.41.41 # I thought itunes formats to fat 05.41.48 # fat = 4gb filesize limit? 05.42.08 # 2GB isnt it? 05.42.17 # fat16 might be 2, fat32 is 4 05.42.25 # ah 05.42.37 # kids these days 05.42.45 # so no way I can get arger files onto this unless I partitioned huh? 05.42.52 # yes 05.43.02 # sounds good 05.43.34 # lol, thats usually my line 05.44.22 # one last thing.... 05.44.57 # I had to buy another ipod just to get rockbox back. What happens when ipod 5.5s, and 5s become rare? 05.45.15 Join ps-auxw [0] (~arneb@p4FF7EDC3.dip.t-dialin.net) 05.45.18 # what else is a hdd mp3 player? 05.50.12 Quit darkenvy (Quit: Page closed) 06.05.16 Join hebz0rl [0] (~hebz0rl@dslb-088-065-056-057.pools.arcor-ip.net) 06.20.26 Nick fxb is now known as fxb__ (~felixbrun@h1252615.stratoserver.net) 06.38.42 Quit Horschti (Quit: Verlassend) 07.01.35 *** Saving seen data "./dancer.seen" 07.24.31 Join Staphylo [0] (~Bullet@AMontsouris-159-1-57-18.w92-128.abo.wanadoo.fr) 07.25.13 Join shai [0] (~Shai@l192-117-110-233.cable.actcom.net.il) 07.25.17 Quit shai (Read error: Connection reset by peer) 07.26.56 Join BHSPitMonkey [0] (~stephen@unaffiliated/bhspitmonkey) 07.28.31 Quit hebz0rl (Quit: Leaving) 07.45.45 Quit JdGordon| (Quit: leaving) 07.52.21 Join shai [0] (~Shai@l192-117-110-233.cable.actcom.net.il) 07.52.24 Quit shai (Read error: Connection reset by peer) 08.02.11 Join bmbl [0] (~Miranda@unaffiliated/bmbl) 08.10.31 Quit BHSPitMonkey (Remote host closed the connection) 08.14.55 Join kugel [0] (~kugel@rockbox/developer/kugel) 08.20.42 Join shai_ [0] (~Shai@l192-117-110-233.cable.actcom.net.il) 08.20.44 Quit shai_ (Read error: Connection reset by peer) 08.24.39 Quit panni_ (Read error: Connection reset by peer) 08.26.12 Join shai_ [0] (~Shai@l192-117-110-233.cable.actcom.net.il) 08.26.15 Quit shai_ (Read error: Connection reset by peer) 08.28.50 Join Nausicaa [0] (~Nausicaa@c-71-239-58-153.hsd1.il.comcast.net) 08.38.49 Join shai [0] (~Shai@l192-117-110-233.cable.actcom.net.il) 08.38.52 Quit shai (Read error: Connection reset by peer) 08.43.35 Join shai [0] (~Shai@l192-117-110-233.cable.actcom.net.il) 08.46.33 Quit shai (Read error: Connection reset by peer) 08.46.41 Join ender` [0] (krneki@foo.eternallybored.org) 08.46.59 Join shai [0] (~Shai@l192-117-110-233.cable.actcom.net.il) 08.47.46 Join stripwax [0] (~Miranda@87-194-34-169.bethere.co.uk) 08.48.36 Quit shai (Client Quit) 08.48.50 Quit stripwax (Read error: Connection reset by peer) 08.49.06 Join shai [0] (~Shai@l192-117-110-233.cable.actcom.net.il) 08.52.28 Quit bluebrother (Disconnected by services) 08.52.29 Join bluebroth3r [0] (~dom@rockbox/developer/bluebrother) 08.54.33 Quit shai (Read error: Connection reset by peer) 08.54.56 Join shai [0] (~Shai@l192-117-110-233.cable.actcom.net.il) 08.57.28 Join Zagor [0] (~bjst@rockbox/developer/Zagor) 09.00.13 Join LinusN [0] (~linus@rockbox/developer/LinusN) 09.01.38 *** Saving seen data "./dancer.seen" 09.17.53 # Zagor: did you need to fix the git mirror? I didn't see any further mention 09.18.03 Join kevku [0] (~kevku@arch.tunnel.ipv6.estpak.ee) 09.19.10 Join petur [0] (d408b802@gateway/web/freenode/ip.212.8.184.2) 09.19.10 Quit petur (Changing host) 09.19.10 Join petur [0] (d408b802@rockbox/developer/petur) 09.21.20 Quit Staphylo (Quit: Bye les gens =)) 09.36.02 Quit timonator (Ping timeout: 276 seconds) 09.36.25 Join timonator [0] (~timonator@redshirt.wakelift.de) 09.50.59 Join Rob2223 [0] (~Miranda@pD9FE232C.dip.t-dialin.net) 09.54.20 Join funman [0] (~fun@rockbox/developer/funman) 09.54.50 Quit Rob2222 (Ping timeout: 255 seconds) 09.59.05 Quit sasquatch (Quit: WeeChat 0.3.2) 09.59.31 Join sasquatch [0] (~username@p4FF2DF9E.dip.t-dialin.net) 10.10.19 Quit avacore (Ping timeout: 240 seconds) 10.11.42 Join avacore [0] (nobody@1008ds1-rdo.0.fullrate.dk) 10.37.33 Join DerPapst [0] (~Alexander@dslb-088-069-130-254.pools.arcor-ip.net) 10.43.07 Quit DerPapst (Ping timeout: 240 seconds) 10.43.24 Join mar-v-in [0] (~59004905@giant.haxx.se) 10.43.55 Quit Nausicaa (Ping timeout: 240 seconds) 10.45.16 Join DerPapst [0] (~Alexander@dslb-088-069-130-254.pools.arcor-ip.net) 10.46.10 # any plans to port rockbox to samsung players (yp-q2) 10.49.39 Quit mar-v-in (Quit: CGI:IRC (EOF)) 11.00.43 Quit kugel (Ping timeout: 240 seconds) 11.01.42 *** Saving seen data "./dancer.seen" 11.19.50 Part shuffle2 11.28.07 Join MethoS- [0] (~clemens@134.102.106.250) 11.48.58 Join swilde [0] (~wilde@aktaia.intevation.org) 11.50.46 Join dfkt [0] (dfkt@unaffiliated/dfkt) 11.51.04 Quit kevku (Quit: KVIrc 4.0.2 Insomnia http://www.kvirc.net/) 12.10.25 Quit bmbl (Read error: Connection reset by peer) 12.30.11 Quit Galois (Ping timeout: 265 seconds) 12.34.07 Join bug2000 [0] (~bug@unaffiliated/bug2000) 12.34.09 # You don't have permission to access /wiki/SansaAMS on this server. 12.42.50 # bug2000: works fine here.. 12.43.22 # Oh, I know the issue... Thanks. 12.43.28 # np 12.46.57 # markun: I guess surfing without user agent break some sites. 12.47.21 # never tried it :) 13.01.34 # Torne: I have the hold problem on my mini2g also, just too lazy to do anything about it 13.01.46 *** Saving seen data "./dancer.seen" 13.03.53 Join kugel [0] (~kugel@g231104234.adsl.alicedsl.de) 13.03.55 Quit kugel (Changing host) 13.03.55 Join kugel [0] (~kugel@rockbox/developer/kugel) 13.18.55 # JdGordon: hm. you came up with the fix we committed, though! :) 13.19.32 # it possible it fixed it on my video and not the mini :/ 13.19.40 # * JdGordon doesnt remember even commiting it 13.20.34 Quit kugel (Ping timeout: 245 seconds) 13.28.58 # well the latest guy is complaininga bout a video 13.29.14 # and i haven't ever had issues with my video afte rthe fix or heard anyone else who has 13.36.34 Join teru [0] (~teru@KD059133111160.ppp.dion.ne.jp) 13.40.06 Part LinusN 13.42.09 Join LinusN [0] (~linus@rockbox/developer/LinusN) 13.52.40 Join pSiKO [0] (~tbox@213.56.158.253) 13.53.55 # hello all 13.54.00 # it seem that the last RB build (28208) have trouble with sd card on sansa fuze v2 13.54.27 # as I plug the sd card RB stop to respond, is it a knows bug ?? 13.55.23 # buikld from yesterday at list "see" the sd card but cannot read file 13.56.15 # pSiKO: check the card's filesystem with windows scandisk/chkdsk or linux fsck and try again 13.56.21 # (this not a known bug) 13.56.48 # I do, and the card is corerectly read with the OF 13.57.26 # I just put one file on the sd, and with the OF no trouble 13.57.52 # I format the sd in fat / vfat no change 13.58.02 # i remember such an issue but not sure if it was a fuzev1 or v2, let me look on the forum 13.58.20 # with the yesterday firmeware RB can see the sdcard and the song 13.58.36 # but can't play it 13.59.21 # I see on the forum a poste relating sdcard timming, but it's old 13.59.39 # neither, it was on a clip+ (so, similar to fuzev2) http://forums.rockbox.org/index.php?topic=25726.0 14.00.09 # if you can send me the card i could try to have a look but i don't promise success 14.00.44 # ok you think it's card issue ? 14.00.54 # what is the spec of the card (class, size, brand); and could you write down what is written in the debug menu (system -> debug -> view disk info) 14.01.27 # ok, I will do 14.01.55 # if it works in the OF there is no reason it couldn't work in rockbox; there might be something special that we need to do though. Some cards might not strictly adhere to the SD specifications, but hardware/software might be more or less tolerant with them 14.02.04 # I dont have the sd card here, I will note all the info (as you tell me) 14.02.30 # that wath I thinking 14.02.38 Quit Farthen (Ping timeout: 252 seconds) 14.03.02 # you could report in the forum thread i just linked since it looks similar 14.03.16 # ok nice 14.03.42 # mc2739: the clipv2 picture is missing in SansaAMSUnbrick 14.03.46 # if trouble persist I send you the SDcard 14.05.40 # hey, i have the same problem with my clip+ and microSD cards. i should see if i can get a build environment up and running 14.06.03 # New commit by 03teru (r28209): pictureflow: ... 14.06.15 # what I found strange is the regression compared to the yesterday build 14.07.41 # r28209 build result: All green 14.11.13 # pSiKO: there was no fuzev2 changes so the causes might be complex (different delays, code alignement) 14.11.37 # hmmm, ok 14.12.07 # very strang, on my sans e280 , the card work nice with RB 14.12.12 # sans RB build 14.12.15 # same 14.13.16 # anyway thanks a lot for the info , tomorow I come back with my card and more info 14.14.52 Join kugel [0] (~kugel@g231104234.adsl.alicedsl.de) 14.14.54 Quit kugel (Changing host) 14.14.54 Join kugel [0] (~kugel@rockbox/developer/kugel) 14.14.55 Quit kugel (Remote host closed the connection) 14.15.01 Join kugel [0] (~kugel@g231104234.adsl.alicedsl.de) 14.15.02 Quit kugel (Changing host) 14.15.02 Join kugel [0] (~kugel@rockbox/developer/kugel) 14.19.42 Quit kugel (Read error: Connection reset by peer) 14.23.14 Join Farthen [0] (~Farthen@static.225.178.40.188.clients.your-server.de) 14.25.06 # btw if someone knows a model of SDcard (at least 4GB) that work with sansa fuzev2, I can bought one and make some test 14.46.39 Join evilnick_B [0] (0c140464@rockbox/staff/evilnick) 14.48.43 Join engwan_ [0] (~engwan@112.202.22.199) 14.55.50 # has anyone tried compiling the theme editor? 14.56.17 # I think its dependancies are messed up... changes to the libskinparser dont seem to get rebuilt :/ 14.59.18 # oh don't I feel like a prat :p who changed the exe name? 15.01.49 *** Saving seen data "./dancer.seen" 15.02.34 # images tags look odd in CustomWPS wiki. first param is blank, e.g. "%x(, filename.bmp, x, y)". 15.02.36 # New commit by 03jdgordon (r28210): libskin_parser: fix a annoying bug where viewports required at least one line (even %Vi()). multiple %Vi lines direclty under eachother should now ... 15.04.29 # r28210 build result: All green 15.05.07 # teru: wiki edit failure :/ 15.06.03 # funman: I take a new card from a friend , and the problem dispear 15.06.38 # yes it only happens with some specific cards, most of the cards work fine 15.06.50 # my card seem to be faulty when using with RB (but wrok nice with OF) 15.07.15 # do you want some info about the faulty card ? 15.07.47 # yes please, just write down what is in system->debug->disk info for disk 1 15.07.50 # to try to improve RB SDcard support 15.08.00 # ok I'll do it tomorow :) 15.13.33 Join robin0800 [0] (~robin0800@cpc2-brig8-0-0-cust964.3-3.cable.virginmedia.com) 15.17.05 # New commit by 03teru (r28211): fix crash after unplugging USB while in image viewer plugin. 15.18.54 # r28211 build result: All green 15.28.03 Join kugel [0] (~kugel@rockbox/developer/kugel) 15.32.38 Join jfc [0] (~john@dpc6682208002.direcpc.com) 15.33.10 Join t0rc [0] (~t0rc@unaffiliated/t0rc/x-5233201) 15.34.51 Join drizztbsd [0] (~quassel@dynamic-adsl-94-36-198-142.clienti.tiscali.it) 15.35.26 Quit drizztbsd_ (Ping timeout: 272 seconds) 15.36.52 Quit antil33t (Read error: Connection reset by peer) 15.37.02 Join antil33t [0] (~Mudkips@124-197-51-80.callplus.net.nz) 15.37.14 # teru: there's a placeholder for an image "label". Someone used