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 2010-10-05

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:00
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:00
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:00
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:10shuffle2is 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
04:00:32 Quit ntryon (Ping timeout: 245 seconds)
04:06:15JdGordon|shuffle2: open() write() read() and creat() are all there
04:06:48shuffle2ah yea, i found file.h eventually :)
04:13:06shuffle2is 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:19shuffle2linker can't find the symbol
04:13:25JdGordon|malloc doesnt exist
04:13:29shuffle2hehe
04:13:34JdGordon|malloc is evil!
04:13:37shuffle2:(
04:13:43shuffle2what 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:26shuffle2buffer_alloc?
04:15:27JdGordon|what do you need a buffer for?
04:15:27 Nick amiconn_ is now known as amiconn (quassel@rockbox/developer/amiconn)
04:15:36JdGordon|when/how big/how long?
04:15:40shuffle2reading a file to mem (hopefully)
04:15:59shuffle2i don't know how large the ram is on an ipod video, heh
04:16:22shuffle2~35KB
04:16:42JdGordon|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:43shuffle2transfer from hdd over usb
04:17:06shuffle2i mean, from hdd and out the external usb
04:17:39JdGordon|if audio is stopped you might be able to just use audiobuf without any fiddling (slightly dangerous though)
04:17:47JdGordon|s/slightly//
04:17:53shuffle2ha
04:18:20shuffle2so what you're really saying
04:18:26shuffle2is there's no good way to do this?
04:18:52JdGordon|no, there are a few ways, I need a bit more info to tell you the best way though
04:18:59shuffle2ask away
04:19:27JdGordon|35k? you can probably just use get_plugin_buffer()
04:19:44shuffle2you can do this from firmware code?
04:19:46*JdGordon| doesnt know which (if any) buffers usb steals to work
04:19:52JdGordon|probably not
04:20:03 Quit TheSeven (Ping timeout: 265 seconds)
04:20:51shuffle2usb (at least on ipod video) doesn't steal any buffers
04:21:07shuffle2it has a static one in...
04:21:19shuffle2ibss segment iirc
04:22:25shuffle2well it'd be nicer to have proper file i/o
04:22:41JdGordon|open/read/write *is* proper i/o :)
04:23:00shuffle2doesn't count if you can't put the data anywhere
04:23:08 Quit madalu (Remote host closed the connection)
04:23:18shuffle2idk...i could try to stream directly from hdd
04:23:25*shuffle2 smells latency issues
04:23:49JdGordon|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:59saratogai'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:00
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:49spike__ohh man, the new rockbox i upgraded to is much better on my sansa fuze, lots of little problems fixed
05:19:00spike__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:33darkenvyhey
05:35:41darkenvyI just got a 240gb hdd for my 5th gen
05:35:46darkenvyanything I should know?
05:37:24JdGordon|apart from the meaning of life you mean?
05:37:38darkenvyyea lol
05:37:48darkenvymore of configuration of rockbox or whatnot
05:38:38darkenvylike I enjoy using my ipod as a flash drive but it wont support files over 4gb
05:38:46darkenvyany way I can format as fat32 and still have rockbox?
05:39:04JdGordon|you HAVE to have fat for rockbox to work, fat32 is best
05:40:18darkenvythats fine
05:40:31darkenvyim a linux user anyways, fuck ntsc lol
05:41:06JdGordon|you cant watch tv on your ipod
05:41:07darkenvyso 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:22JdGordon|use itunes
05:41:41darkenvyI thought itunes formats to fat
05:41:48darkenvyfat = 4gb filesize limit?
05:42:08JdGordon|2GB isnt it?
05:42:17JdGordon|fat16 might be 2, fat32 is 4
05:42:25darkenvyah
05:42:37spike__kids these days
05:42:45darkenvyso no way I can get arger files onto this unless I partitioned huh?
05:42:52JdGordon|yes
05:43:02darkenvysounds good
05:43:34darkenvylol, thats usually my line
05:44:22darkenvyone last thing....
05:44:57darkenvyI 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:18darkenvywhat else is a hdd mp3 player?
05:50:12 Quit darkenvy (Quit: Page closed)
06:00
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:00
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:00
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
09:00:13 Join LinusN [0] (~linus@rockbox/developer/LinusN)
09:01:38***Saving seen data "./dancer.seen"
09:17:53kugelZagor: 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:00
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:10mar-v-inany plans to port rockbox to samsung players (yp-q2)
10:49:39 Quit mar-v-in (Quit: CGI:IRC (EOF))
11:00
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:00
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:09bug2000You don't have permission to access /wiki/SansaAMS on this server.
12:42:50markunbug2000: works fine here..
12:43:22bug2000Oh, I know the issue... Thanks.
12:43:28markunnp
12:46:57bug2000markun: I guess surfing without user agent break some sites.
12:47:21markunnever tried it :)
13:00
13:01:34JdGordonTorne: 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:55TorneJdGordon: hm. you came up with the fix we committed, though! :)
13:19:32JdGordonit 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:58Tornewell the latest guy is complaininga bout a video
13:29:14Torneand 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:55pSiKOhello all
13:54:00pSiKOit seem that the last RB build (28208) have trouble with sd card on sansa fuze v2
13:54:27pSiKOas I plug the sd card RB stop to respond, is it a knows bug ??
13:55:23pSiKObuikld from yesterday at list "see" the sd card but cannot read file
13:56:15funmanpSiKO: check the card's filesystem with windows scandisk/chkdsk or linux fsck and try again
13:56:21funman(this not a known bug)
13:56:48pSiKOI do, and the card is corerectly read with the OF
13:57:26pSiKOI just put one file on the sd, and with the OF no trouble
13:57:52pSiKOI format the sd in fat / vfat no change
13:58:02funmani remember such an issue but not sure if it was a fuzev1 or v2, let me look on the forum
13:58:20pSiKOwith the yesterday firmeware RB can see the sdcard and the song
13:58:36pSiKObut can't play it
13:59:21pSiKOI see on the forum a poste relating sdcard timming, but it's old
13:59:39funmanneither, it was on a clip+ (so, similar to fuzev2) http://forums.rockbox.org/index.php?topic=25726.0
14:00
14:00:09funmanif you can send me the card i could try to have a look but i don't promise success
14:00:44pSiKOok you think it's card issue ?
14:00:54funmanwhat 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:27pSiKOok, I will do
14:01:55funmanif 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:04pSiKOI dont have the sd card here, I will note all the info (as you tell me)
14:02:30pSiKOthat wath I thinking
14:02:38 Quit Farthen (Ping timeout: 252 seconds)
14:03:02funmanyou could report in the forum thread i just linked since it looks similar
14:03:16pSiKOok nice
14:03:42funmanmc2739: the clipv2 picture is missing in SansaAMSUnbrick
14:03:46pSiKOif trouble persist I send you the SDcard
14:05:40timonatorhey, 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:03CIA-81New commit by teru (r28209): pictureflow: ...
14:06:15pSiKOwhat I found strange is the regression compared to the yesterday build
14:07:41CIA-81r28209 build result: All green
14:11:13funmanpSiKO: there was no fuzev2 changes so the causes might be complex (different delays, code alignement)
14:11:37pSiKOhmmm, ok
14:12:07pSiKOvery strang, on my sans e280 , the card work nice with RB
14:12:12pSiKOsans RB build
14:12:15pSiKOsame
14:13:16pSiKOanyway 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:06pSiKObtw 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:50JdGordonhas anyone tried compiling the theme editor?
14:56:17JdGordonI think its dependancies are messed up... changes to the libskinparser dont seem to get rebuilt :/
14:59:18JdGordonoh don't I feel like a prat :p who changed the exe name?
15:00
15:01:49***Saving seen data "./dancer.seen"
15:02:34teruimages tags look odd in CustomWPS wiki. first param is blank, e.g. "%x(, filename.bmp, x, y)".
15:02:36CIA-81New commit by jdgordon (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:29CIA-81r28210 build result: All green
15:05:07JdGordonteru: wiki edit failure :/
15:06:03pSiKOfunman: I take a new card from a friend , and the problem dispear
15:06:38funmanyes it only happens with some specific cards, most of the cards work fine
15:06:50pSiKOmy card seem to be faulty when using with RB (but wrok nice with OF)
15:07:15pSiKOdo you want some info about the faulty card ?
15:07:47funmanyes please, just write down what is in system->debug->disk info for disk 1
15:07:50pSiKOto try to improve RB SDcard support
15:08:00pSiKOok I'll do it tomorow :)
15:13:33 Join robin0800 [0] (~robin0800@cpc2-brig8-0-0-cust964.3-3.cable.virginmedia.com)
15:17:05CIA-81New commit by teru (r28211): fix crash after unplugging USB while in image viewer plugin.
15:18:54CIA-81r28211 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:14pixelmateru: there's a placeholder for an image "label". Someone used <label> for it which the wiki software seems to interprete as some kind of html. I already looked at it once but I didn't know what "label" it is referring to - a label name or just an identifier character - I somehow couldn't make sense of it (and then forgot)
15:38:17 Quit robin0800 (Remote host closed the connection)
15:38:19pixelmaor that you can use either - a name or a character
15:41:21terui see. thank you for explanation.
15:59:13 Join stoffel [0] (~quassel@p57B49DD0.dip.t-dialin.net)
16:00
16:00:52 Quit funman (Quit: leaving)
16:13:50 Join Galois [0] (djao@efnet.math.uwaterloo.ca)
16:20:54 Quit teru (Quit: Quit)
16:25:21 Join [sko] [0] (~sko]@p57A9BE70.dip0.t-ipconnect.de)
16:28:25 Quit linuxguy3 (Read error: Connection reset by peer)
16:49:52 Quit Judas_PhD (Quit: This is a quitting message)
16:59:32 Join toffe82 [0] (~chatzilla@maf.wirelesstcp.net)
17:00
17:01:52***Saving seen data "./dancer.seen"
17:14:49 Part Zagor
17:17:57 Quit kugel (Quit: exit(0);)
17:18:04 Quit [sko] (Quit: Leaving.)
17:19:16 Join _s1gma [0] (~d.d.derp@77.107.164.131)
17:20:15 Join needhelp1 [0] (~needhelp1@unaffiliated/needhelp1)
17:20:38needhelp1can you run rockbox on a virtual machine?
17:21:02needhelp1i need to test external hardware support
17:24:21 Join kevku [0] (~kevku@2001:7d0:0:f000::135d)
17:28:26AlexPnot unless that vm can emulate the hardware in a dap that we support
17:28:38 Quit needhelp1 (Ping timeout: 240 seconds)
17:35:46 Part LinusN
17:36:01 Quit MethoS- (Remote host closed the connection)
17:40:33 Join panni_ [0] (hannes@ip-178-203-81-220.unitymediagroup.de)
17:41:42 Quit antil33t (Read error: Connection reset by peer)
17:41:43 Join Strife89TX [0] (~cstrife89@207.144.201.128)
17:41:51 Join antil33t [0] (~Mudkips@124-197-51-80.callplus.net.nz)
18:00
18:04:27 Join n1s [0] (~n1s@rockbox/developer/n1s)
18:05:09 Quit petur (Quit: Page closed)
18:21:38 Join Nausicaa [0] (~Nausicaa@c-71-239-58-153.hsd1.il.comcast.net)
18:29:22 Join darkenvy [0] (d826be44@gateway/web/freenode/ip.216.38.190.68)
18:29:28darkenvyhey can someone help me?
18:30:14darkenvyIs it true you must compile rockbox myself in order to have a compatible 240gb hdd ipod?
18:32:43alexbobPthat sounds like a weird rule
18:32:47alexbobPhave you tried the normal installer?
18:33:05darkenvyread here: http://www.rockbox.org/wiki/BigDisk
18:33:21darkenvythis is so old (2007) that it may no longer apply and may be included in the new updates
18:34:44alexbobPdunno
18:35:25darkenvyhmmmm
18:35:39darkenvyits a big deal as I dont know how to gather, open and compile everything
18:35:43gevaertsdarkenvy: no
18:35:57gevaertslarge disk support was added before 3.6
18:36:03darkenvyyou use hmmm?
18:36:13darkenvyreally?
18:36:16darkenvyso Im good to go?
18:36:20*gevaerts never uses hmmm
18:36:35darkenvythat was a typo lol
18:37:24n1sthat page is specific for Archos devices though
18:37:49darkenvyokay
18:38:02darkenvyIll do the installer then and be on my way
18:39:20n1sall hard disk based ipod ports have lba48 support enabled so it should work
18:39:58n1s*but* we rely on the apple in rom loader to load the rockbox bootloader from disk so it needs to handle the disk as well
18:40:01alexbobPis there any limit to how big a microsd card I can stick in my sansafuze?
18:41:35gevaertsalexbobP: there shouldn't be
18:42:01gevaertsSDHC specifies up to 32GB, although that's an artificial limit. Rockbox doesn't have limits for it
18:42:10darkenvywhat about the when ipod 5 and 5.5s become extinct/rare?
18:42:40darkenvywhat other slick looking device holds hdds? the archos looks ugly
18:43:49alexbobPgevaerts: so theoretically if I had a usb to microsdhc adapter, I could connect big hard drives?
18:43:57AlexPThe archos that we support are very old and use 2.5" hdds
18:44:25AlexPThe newer hd targets are 1.8" (a couple are 1" microdrive0
18:44:30AlexP*)
18:44:47gevaertsalexbobP: I'd say the likelyhood of those appearing is rather small, but yes
18:45:18 Join bertrik [0] (~bertrik@rockbox/developer/bertrik)
18:45:57alexbobPgevaerts: aww, well I hope they do appear! either that or rockbox will need usb host support!
18:46:22alexbobPin order to make me even more happy than it already has (which is a lot)
18:47:35darkenvywhat about rockbox for iphone
18:47:39darkenvyhas that ever been discussed?
18:48:25darkenvyI am kinda tired of the boring ios
18:49:53n1srockbox for iphone would either be an application under ios or a firmware replacement with no users
18:50:02n1siOS of course
18:50:55alexbobPwell if there's rockbox for android
18:51:00alexbobPthen iphone users can install android on their iphones
19:00
19:01:56***Saving seen data "./dancer.seen"
19:03:23AlexPApple won't allow it, so it'd have to be for jail broken ones
19:03:40AlexPSomeone is of course free to do it, but there isn't much dev interest
19:05:31darkenvywell kailbreaking is now legal and the spirit of rockbox is to break free
19:06:30Bagderdarkenvy: go ahead!
19:06:35darkenvyoh theoreticly, if it were to happen, it would have to run at LEAST jailbroken apps. so I could see how the difficulty in designing would be
19:06:43 Join funman [0] (~fun@rockbox/developer/funman)
19:07:14 Quit t0rc (Quit: Give someone code, help them with one project. Teach someone to code, help them rule the world.)
19:07:37darkenvyone can only dream ^^. The ipod hdd sees all 240gb :D
19:07:40darkenvythanks guys
19:07:40AlexPdarkenvy: It never wasn't allowed in a lot of countries
19:08:12AlexPAnd Rockbox would be an app, not the OS there
19:08:51darkenvypeace
19:09:24 Quit parafin (Ping timeout: 260 seconds)
19:10:39Tornedarkenvy: it should work up to 2TB
19:10:51Tornethe apple firmware will fall over if you use a drive with more than 2^32 bytes of space
19:11:01Torneer, 2^32 sectors
19:11:02Torne:)
19:11:17darkenvyoh wow, that would be too large
19:11:38Tornefortunately nobody makes 1.8" hard disks that big yet
19:11:41Torneso it's no problem :)
19:11:46darkenvylol
19:12:16darkenvyanyone ever done a custom mp3 player with rockbox before?
19:12:22darkenvylike an arduino or something?
19:12:31alexbobPwell anyways I don't see any reason apple wouldn't allow rockbox in the app store
19:12:34AlexPSort of, there is a thread in the forums
19:12:34Torneyes, but not with an arduino
19:12:41AlexPalexbobP: It duplicates functionality
19:12:42Tornemicrocontrollers are not powerful enough to run rockbox
19:12:56alexbobPAlexP: do they strike down an app for doing what they do but better?
19:12:56TornealexbobP: Apps are not allowed to duplicate/compete with built in functionality
19:12:59alexbobPthat's pretty egotistical
19:13:00TornealexbobP: Yes, absolutely
19:13:15alexbobPthis is why I am a proud non-iphone-owner
19:13:24TorneIt's also probably illegal to distribute GPL'ed software on the App Store
19:13:34Tornebecause the app store agreement you have to sign conflicts with the GPL
19:13:51 Quit swilde (Quit: ERC Version 5.3 (IRC client for Emacs))
19:13:53darkenvyhmmm, thats why you jailbreak it
19:14:04AlexPalexbobP: This is Apple all over
19:14:08darkenvymy mother friggin jailbroke her iphone and shes tech stupid
19:14:15AlexPI'd rather buy a phone I can just use
19:14:21darkenvythanks to jailbreamme.com
19:14:21AlexPBut anyway, this is going off topic
19:14:24 Nick fxb__ is now known as fxb (~felixbrun@h1252615.stratoserver.net)
19:14:26funmani'm ok for bashing apple but on #rockbox-community
19:14:27darkenvythere is a topic?
19:14:48alexbobPdarkenvy: go to #rockbox-community!
19:14:49funmanthe topic is rockbox, everything else is offtopic
19:14:57darkenvyokay but no arduino project can support the rockbox kernel at all?
19:15:11alexbobPdarkenvy: you know what's even better than jailbreaing your iphone? getting an android :D
19:15:20Torneno. the arduino is a 16-bit AVR
19:15:33TorneRockbox needs a 32-bit processor and needs 10-50x as much RAM
19:15:40Torneas an absolute minimum, ideally a lot more.
19:15:44darkenvy(no I love androids btw, but im around macs everyday and the integration actually is quiet great)
19:16:22Tornedarkenvy: the smallest rockbox devices have 1MB of RAM iirc?
19:16:31gevaerts2MB
19:16:36TorneRight.
19:16:43TorneWe could maybe go to 1MB if we tried *really hard*
19:16:50funmanno, 1MB is easily doable
19:16:57Tornethe current arduinos have 4KB i think?
19:17:07alexbobP4kb ram? laaaame!
19:17:12gevaertsThere are some 1MB ports-in-progress, but I don't think any of those ever got far enough to even try to get playback working
19:17:13Torneand they are probably 1/10th the performance of the slowest CPU we run on
19:17:28Torneand the processor is just not wide enough
19:17:45Tornevery little of our code will work on a system where 32-bit arithmetic is an optional extra :)
19:18:06darkenvythen what is doable for a custom built rockbox device?
19:18:24Torneyou would almost certainly be after an ARM processor
19:18:32gevaertsI'd say ARM with 16MB or more
19:18:33Tornean ARM9 is probably a good bet these days
19:18:37Bagdera lowend ARM9 is a good buy
19:18:49 Join Horscht [0] (~Horscht@xbmc/user/horscht)
19:19:08gevaerts2MB will work, but I don't see why you should limit yourself to that if you're not trying to pinch another half dollar off the production cost
19:19:20Torneyeah, the sdram is not that expensive
19:19:25darkenvystability > compatibility
19:19:31 Join parafin [0] (parafin@paraf.in)
19:19:35Bagderstability?
19:19:50gevaertsAnd compatibility with what?
19:19:54 Join domonoky [0] (~Domonoky@rockbox/developer/domonoky)
19:20:05Torneheh, the current normal arduinos have 2KB ram, only the mega one has 4kb ;)
19:20:31darkenvyit seems that if you are trying to get it working on 2MB you are sacrofising stability at one point
19:20:40darkenvyjust to get it to maybe work on an arduino one day?
19:20:47Tornewha?
19:20:54darkenvyI say keep the bulk
19:20:56TorneWe already run on targets with 2 megabytes of memory
19:21:01Tornesome possible targets have one megabyte
19:21:04darkenvyoh really?
19:21:06Tornearduinos have two *kilobytes*
19:21:10Tornewhich is 1000 times less
19:21:32Tornethey are also, probably, not too far off being 1000 times slower as well
19:21:35darkenvyyes but apparently there is a project for a 1MB daughterboard or soemthing
19:21:42Tornethat's not going to help
19:21:44darkenvyyaar
19:21:55Tornean arduino is a different class of processor altogether
19:22:03Torneit's what people normally call a microcontroller, not a microprocessor :)
19:22:08Tornethough the distinction is kinda blurry
19:22:14darkenvyanyways I gotta go
19:22:18Tornenot being 32-bit is a dealbreaker, no matter how much ram it has
19:22:22darkenvythanks for the itneresting topic guys
19:22:37 Quit darkenvy (Quit: Page closed)
19:25:52alexbobPthis would be a fun rockbox target: http://www.ticalc.org/basics/calculators/ti-nspire-cas.html
19:25:53 Quit DerPapst (Quit: Leaving.)
19:28:35 Quit Strife89TX (Quit: Strife89TX)
19:28:49n1s"20 MB of storage space" umm, that's not very much for music...
19:30:17n1sand does it even have an audio output?
19:31:20 Join jgarvey [0] (~jgarvey@cpe-065-190-066-089.nc.res.rr.com)
19:33:11alexbobPn1s: no...
19:33:15alexbobPbut... but...
19:33:16alexbobPit has usb!
19:33:28alexbobPyou can connect that to more storage and probably an audio output!
19:33:51gevaertsDoes it have USB *host*?
19:34:45n1syes, if a) the calculator can handle playin gusb host and b) you whip up some code for it...
19:35:04gevaertsAlso, does it have audio?
19:35:35alexbobPgevaerts: tricks have been done with usb host on other ti calculatores
19:35:41gevaertsso?
19:35:46gevaerts"other"
19:35:49alexbobPthey aren't meant to be usb hosts, but they've been programmed to accept flash drives
19:35:55alexbobPI have no reason to believe it wouldn't work with this one
19:36:01alexbobPit's just a newer calculator so I don't think it's been done yet
19:40:21 Join drizztbsd_ [0] (~quassel@dynamic-adsl-78-12-188-159.clienti.tiscali.it)
19:41:10 Quit drizztbsd (Ping timeout: 272 seconds)
19:44:31 Join edboyer93 [0] (eboyer93@pool-71-185-65-59.phlapa.fios.verizon.net)
19:55:08saratoga2MB is about as low as you can go with SWCODEC and not run into terrible issues with bugs in our buffering system
19:55:31gevaertssaratoga: this is why we need a 1MB target :)
19:55:38 Join Staphylo [0] (~Bullet@AMontsouris-159-1-57-18.w92-128.abo.wanadoo.fr)
19:55:44saratogaany lower and you're basically looking at putting a lot of work into improving buffering, or maybe dusting off Nico's old "bufferless" system
19:56:13saratogathat used a lot less RAM, but also suffered from reduced battery life due to basically streaming blocks from NAND
19:56:24 Join DerPapst [0] (~Alexander@p4FE8F247.dip.t-dialin.net)
19:57:21 Quit drizztbsd_ (Read error: Connection reset by peer)
19:58:27funmanthere are a lot of features that we can forget to save binsize
19:59:41funmanthe bloat HTML widget that i linked here the other day can help for that
20:00
20:00:58saratogathat only included bin size right, and not memory allocated at runtime?
20:01:00 Join drizztbsd [0] (~quassel@dynamic-adsl-78-12-149-30.clienti.tiscali.it)
20:01:31funmanno i modified it to include BSS as well
20:01:48funmanthe original code has BSS sections commented
20:02:17saratogaso the sum of all the bytes it finds will equal the total memory used minus anything in the audio buffer?
20:02:33funmanit should yes
20:02:35gevaertsIt doesn't have the buffer_alloc()ed bits I suspect
20:08:40 Join anewuser [0] (anewuser@unaffiliated/anewuser)
20:14:11 Quit stoffel (Remote host closed the connection)
20:37:24 Join drizztbsd_ [0] (~quassel@dynamic-adsl-78-12-187-101.clienti.tiscali.it)
20:37:32 Quit drizztbsd (Ping timeout: 272 seconds)
20:49:33 Quit anewuser ()
20:53:51 Join gbl08ma [0] (~5d66227c@giant.haxx.se)
20:54:00 Join drizztbsd [0] (~quassel@dynamic-adsl-94-36-214-228.clienti.tiscali.it)
20:54:39 Quit drizztbsd_ (Ping timeout: 272 seconds)
20:57:24 Join darkenvy [0] (d826be44@gateway/web/freenode/ip.216.38.190.68)
20:57:54darkenvyIm back for another question
20:58:31darkenvyIm moving away completely from itunes. any way I can ge tthe "Files" view on rockbox to sort via ID3 artist tags and not filenames?
20:58:50 Join [sko] [0] (~sko]@p57A9BE70.dip0.t-ipconnect.de)
20:58:57darkenvymy files are ugly like: [song]+duobythisguy-01(radioedit).mp3
20:59:16gevaertsno
20:59:21 Join pamaury [0] (~quassel@dhcp-128-203.residence.ens-lyon.fr)
20:59:21 Quit pamaury (Changing host)
20:59:21 Join pamaury [0] (~quassel@rockbox/developer/pamaury)
20:59:22gevaertsThe files view handles files
20:59:22darkenvythats asking too much?
20:59:41gevaertsIf you want to use tags, you need to use the database
20:59:52darkenvyhow can I compile a db without itunes?
21:00
21:00:05gevaertsthe rockbox database has nothing at all to do with itunes
21:00:24*alexbobP doesn't use itunes ever... and has a database
21:01:01darkenvyDoes the database just update all supported songs on hdd? :O
21:01:26darkenvyomg it does apparently (*as I reload database*)
21:01:59***Saving seen data "./dancer.seen"
21:02:09darkenvywhat would be really nice would be to have 2 options, techno and non-techno. I kinda dont want them together XD
21:03:20gbl08maThat is what the "Genre" view in the database is for. Of course, if you're not lazy enough to tag all your music by the correct genre.
21:03:30 Quit Nausicaa (Disconnected by services)
21:03:58darkenvyI can do it
21:03:59 Join Thanatos [0] (~Nausicaa@c-71-239-58-153.hsd1.il.comcast.net)
21:04:00darkenvynah I use mp3tag
21:04:20darkenvybut destroy the rest of the tags by only making 2 tags XD (I would lose sub-genres)
21:05:30gevaertsdarkenvy: I don't use these things, but maybe http://www.rockbox.org/wiki/DataBase#tagnavi_config_v2_0_Syntax can help you
21:09:31darkenvyso is this saying I can whitelist certain tags into one group? :D
21:09:43gevaertsMaybe
21:09:48*gevaerts doesn't actually know
21:09:57gevaertsIf anything can, this is the thing
21:10:04darkenvycool ill look into it
21:10:13darkenvyrockbox just seems to get better and better lol
21:10:34darkenvypffff apple.... dont make me laugh XD
21:10:49darkenvyill let you know how it goes
21:10:52darkenvypeace
21:11:09 Quit darkenvy (Quit: Page closed)
21:12:00amiconnTorne: In fact MBR is limited to 2^32 sectors. That's why the new external 3TB HDDs use large physical sectors over USB as well
21:12:40funmanpamaury: any progress/discoveries on AMSv2 USB ?
21:13:03 Join sudoman [0] (c05041e7@gateway/web/freenode/ip.192.80.65.231)
21:14:14amiconntorne: 1MB is correct if you include the iFP7xx port. And OpenNeo works on a device with just 256KB RAM (though hwcodec, and plenty power supply)
21:15:35pamauryfunman: nope, my last try is a patch which restarts the controller after too many bus resets, I'll send you the patch if you want to test it. My guess is that the init code is the fault is some way
21:15:37 Join funman_ [0] (~fun@rockbox/developer/funman)
21:15:45 Quit funman (Quit: free(random());)
21:15:51 Nick funman_ is now known as funman (~fun@rockbox/developer/funman)
21:16:08pamauryto be honest I've been quite busy these last two weeks
21:16:35funmanpamaury: i've suspected the init code as well
21:17:22funmani'll try to find some time to look at it again tomorrow
21:17:54pamauryyes, me too but my investigation see that the controller is not behaving in the right way when it massively fails
21:21:32Torneamiconn: yes, i know, that's why i said it's limited to that. the ipod isn't going to use the nonstandard sector size, afaik.
21:25:07 Quit gbl08ma (Quit: CGI:IRC (Ping timeout))
21:38:09 Quit funman (Quit: Lost terminal)
21:42:36 Join kugel [0] (~kugel@46.114.47.183)
21:42:36 Quit kugel (Changing host)
21:42:36 Join kugel [0] (~kugel@rockbox/developer/kugel)
21:53:51CIA-81New commit by bluebrother (r28212): Fix crash on proxy detection on OS X (FS #11654). ...
21:53:59 Quit sudoman (Ping timeout: 265 seconds)
21:55:11 Quit [sko] (Read error: Connection reset by peer)
21:55:42CIA-81r28212 build result: All green
22:00
22:00:13 Join funman [0] (~fun@rockbox/developer/funman)
22:00:18timonatoris it a known bug that rockbox util always tells me to download "the newest version" and gives me the url of the archive i downloaded to install it?
22:01:14gevaertsRockbox Utility you mean?
22:01:39timonatorthat one
22:01:49gevaertshm. I think I've seen that too
22:01:57timonatori've seen it in the last two versions
22:02:03funmantimonator: 1.2.8 should work now
22:02:25timonatornope.
22:02:33timonatorit still tells me to get version 1.2.8
22:04:49gevaertsI'm seeing the same
22:04:58gevaertsdomonoky, bluebroth3r: is this known?
22:07:44domonokyi think thats not known.. can someone pastebin the systemlog for this ?
22:09:33gevaertsdomonoky: http://pastie.org/1201507
22:09:47 Join kazaik [0] (~kazaik@pool-71-166-29-66.bltmmd.east.verizon.net)
22:09:49 Join sudoman [0] (d8ecfce7@gateway/web/freenode/ip.216.236.252.231)
22:12:10domonokystrange, the version string is empty for one compare..
22:12:40 Join komputes [0] (~komputes@ubuntu/member/komputes)
22:37:28 Join bmbl [0] (~Miranda@unaffiliated/bmbl)
22:38:14 Quit bug2000 (Ping timeout: 276 seconds)
22:41:04domonokystrange, the version compair fails, because somehow Qt thinks the string "" isnt empty. *scratch head*
22:45:57funmanthe QString?
22:46:00domonokyi was wrong.. but i dont understand how this test really should work..
22:46:34 Join Jacquerie [0] (~50b4d1f3@giant.haxx.se)
22:46:36*bluebroth3r looks at the log
22:46:42bluebroth3rsorry, was distracted for a while
22:47:03 Join nymtar [0] (~nymtar@unaffiliated/nymtar)
22:47:49bluebroth3rI thought I fixed that issue with the version check on 64 bit. But why is the version number empty for one of the comparisons?
22:48:11domonokybluebroth3r: in the version test case, why is "1.2.3" and "1.2.3-1" not declared as equal ?
22:48:49bluebroth3rbecause 1.2.3-1 is considered a re-release of 1.2.3, so it's newer
22:48:56domonokythe version is empty in one of the comparisons, because thats how its coded.. it looks if it is newer then a previous found version (and there is none)
22:49:00nymtarhi there, what device would you recommend for rockbox? I am looking for a lightweight mp3-player
22:49:25gevaertsnymtar: if "lightweight" is the most important requirement, I'd say one of the clips
22:49:40domonokybluebroth3r: but how should it differentiate that from "1.2.8" -> "1.2.8-64bit" ?
22:49:45nymtargevaerts: clips means?
22:49:54alexbobPnymtar: sansa clip
22:50:05alexbobPteensy little player with a few gigs of flash memory
22:50:09gevaertssansa clip, either v1, v2 or plus
22:50:22alexbobPand the screen is both color and monochrome
22:50:25nymtarsite lists them under unstable ports
22:50:41gevaertsalexbobP: it's monochrome
22:50:46gevaertsDon't confuse the issue :)
22:50:53funmannymtar: read better. and even the unstable models work quite fine
22:50:54alexbobPgevaerts: confusion is fun though!
22:50:59alexbobPit's blue and yellow! colors :D
22:51:21alexbobPnymtar: I have a fuze v2... there are some situations where it still crashes but rockbox is very usable
22:51:22bluebroth3rdomonoky: good question
22:51:26alexbobPit's definitely better than OF, even with the crashes
22:51:36alexbobPI think rockbox is totally stable on the older fuze and clip, too.
22:51:40Kohlrabioi
22:51:43alexbobPand it'll probably be stable on all of them eventually.
22:51:48Kohlrabiyou guys solved the USB issues with Clipv2/+?
22:51:51Kohlrabifantastic :D
22:52:09Kohlrabioh
22:52:12*bluebroth3r guesses he has to look into that comparison again the next days
22:52:12domonokybluebroth3r: thats the current problem.. it thinks 1.2.8 is newer the 1.2.8 (for 64bit versions) :-)
22:52:14KohlrabiI just missed it
22:52:15Kohlrabidamned
22:52:37 Quit Jacquerie (Quit: CGI:IRC (Ping timeout))
22:52:54bluebroth3rseems I missed one important case in the test. Gnah. Hate this.
22:53:18bluebroth3rfortunately I'll have a couple of hours on the train the next days.
22:53:20domonokybluebroth3r: also the test case doesnt compile anymore on windows .. (i had to hack utils.cpp to test this )
22:54:49bluebroth3roh, really? Though I never tried that on Windows :o
22:54:58bluebroth3r(the test case that is)
22:56:13bluebroth3rbut why does changing utils.cpp fix it?
22:56:24nymtarthe only thing what worries me about the clip is the non-changeable-battery :/
22:56:25domonokyits because utils.cpp uses System::userPermissions() (only on windows) and if i pull system.cpp/h in, it complains about many windows funktions..
22:56:49domonokyand i was too lazy to fix that, so i just commented the call in utils.cpp for this test :-)
22:57:00bluebroth3rah, so it fails during linking?
22:57:04domonokyjup
22:57:27alexbobPnymtar: everything has a changeable battery, if you'r emotivated ;)
22:58:15bluebroth3rok, so the test project file would need some more linker options.
22:58:37domonokyjup, looks like it
23:00
23:01:02 Join linuxstb [0] (~linuxstb@rockbox/developer/linuxstb)
23:02:02***Saving seen data "./dancer.seen"
23:03:38 Nick fxb is now known as fxb__ (~felixbrun@h1252615.stratoserver.net)
23:06:38nymtaralexbobP: i see/wc
23:06:42nymtardarn ^^
23:06:44 Part nymtar
23:09:07 Quit funman (Quit: night)
23:23:27 Quit kazaik (Quit: Leaving)
23:23:37 Quit Thanatos (Ping timeout: 252 seconds)
23:24:32 Quit saratoga (Quit: Page closed)
23:24:46 Quit komputes (Ping timeout: 245 seconds)
23:27:51 Quit JdGordon (Ping timeout: 240 seconds)
23:28:52 Join kugel2 [0] (~kugel@212.23.105.193)
23:28:53 Quit kugel (Disconnected by services)
23:28:54 Quit kugel2 (Changing host)
23:28:54 Join kugel2 [0] (~kugel@rockbox/developer/kugel)
23:29:54 Nick kugel2 is now known as kugel (~kugel@rockbox/developer/kugel)
23:33:44 Quit jgarvey (Quit: Leaving)
23:34:18 Quit n1s (Quit: Lämnar)
23:37:34froggymanI have already updated an unpatched version of firmware to my fuze v2 and removed the .rockbox folder. Is there anything else I need to do to completely remove all traces of rockbox from it?
23:37:42 Quit panni_ (Read error: Connection reset by peer)
23:37:56 Join panni_ [0] (hannes@ip-178-203-81-220.unitymediagroup.de)
23:38:34alexbobPfroggyman: are you afraid that the dystopian anti-open-source-police will confiscate it if they find traces?
23:38:54 Quit bmbl (Quit: Bye!)
23:38:58froggymanno, just SanDisk. I need to send it in for RMA
23:39:02alexbobPanyways, removing the .rockbox directory and bootloader should be enough...
23:39:07alexbobPah, probably a good call
23:39:21alexbobPit would suck if they tried to weasel out of supporting you and used rockbox as an excuse
23:40:08froggymanYep, exactly my thought. Which is why I want to be sure that i have removed rockbox from it
23:40:46 Quit evilnick_B (Quit: Page closed)
23:42:56 Join Nausicaa [0] (~Nausicaa@c-71-239-58-153.hsd1.il.comcast.net)
23:44:26amiconnTorne: iPod video 5.5G already *does* use a nonstandard sector size
23:45:13amiconn2KB - so it should allow disks up to 8TB.
23:48:13gevaertsThe question is how likely it is that there will ever be 1.8" PATA drives that big
23:48:40*gevaerts decides not to bet on it
23:50:58amiconnCurrently our ata driver won't handle >2TB, because even with large physical sectors the actual addressing still uses 512-byte sectors, and we use 32 bit vars
23:51:22amiconnThat's an easy fix if such big disks will ever appear though
23:53:53 Quit sudoman ()

Previous day | Next day