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 icon identifies that the person is a core developer (has commit access).

#rockbox log for 2008-02-09

00:00:19gevaertsrasher: I'm beginning to suspect that this is actually another symptom of the same problem that prevents high speed from working
00:01:03rashergevaerts: Yikes
00:01:31 Quit BigBambi ("Please insert girder")
00:02:36 Quit petur ("gonne")
00:02:39gevaertsrasher: it can't be incomplete transfers, since we use 64 byte packets and the problem we see happens every 32 bytes
00:02:55rasherThat sounds reasonable enough
00:03:07rasherNot that I have any idea how USB works, but yes
00:03:09gevaertsThat means it happens between the wire and our side of the controller
00:03:09 Join BigBambi [0] (n=Alex@rockbox/staff/BigBambi)
00:03:29rasherSo some sort of incorrect controller setup or what?
00:03:46gevaertsyes
00:07:40gevaertsJust a wild idea : maybe RAM access is too slow ? Is that clocked proportionally to the CPU clock ?
00:08:15JdGordon|wif it is.. calling cpu_boost() before you start the usb stuff might fix it
00:08:53rasherIN fact, manually boosting (through the debug screen) should fix it as well in that case?
00:09:02JdGordon|wyes
00:10:25 Join Masca [0] (n=Masca@131.178.167.83)
00:11:16gevaertsNo, that's not it.
00:11:30JdGordon|w:(
00:11:43gevaertsIt would have been an easy solution
00:12:13 Quit robin0800 (Read error: 110 (Connection timed out))
00:12:13 Nick robin0800_ is now known as robin0800 (n=robin080@cpc2-brig8-0-0-cust498.brig.cable.ntl.com)
00:12:22rasherActually I'm completely failing to mount the thing when running at 80mhz
00:12:41rasherI get loads of usb 3-2: device descriptor read/64, error -110
00:12:50amiconngevaerts: How does the controller communicate with the cpu and ram?
00:13:02gevaertsrasher: is it plugged in properly ?
00:13:03amiconnBtw, 32 byte is the cache line length iirc
00:13:19rashergevaerts: Pretty sure it is, yes
00:13:33 Part Masca ("Leaving")
00:14:35gevaertsamiconn: the controller knows real addresses, so it should read/write directly to RAM.
00:15:19amiconnOkay, so the controller does dma. But the ata transfers go through the cpu.
00:16:04amiconnAnd writing to the usb disk means the controller writes to ram, and the cpu reads it
00:16:11amiconnhmmm
00:16:18gevaertsamiconn: yes, but ata shouldn't matter. I checked the data before it goes to disk
00:16:28gevaertsamiconn: so it might be a cache issue after all
00:17:32gevaertsbut it shouldn't be. All accesses go through UNCACHED_ADDR
00:18:15amiconnWe can't be 100% sure about UNCACHED_ADDR. At least there could be still some write buffer active somewhere
00:18:44amiconnBut I'd expect a write buffer to cause problems when sending data via usb (i.e. reading from pc) that in the other direction
00:19:06gevaertsThe corruption we're seeing is a bit too regular IMO for that to be the problem
00:19:37barrywardellputting the data structures into iram would test if it's a cache problem, wouldn't it?
00:20:13gevaertsHow much iram can we use for it ?
00:20:28rashergevaerts: any idea why the transfer seems to get cut off at 77 bytes (?!)
00:20:46gevaertsrasher: 77 bytes ? I haven't seen that yet
00:20:48rasherAt least that's what I got at http://pastebin.ca/896483 if I can count
00:21:41amiconn0x57 == 87
00:21:50rasherI was about to say..
00:22:03linuxstb_gevaerts: You should be able to use the 48KB of IRAM reserved for codecs/plugins.
00:22:09rasherNot that 87 makes any more sense
00:22:32gevaertslinuxstb_: how do I do this ?
00:23:01rasherDidn't Zagor try to use IRAM already?
00:24:38amiconnDepending on how much iram is needed, the test would probably not need special magic
00:24:39rasherhttp://www.rockbox.org/irc/log-20071116#23:07:01
00:24:55rasherThough I suppose he might have had other bugs interfering
00:25:17linuxstb_gevaerts: As amiconn said, it depends how much IRAM you need?
00:25:50amiconnI mean not using special tricks, but simply allocating a buffer in iram
00:26:34gevaertslinuxstb_: I'd need at least 32k to do a "real" test. 16k will work.
00:27:18gevaertsrasher: I read that as pure perfomance, as in speed. That
00:27:30amiconnhmm
00:27:37rashergevaerts: You're right, I'm confused
00:27:38gevaertsis not really what we're looking at now.
00:28:00amiconn8KB iram should be available on all PP targets in the core without special measures
00:28:21gevaertsamiconn: OK, let's start with that. How do I access it ?
00:28:40amiconnJust include IBSS_ATTR in your buffer declaration
00:29:59amiconnYou can check the .map file to see how much iram is left for your target
00:30:40asdrubalwhen I search for rockbox compatable ipods on ebay, what should I search for?
00:30:48barrywardellyou have to be careful with IBSS_ATTR since it zeroes all buffers on rockbox startup
00:31:03amiconn<builddir>/apps/rockbox.map -> search for "stackend = ." and check the address in front of that
00:31:03 Join kfazz [0] (n=ken@76-203-137-185.lightspeed.wlfrct.sbcglobal.net)
00:31:07barrywardellthat was a problem austriancoder had while he was working on USB
00:31:26amiconn*all* bss space is zeroed at rockbox startup
00:31:29Slasherihmm, there are some weird spurios butten events from remote control in bootloader for a few seconds after plugging in the remote
00:31:38Slasherithen those events gone
00:31:52asdrubalwhen I search for rockbox compatable ipods on ebay, what should I search for?
00:31:52amiconnNot only ibss. That's something gcc expects - it puts zero initialised data into bss by default
00:32:14gevaertsamiconn: It compiles with 8192, so I'll try that. I'll have to tell the linux kernel to lower its limit though
00:32:56 Quit JdGordon|w ("http://www.mibbit.com ajax IRC Client")
00:33:05barrywardellyeah, and that caused problems for austriancoder because he used IBSS_ATTR for all the descriptors and they ended up getting zeroed
00:33:46amiconnIf you checked the address I told you, you can calculate how much iram is left (for the core). There are 96KB of IRAM on all PP502x chips (technically the PP5022 and 5024 have 128KB, but we don't handle that yet), split evenly between core and plugins/codecs
00:33:53asdrubalCOuld someone help me with looking for Ipods on Ebay? I don't know what to search for.
00:34:06amiconnSo the core has 48KB of iram available, hence the end address must be <= 0x4000c000
00:34:15 Quit ol_schoola ()
00:35:26rasherasdrubal: Check the BuyersGuide wiki - basically you want anything that is not a Classic iirc
00:35:41pixelmaor the frontpage ;)
00:35:44amiconnAnd neither a Nano 2nd gen or 3rd gen
00:35:53rasheramiconn: good catch
00:36:06soapor Touch
00:36:18asdrubalrasher: so any ipod video will work?
00:36:39rasherasdrubal: As long as it's correctly labelled, yes
00:36:47asdrubalwhat do you mean correctly labeled
00:36:54linuxstb_asdrubal: Try "ipod 5th generation"
00:37:30rasherasdrubal: If the seller has not written the wrong name, but it's unlikely I'd say
00:38:03 Quit barrywardell (Remote closed the connection)
00:38:56 Join kugel [0] (i=kugel@unaffiliated/kugel)
00:39:32Horschtespecially on the german ebay I have found several "ipod classic" named "ipod video"
00:40:11asdrubalRasher: I don't know about buying ipods on Ebay... their batteries are more than likely drained
00:40:17asdrubalthat's why people sell them on ebay
00:40:44HorschtI bouht one, 3 weeks ago, > 1 year old, battery as good as new
00:41:29asdrubalconsidering that rockbox doesn't do xvid/divx/h264 I guess I don't need ipod video
00:41:38 Quit rocko (Read error: 110 (Connection timed out))
00:41:41Horschtall you have to do, is make sure that it's an ipod video, not an ipod classic, touch, or nano 2nd or 3rd gen
00:41:55Horschtand that the condition is good
00:42:08asdrubalHorscht, how much did you pay?
00:42:22Horscht199€ for a 80GB model
00:42:47Horschti only bought it because it was a "buy now"
00:43:02kfazzhow do i use sansapatcher to install a custom bootloader.bin file?
00:43:06HorschtI don't usualy do auctions...
00:43:07asdrubalholy crap that's alot of dough
00:43:38Horschtwell, classic 80GB is also 250€+
00:44:08asdrubalI want a sansa c240... and then get a 32GB micro SD when they get cheap in a couple years :)
00:44:10Horschtso i rather bought a video 80GB for slightly less at a very good condition
00:44:42kfazznvm figured it out.
00:44:51linuxstb_kfazz: "sansapatcher -a bootloader.mi4"
00:45:18kfazzi did ./sansapatcher -bl bootloader.bin
00:45:26kfazzshould i have used the mi4?
00:46:10linuxstb_bl is for the Sansa bootloader.
00:46:28linuxstb_Not the Rockbox one.
00:46:34kfazzoops : )
00:46:53kfazzoh well, it's my test sansa anyways
00:47:48kfazzso the bootloader build left me with bootloader.bin and bootloader.elf
00:48:00kfazzwhre do i find/create the mi4?
00:48:02linuxstb_No "PP5022.mi4" ?
00:48:10 Quit Domonoky ("Trillian (http://www.ceruleanstudios.com")
00:48:13 Quit ender` (" The two aspiring triangle peaks arching into an abstracted ‘M’ typified the progressive leadership-minded outlook of the co")
00:48:17kfazznope
00:48:35linuxstb_That should be created in your bootloader build directory.
00:48:46linuxstb_(not inside bootloader/)
00:48:48 Join ol_schoola [0] (n=meatwad@c-67-167-20-91.hsd1.il.comcast.net)
00:49:07kfazzah, just saw it
00:49:41kfazzshould i try writing that using -a even though i alredy wrote the .bin using -bl ?
00:49:44linuxstb_You should restore the OF's bootloader, otherwise you won't have recovery mode.
00:49:54kfazzouch
00:50:04kfazzgood thing i didn't unplug it yet
00:50:18linuxstb_In fact, I'm not even sure it will boot OK as it is now...
00:53:26kfazzam i correct in thinking i overwrote the i2c rom and need to recover with e200tool?
00:56:04gevaertsIt doesn't work with IRAM. I now set it up to use 8k, which works as long as I don't put the IBSS_ATTR in.
00:56:10kfazzha it boots!
00:56:35kfazzi did ./sansapatcher -bl i2c-e280.bin
00:57:26kfazz... and now it doesnt. lol
00:58:01kfazzand now it does again.. odd
00:59:08kfazzi built the bootloader with the latest usb patch on svn, and defined HAVE_MULTIVOLUME and HAVE_HOTSWAP for bootloader build
00:59:28kfazzcompiles fine, boots of and rockbox
01:00
01:00:41gevaertskfazz: be careful with that usb patch. Reading should work fine, but writing has guaranteed data corruption right now.
01:00:52kfazzyeah, alrady reformatted once today
01:01:58gevaertsHowever, the sd support seems to work, so if you limit yourself to testing on that, the risk should be low.
01:02:21kfazzno sd card
01:02:28linuxstb_kfazz: No, you shouldn't be writing the i2c ROM, it's the BL_SD_boardSupportSD.rom file
01:03:21kfazzfrom reading the e200tool page it appeared that that has been superseeded in newer versions of e200tool?
01:03:33kfazzi could be reading the page wrong
01:04:05kfazzi didn't end up using e200tool but it boots now
01:05:41 Join barrywardell [0] (n=barrywar@194.46.182.63)
01:07:09***Saving seen data "./dancer.seen"
01:07:39 Quit asdrubal ("Leaving")
01:08:34 Join crzyboyster [0] (n=6210f026@gateway/web/cgi-irc/labb.contactor.se/x-b7d47dd22f1148fc)
01:12:02crzyboysterCan some expert twiki formatter help me out? I am working on this page: http://www.rockbox.org/twiki/bin/view/Main/UserConvertedFonts and where you see the "Name:" field in the table is where I want there to to be a "mini table", like a table inside that column in that table. I want to make different rows just in that column such as "Author:" Help?
01:13:22 Quit ol_schoola ()
01:13:39barrywardellgevaerts: are you saying that usb doesn't work at all when you use IBSS_ATTR?
01:15:35gevaertsbarrywardell: It does work
01:16:27barrywardellgevaerts: ah, ok. I must have misunderstood your comment
01:16:41gevaertsbarrywardell: no. I just pressed enter too soon...
01:17:26gevaertsIt does work a bit, but it seems that outgoing transfers from IRAM don't work. I didn't look in too much detail, because I strongly doubt that we need IRAM to get it to work
01:17:41 Join DerDome [0] (n=DerDome@dslb-082-083-242-162.pools.arcor-ip.net)
01:18:54gevaertsAfter all, for UMS you really need 128k of buffer space to be compatible with 'normal' OS settings, and I don't think the OF allocates all its IRAM to usb
01:18:59barrywardello, i see
01:20:32 Quit crzyboyster ("CGI:IRC (EOF)")
01:20:52amiconngevaerts: Very true... although I wonder how the hardware usb-ata bridges handle that. Do they really have to have 128KB internal buffer ram?
01:20:58*rasher summons MrH
01:20:59amiconn(at least)
01:22:39 Part toffe82
01:22:46gevaertsamiconn: That's what linux uses as a default maximum transfer size, although I found somewhere that windows only uses 64k.
01:24:24gevaertsI don't think it is possible to send transfers to disk/flash as they come in without causing data corruption if anything at all goes wrong
01:25:06gevaertsalthough I might be wrong there
01:25:46 Join jurrie_ [0] (n=jurrie@adsl-068-209-041-021.sip.asm.bellsouth.net)
01:26:01gevaertsAnyway, with the controller we are using, the entire transfer has to be buffered.
01:27:29 Join rocko [0] (n=rocko@64.252.28.49)
01:28:44 Quit conando (Read error: 110 (Connection timed out))
01:29:27 Quit jurrie (Read error: 110 (Connection timed out))
01:29:28 Quit goffa (Read error: 104 (Connection reset by peer))
01:34:47 Join goffa [0] (n=goffa@216.220.23.105)
01:35:05 Join tessarakt [0] (n=jens@e180076093.adsl.alicedsl.de)
01:36:38 Quit styleism ()
01:41:32 Join crzyboyster [0] (n=6210f026@gateway/web/cgi-irc/labb.contactor.se/x-ac821bae0d011c6c)
01:41:58crzyboysterIs there a way to get rid of all the borders on a wiki page?
01:43:36 Quit crzyboyster (Client Quit)
01:43:41krazykiti'm not sure what boarders you're talking about, but i doubt it, as they're likely part of the ro
01:43:53krazykitgeez.
01:44:14 Quit Nico_P (Remote closed the connection)
01:45:46 Join crzyboyster [0] (n=6210f026@gateway/web/cgi-irc/labb.contactor.se/x-5aa9f64fa40c0475)
01:46:28crzyboysterAnd to merge the entire left column of a table say on this page > http://www.rockbox.org/twiki/bin/view/Main/UserConvertedFonts
01:47:07 Quit Thundercloud (Remote closed the connection)
01:49:01 Quit spiorf (Remote closed the connection)
01:49:04madman91hey guys
01:50:17Soul-Burnmy iPod battery died after 10 minutes of use with rockbox + 3 hrs being shut down. what gives?
01:51:11Soul-Burnfuck. it doesn't load
01:51:12 Quit robin0800 (" HydraIRC -> http://www.hydrairc.com <- Organize your IRC")
01:51:17Soul-Burncharge*
01:52:35Soul-Burnok panic mode
01:52:40 Quit crzyboyster ("CGI:IRC")
01:52:52madman91does the new 6th generation ipod have encrypted firmware? or is it just the new hardware that has slowed rockbox development?
01:53:05scorcheboth
01:53:20scorcheSoul-Burn: did you try and reset it?
01:53:44madman91so, it has new hardware, and it has encrypted firmware.... so that could take a while :) hehe
01:54:05scorchewell, nothing is going to happen if no one is working on it ;)
01:54:13BigBambiand the lack of people working on it that we know of
01:54:23Soul-Burntried the standard reset mode
01:54:28Soul-Burnselect+menu
01:54:43Soul-Burnphew
01:54:52Soul-Burnafter 30 seconds it loads
01:55:02Soul-Burnand now it seems to have battery
01:55:09 Quit kugel ("ChatZilla 0.9.80 [Firefox 2.0.0.11/2007112718]")
01:55:15scorchethat
01:55:17scorcheis good
01:55:18scorchebut could
01:55:21scorcheyou not
01:55:23scorchetype like this?
01:55:46scorche;)
01:55:54Soul-BurnI write when the ideas hit my brain :-P I think in short bursts
01:56:21BigBambiPlease try to engage brain for a slightly longer period before hitting enter then
01:56:27BigBambiIt is rather annoying to read :)
01:56:32scorchewell, gather up those bursts before you send them our way please
01:56:35pixelmayou don't need to hit enter each time, just collect a few thought ;)
01:56:48Soul-Burni'll buffer them for like 10 seconds or until buffer fills up
01:57:25BigBambiWhatever it takes to replace the enter key with punctuation
01:57:34Soul-Burnso the case was this: had full charge. played around for like 15 minutes, charge still high. Shut it down (long Play) and after 3 hrs it won't load -> gave a "battery dead" symbol
01:57:43madman91char *scorche[sizeof(scorche.buffer)];
01:57:56madman91:-)
01:58:00scorchepfft...not my buffer :)
01:58:35Soul-Burnat this situation, it won't charge from usb brick or PC. resetting worked (but as usual after a scary 30 seconds)
01:58:51scorcheit will charge, but it might not be apparent
01:58:59madman91g2g guys :) nice talking
01:59:06Soul-Burnafter reset, battery was full
01:59:08*madman91 detaches
01:59:39gevaertsI just compared the main USB related registers for us and manufacturer mode, and I didn't see anything significant
02:00
02:00:04Soul-Burnquestion: is there a soft shut down feature like in the original ipod or do I only have full shut down + full load?
02:00:23scorchethere is no sleep mode
02:00:37scorcheand when the device, it isnt necessarily "full-load"
02:00:52scorches/device/device is running
02:01:28Soul-Burnis there planned support for sleep mode?
02:01:48BigBambiIf someone writes it, sure
02:02:01Soul-Burn"hint hint"?
02:02:03BigBambiIndividual developers work on what they want to
02:02:17 Part pixelma
02:02:20BigBambiSoul-Burn: That won't work - if you really want something write it
02:02:43Soul-Burnwill do :)
02:02:57BigBambi(That is if there isn't a dev interested)
02:08:30gevaertsSome good news : reducing the packet size to 16 bytes works (It didn't work earlier, I probably did something wrong). I just did a badblocks -w for 1MB, and it reported no errors.
02:09:00gevaertsIt is slower though. I'll test if I can use 64 bytes for read, and 16 bytes for write
02:10:13rashergevaerts: \o/
02:11:26gevaertsI'll be confident and use this to install the new binary...
02:12:45BigBambitop work :)
02:14:47 Join z35 [0] (n=z@149.123.33.65.cfl.res.rr.com)
02:15:16gevaerts64 bytes for read and 16 bytes for write fails, but it did boot a rockbox binary that was uploaded over a rockbox usb connection
02:18:34gevaertsI updated the patch.
02:23:51 Quit barrywardell ()
02:24:44gevaertsNow uploading some mp3s over it.
02:26:58 Join crzyboyster [0] (n=6210f026@gateway/web/cgi-irc/labb.contactor.se/x-a82b6988e4754d8b)
02:28:03rashergevaerts: What kind of speed do you get?
02:30:25gevaertsrasher: it doesn't seem too bad. Up to now it copied about 100MB in 5 minutes. That includes a few resets
02:31:18 Quit Rob2222 ()
02:32:00 Join Rob2222 [0] (n=Miranda@p54B0B88F.dip.t-dialin.net)
02:32:09rasherSlow but far from slow enough to be useless
02:32:20kfazzi uninstalled the rb bootloader using sansapatcher and now the of won't boot but rockbox still does...
02:35:44gevaertsIt's still going at about the same speed, just over 300kb/s
02:36:42kfazzinstead of going to recovery mode it says hold switch on shutting down...
02:37:30 Quit crzyboyster ("CGI:IRC (EOF)")
02:38:32 Join star_jasmine [0] (n=arwyneve@75.108.74.16)
02:42:35 Quit rocko (Read error: 110 (Connection timed out))
02:45:19 Join Wolfman928 [0] (n=421586a1@gateway/web/cgi-irc/labb.contactor.se/x-ac3360de293a8b6a)
02:46:47Wolfman928join channel
02:47:07hcspart channel
02:48:13kfazzi can boot rockbox and manufacturer mode, but not of or recovery mode. ideas?
02:48:25Wolfman928im having truble compileing rock box it keeps on returning an error
02:48:59kfazzrec button works in rb, but it acts like i'm not pressing it and goes to rb bootloader
02:49:18kfazz(when i try to get into recovery mode, that is)
02:49:30gevaertskfazz: I'd say you need to reinstall the original bootloader using e200tool
02:50:53kfazzwhere can i find the original bootlaoder? i tried using e200tool init; e200tool i2cprogram i2c-e280.bin . but still nothing
02:52:19gevaertskfazz: Try http://files.zefie.com/PMP/sansa/e200/v1/firmware/
02:52:37Wolfman928im trying to compile rockbox with cygwin but it keeps on returning an erorr
02:52:40kfazzthanks
02:52:52Wolfman928any help?
02:53:01hcsWolfman928: what error?
02:54:13 Join J3TC- [0] (n=jetc123@pool-72-68-62-120.nwrknj.east.verizon.net)
02:54:29Wolfman928hcs:a "line 10: s'r\r': command not found"
02:55:02J3TC-FS #8457 - lists using viewports <--- is this patch applicable?
02:55:08J3TC-I keep getting an error during compile
02:55:14 Join ctaylorr [0] (n=ctaylorr@CPE001839ae25b4-CM0011aea4a276.cpe.net.cable.rogers.com)
02:55:47Wolfman928it also says that line 13 15 and 17
02:55:54hcsWolfman928: I'm not too familiar with the cygwin environment, but what exactly are you running that gives those errors?
02:56:38Wolfman928command "rockbox-20080208/build"
02:56:58 Join Thundercloud [0] (n=thunderc@resnet10.nat.lancs.ac.uk)
02:57:08Wolfman928then"../tools/configure
02:58:19 Quit goffa (Read error: 104 (Connection reset by peer))
02:58:27Wolfman928is there any other compile way for windows
02:58:36Wolfman928im kida new at this
02:58:43ctaylorrHi. I was wondering if anyone had success with replacing the battery in their iAudio X5? The battery in mine has finally gotten to a pretty bad state.
02:58:53 Join goffa [0] (n=goffa@216.220.23.105)
02:59:08Wolfman928im kinda new at this
02:59:47 Quit obo ("bye")
03:00
03:00:41hcsyou could use VMware to run a Linux build environment
03:00:45hcshttp://www.rockbox.org/twiki/bin/view/Main/VMwareDevelopmentPlatform
03:01:41hcsbut I'm still confused by your cygwin errors, you might try reading over the directions carefully again to see if you missed something
03:03:01Wolfman928hanks i find this very useful
03:03:14Wolfman928thanks sry bout the typos
03:05:31 Quit einhirn (Read error: 104 (Connection reset by peer))
03:05:58gevaertsI copied about 500 MB in 30 mins to my sansa using the new patch, and the md5sums match. fsck.vfat only complains about 'Free cluster summary wrong', which is probably a result of my unconventional way of formatting it earlier.
03:07:12***Saving seen data "./dancer.seen"
03:07:37kfazz manufacturing mode -> e200tool recover BL_SDboardsupportSD.rom, then hit rec->got to recoverymode -> coppied OF PP5024.mi4 to 20mb partition.. restart.. and still got rockbox
03:07:51kfazzstill won't boot of either
03:08:33kfazzbl mi4 size: 595000 \n can't load from partition
03:09:12gevaertskfazz: Is that PP5024 the same version as the bootloader ? On my c250 they need to match.
03:09:49kfazzi'm pretty sure , but i'll try again
03:10:27gevaertskfazz: If you have the recovery mode, just dump all three files from the .7z on it at the same time (including the header.txt)
03:13:00 Quit star_jasmine ()
03:13:49kfazzit only gets recovery mode through manufacturer mode with e200tool
03:13:59kfazzif i try without it it goes to rockbox
03:14:45gevaertskfazz: I guess any kind of recovery mode would do. Just get it there and put all three files on it.
03:14:51kfazzi'll try that though, as even using same version pp5022.mi4 and sd_blah.bin doesn't work
03:24:05kfazzGot It! using all 3 files worked.
03:24:58gevaertsWonderful.
03:25:22ctaylorrI'm also wondering if anyone has noticed a significant slowdown for rockbox recently. Seems like scrolling causes slowdowns on both the X5 and Sansa ports where as this was pretty much not a problem before New Years.
03:27:04 Quit BigBambi (Remote closed the connection)
03:28:26 Quit goffa (Success)
03:28:28kfazzi think what i did was overwrite the sansa bootlaoder with the rockbox one
03:28:45kfazzit didn't show the sansa movie, just went straight to the rockbox logo
03:28:47 Join goffa [0] (n=goffa@216.220.23.105)
03:29:11 Quit csc` (Read error: 110 (Connection timed out))
03:29:41gevaertskfazz: good to know that that works. Now that the usb mode is making progress I won't need the sansa firmware anymore soon
03:29:53 Join csc` [0] (n=csc@archlinux/user/csc)
03:31:56kfazzgreat, i've been hoping to get rid of it. guess i jumped the gun though : )
03:33:02gevaertsI'm not going to remove it yet. It's nice to have something to fall back when your latest code experiment goes wrong
03:34:54gevaertsGoing to sleep now. I should have done that hours ago
03:35:05 Quit gevaerts ("nearly time to wake up")
03:36:30 Quit DerDome (Nick collision from services.)
03:36:33 Join DerDom1 [0] (n=DerDome@dslb-082-083-193-050.pools.arcor-ip.net)
03:36:43 Nick DerDom1 is now known as DerDome (n=DerDome@dslb-082-083-193-050.pools.arcor-ip.net)
03:40:57 Quit Wolfman928 ("CGI:IRC (EOF)")
03:42:07 Join linuxstb__ [0] (n=linuxstb@i-83-67-212-170.freedom2surf.net)
03:43:33 Quit n1s ()
03:47:01 Join MethoS_mobile [0] (n=clemens@pD955F004.dip.t-dialin.net)
03:53:50 Quit linuxstb (Read error: 110 (Connection timed out))
04:00
04:07:03 Quit Soul-Burn ()
04:14:35 Join ol_schoola [0] (n=meatwad@c-67-167-20-91.hsd1.il.comcast.net)
04:21:04J3TC-Ah found my problem
04:21:16J3TC-The patch keeps appending to the same file over and over again
04:21:17J3TC-:[
04:21:26J3TC-Took me a while to realize that
04:30:35 Quit miepchen^schlaf (Read error: 110 (Connection timed out))
04:30:35 Quit goffa (Read error: 104 (Connection reset by peer))
04:30:56 Join miepchen^schlaf [0] (n=hihi@p54BF4DC8.dip.t-dialin.net)
04:34:09 Quit csc` (Read error: 110 (Connection timed out))
04:36:16 Join goffa [0] (n=goffa@216.220.23.105)
04:41:50 Join m0f0x [0] (n=m0f0x@189-47-0-28.dsl.telesp.net.br)
04:46:26 Join crzyboyster [0] (n=6210f026@gateway/web/cgi-irc/labb.contactor.se/x-1dcdd90954be8087)
04:46:53crzyboysterWhich font gallery format is better? http://www.rockbox.org/twiki/bin/view/Main/UserConvertedFonts The top or bottom one?
04:51:28 Quit DerDome ("Leaving.")
04:54:59 Join perrikwp [0] (i=4aa794a0@gateway/web/ajax/mibbit.com/x-62e6815ce8668a7b)
04:59:33 Quit crzyboyster ("CGI:IRC")
05:00
05:01:50 Quit Thundercloud (Remote closed the connection)
05:07:13***Saving seen data "./dancer.seen"
05:08:10soapI grok you most likely copied formatting from a WPS page, but:
05:08:13soapA - shouldn'
05:08:27soapshouldn't Rockbox require a clear license?
05:08:46soapB - I assume the "minimum version" info can be dropped?
05:16:12scorchebut did you grok that he left? ;)
05:16:51soapapparently not. showing joins / parts does so clutter the screen. Perhaps I should reconsider.
05:17:13scorchethey are handy
05:19:07 Join raky_ [0] (n=raky@p57A60E73.dip0.t-ipconnect.de)
05:19:42 Nick spr0k3t__ is now known as spr0k3t (n=spr0k3t@CPE-69-76-171-220.kc.res.rr.com)
05:24:21 Quit |aneka| (Remote closed the connection)
05:27:33madman91hey guys
05:28:30 Quit goffa (Read error: 104 (Connection reset by peer))
05:28:35madman91any idea on how long the 6th gen support with take? (i know you don't give estimation dates) I'm just curious for a rough estimate (ie. +- 2,3,4 months)
05:28:44 Join goffa [0] (n=goffa@216.220.23.105)
05:30:29soapuntil someone figures out how to defeat the encryption and even run the simplest of code on the iPod Classic, you might as well count in years.
05:31:11scorchethat is assuming someone is even working on it, of course
05:31:24soapCome back a few months after the first published reports of people running their own code on the device, and you're more likely to get a feel for how much effort it will take.
05:36:45 Quit raky__ (Read error: 110 (Connection timed out))
05:40:15 Join ashes [0] (n=ashes@modemcable123.78-80-70.mc.videotron.ca)
05:41:19 Join crzyboyster [0] (n=6210f026@gateway/web/cgi-irc/labb.contactor.se/x-7546bedcbeb74edd)
05:42:07crzyboysterAny more comments about the font gallery page?
05:42:45crzyboysterAnd BTW, I was given permission by the font author to post those fonts and will ask the authors or check the licenses for all fonts that I post.
05:43:36 Join gtkspert [0] (n=gtkspert@203-206-100-196.dyn.iinet.net.au)
05:44:12kkurbjun:-D, the gigabeat F is booting from flash now
05:44:27kkurbjunno more legacy toshiba bootloader
05:45:18madman91sounds good
05:45:21madman91thanks guys
05:45:24 Quit crzyboyster (Client Quit)
05:45:39madman91while we're on the subject, who has a 5.5G ipod classic to sell? :)
05:54:18midgeykkurbjun: sounds great
05:55:38ashesare any of you familiar with converting flash video for rockbox (on an iriver)
05:55:51midgeycan't wait for the day when a rockbox bootloader is on my f40
05:56:49midgeyashes: do a search on google about convert flash or flv to mpeg. the process should be the same for rockbox
05:57:17ashesthe mpegs i make play video alright but the audio is very choppy
05:57:58asheson my desktop the mpeg plays well
05:58:16 Quit gtkspert_ (Read error: 101 (Network is unreachable))
05:58:16 Quit goffa (Read error: 104 (Connection reset by peer))
05:58:21asheson the iriver and rockbox, the audio is terrible
05:58:28ashesjust for video
05:58:40asheseverything else is fine
05:59:46midgeymake sure the bitrate is at an acceptable setting
06:00