--- Log for 06.09.107 Server: clarke.freenode.net Channel: #rockbox --- Nick: logbot_ Version: Dancer V4.16 Started: 1 day and 15 hours ago 00.00.46 Join ddalton [0] (n=daniel@203-214-50-20.dyn.iinet.net.au) 00.01.32 # How does the radio display numbers with a decimal? For example "87.9"? Doesn't rockbox only use ints? 00.02.32 # it uses two ints afaik: the part before the dot and the part afterwards. 00.02.45 # Speaking of compilers, running rockboxdev has given me a few problems. On kubuntu 64bit, all targets selected, there seems to be a gcc related problem, yet apt-get says gcc is the latest version. Could someone take a quick look for me? http://www.pastebin.ca/682995 00.02.59 # ddalton: or (x / 10) and (x % 10) 00.03.01 # and no, Rockbox doesn't only use ints: it uses fixed point calculatoins 00.03.06 # (where x = 879) 00.03.06 # how is the calculation done? 00.03.29 # the frequency is stored in Hz internally. So you need to divide to get the displayed value anyway 00.04.26 # ddalton: rockbox can't use floating point numbers, but it can still use decimal numbers (fixed point) 00.04.32 # BigBambi: you have build-essential installed? 00.04.42 # Bagder: Will check, one mo 00.04.59 # saratoga: anything new about ffts? 00.05.24 # preglow: nothing new on the ffmpeg lists, though they have submitted some code for various other types of ffts 00.05.24 # Bagder: Hmmm, I thought so, but it appears not. Thanks for the help, sorry for the bother! 00.05.44 # no problemos 00.05.54 # ok I have written a little c program here. It asks the user for a number and then trys to work it out in a decimal. So if on the radio the frequency is 1019 what would be displayed? 00.06.35 # if that is 1019 Hz, just do the math 00.06.45 # you want KHz? divide with 1000 00.06.55 # * bluebrother forgets a usb_find_devices() and wonders why no devices are found :/ 00.06.59 # and the decimals with %1000 then 00.07.20 # Well oddly enough, with build-essential, building works! 00.07.27 # * BigBambi slaps forehead, hard 00.07.28 # :-) 00.07.37 # poor forehead 00.07.48 # He had it coming for being stupid 00.08.40 Join forehead [0] (i=54307747@gateway/web/cgi-irc/labb.contactor.se/x-e3e9fb0c9a2fa511) 00.08.45 # that was uncalled for :/ 00.08.50 Part forehead 00.09.07 # heh 00.09.15 # We all forehead secretly loves it 00.09.34 # insert know somewhere in the sentance above 00.10.08 # hehe 00.10.48 Join My_Sic [0] (n=MySic@modemcable061.67-37-24.mc.videotron.ca) 00.14.49 # can someone tell me what needs to be done so when you enter 1019 it will print 101.9 I am just trying to work the calulation out. http://pastebin.ca/raw/683009 00.14.54 Quit saratoga ("CGI:IRC (Ping timeout)") 00.15.13 # * DerPapst is on a killing spree... stupid mosquitos 00.15.36 # ddalton: x = i % 10; 00.15.50 # ddalton: modulo 10 and loop! 00.15.53 # if y = i /10; 00.16.21 # ddalton: with every mod you pull out one digit and divide by 10 00.16.33 # its really simple 00.17.20 # it displays 101.1 for 1019 00.17.23 # is that right? 00.17.44 # no 00.18.04 # what is wrong now with it? I changed it to %10 00.18.05 # printf("%d.%d\n",i/10,i%10); 00.18.21 # printf("%d.%d", i/10, i%10) 00.18.27 # heh 00.18.35 # linuxstb_: you beat me to it :-) 00.18.37 # lol 00.18.56 # delYsid: I even had a time to type \n 00.19.45 # linuxstb_: and I saved one byte :-) 00.19.51 # who of you did a typing class? ;-) 00.20.20 # ddalton: Is that working for you? 00.20.48 # I wrote printf("\n%d.%d", i/10, i%100); 00.20.51 # is that right? 00.21.00 # no 00.21.03 # and it says 101.19 for 1019. 00.21.13 # ddalton: % = modulo, the remaining of the integer division by something 00.21.16 # no: you need to take the same modulo as you divided 00.21.17 # 10 !! 00.21.48 # int i/10 = 101 ; i % 10 = 9 00.21.51 # thus 101.9 00.22.05 # yep thanks for all the help working as expected. 00.22.08 # got to go 00.22.11 Quit ddalton ("leaving") 00.24.10 Join powr-toc [0] (n=user@84-51-129-124.rickmo645.adsl.metronet.co.uk) 00.24.21 Quit ender` (" Pets are better than children because: 11. If they get pregnant, you can sell their children.") 00.24.37 # Ah, seems the new 160GB drive is from Samsung - http://home.businesswire.com/portal/site/google/index.jsp?ndmViewId=news_view&newsId=20070820005213&newsLang=en 00.25.11 # Hey, I'm getting a Data abort error when I try and play an MP3 on my ipod video (30gb) with rockbox build 14616. Has anyone any ideas? 00.25.54 Quit jhMikeS (Nick collision from services.) 00.25.58 Join jhMikeS [0] (n=jethead7@rockbox/developer/jhMikeS) 00.26.04 # Did you install the 60/80GB build? 00.26.21 # install a current build... 00.26.30 # linuxstb: there's also a 120GB model from Samsung (announced 2 months ago) 00.26.39 Quit googlegoogle ("ChatZilla 0.9.78.1 [Firefox 2.0.0.6/2007072518]") 00.26.43 # linuxstb_: no the 30gb build 00.27.01 # pixelma: I got the same with r14623 00.27.07 # the error you are probably getting was fixed in r14618/19 00.27.16 # powr-toc: Then why didn't you report that you were using 14623? 00.27.17 # Genre9mp3: "ipod classic" has a 160GB disk 00.27.39 # Bagder: I wish they were making ones usable in my older players though. =/ 00.27.40 Join JdGordon [0] (n=jonno@c220-237-57-32.smelb1.vic.optusnet.com.au) 00.27.46 # yeah 00.27.57 # Llorean: because I tried that first, then found 14616 linked as the latest on http://www.rockbox.org/daily.shtml 00.28.02 # I guess my H1xx is going to be capped at 60 or 80 00.28.24 # powr-toc: Those are marked as "daily", while the current build is made every time the source changes. 00.28.32 # morning guys 00.28.38 # powr-toc: The latest is from build.rockbox.org 00.28.41 # Llorean: ok.. 00.28.48 # JdGordon: 'evening 00.28.55 # powr-toc: and you are really sure you took the 30GB one? 00.29.03 # I meant to ask last night.. where on the hidden partition is the bootloader that needs hacking on the e200? 00.29.12 # or should i just do a dump and find it manually? 00.29.44 Quit O112358 () 00.30.01 # pixelma: I'll download and try again, but that's the one I think I grabbed... 00.30.07 Quit delYsid (Remote closed the connection) 00.31.00 # JdGordon: IIRC, it's at the very start of the partition - with a header starting PPBL 00.31.07 Quit bluebrother ("sleep") 00.31.33 # linuxstb_: ok, and sansapatcher doesnt move that at all right? I shouldnt have any problem getting this all going on my sansa? 00.31.36 # block 2 iirc 00.31.36 # amiconn: I am sorry which part of the code are you referring to? It's been some time since I looked that part. 00.31.42 # I wrote that info in the wiki 00.32.02 # JdGordon: No, sansapatcher only modifies the main firmware part of the partition. 00.32.06 # its too early in the morning to be reading wikis :) 00.32.19 # ok great.. hopefully ill have some good news this arvo after uni 00.32.49 # pixelma: I still get the same error with the new build... I'm trying to upgrade from a previous build.... Is removing the old .rockbox folder and copying the new one to the ipods root enough? 00.32.51 # JdGordon: Also, it would be worth writing a test app that dumps the partition table (sector 0) to disk, and ask scorche to run it on his E200R. I don't think we know for sure what it will look like. 00.33.10 # yeah, I was going ot do that... 00.33.25 # the code is there #if 0'd out so thats no problem 00.33.26 # The E200R firmware appears to fake the MBR via USB... 00.34.42 # powr-toc: you should really only need to unzip the build directly over the old one 00.35.27 # pixelma: sure... I'm effectively doing that, but ensuring there are no old files there first. 00.35.53 # powr-toc: When do you get the data abort? Is it before the file starts playing, or afterwards? 00.36.21 # linuxstb_: before 00.36.22 Join actionshrimp [0] (n=nn@86.158.13.55) 00.37.46 # powr-toc: And is this a new problem? i.e. have you played the same mp3 file with older versions of Rockbox? 00.37.59 # linuxstb_: yes 00.38.18 # linuxstb_: though I've not upgraded for quite some time 00.38.33 # how old is your bootloader then? 00.39.38 Join hcs [0] (n=agashlin@rockbox/contributor/hcs) 00.39.46 # pixelma: quite old.... probably about febuary this year... where do I get the new one, and how do I update it (on linux) 00.39.53 Part hcs 00.40.08 # Follow the instructions in the manual - upgrading the bootloader is the same as installing for the first time. 00.40.25 # pixelma: this said, rockbox seems to boot ok... i.e. I can navigate the new menus etc 00.40.48 Quit Llorean (Remote closed the connection) 00.41.04 # powr-toc: pixelma is right - it's definitely a bootloader problem. The bootloader required updating in around March this year (I think..) 00.41.08 Join Llorean [0] (n=llorean@cpe-70-113-103-34.austin.res.rr.com) 00.45.07 # pixelma: linuxstb_: thanks guys.... it works fine now :) The new bootloader install process is way easier also :) 00.46.36 # nice :) 00.47.11 # Only one of us is a guy though... 00.47.14 # any new features I should keep an eye out for? 00.47.42 # http://www.rockbox.org/twiki/bin/view/Main/MajorChanges 00.48.00 # should be one or two 00.48.03 # linuxstb_: hehe as soon as I typed that, I figured, I bet one of them's a girl :) 00.48.24 # now... guess! ;) 00.49.02 # pixelma: I'm guessing you're the girl... Sorry :) 00.49.32 # no problem :) 00.50.59 Quit midkay ("Leaving") 00.51.36 *** Saving seen data "./dancer.seen" 00.51.46 # good night all :) 00.52.01 Quit DerPapst ("So Long And Thanks For All The Fish!") 00.52.54 Quit JdGordon (Remote closed the connection) 00.54.39 Join RudMan [0] (n=RudMan@ool-182fb504.dyn.optonline.net) 00.56.09 Quit actionshrimp ("( www.nnscript.de :: NoNameScript 4.01 :: www.XLhost.de )") 01.00.22 Quit spiorf_ ("Read error: 110 (Connection timed out)") 01.00.35 Join DMJC [0] (n=DMJC@122-49-135-34.ip.adam.com.au) 01.00.46 # ok if I want to remove all trace of rockbox what do I do? 01.00.52 # ipod 80gb 01.01.05 # does a factory reset in itunes accomplish that? 01.03.36 # linuxstb_: you possibly know this 01.03.44 # Yes, although if you're paranoid you may want to run a secure disk formatter (something that actually overwrites all the data). 01.04.04 Quit powr-toc (Remote closed the connection) 01.04.04 # is there any perl script to build/update the database on a iriver hp1x0 ? 01.04.24 # tools/songdb.pl _may_ work... 01.04.26 # i have extra cpu cycles on the laptop to use for that 01.04.48 # and could use that after rsyncing my ~/mp3/ to My\ Music/ 01.06.03 # would rbutilqt do that? 01.06.15 # have my qt4 dev fscked and couldn't compile it 01.06.34 # i think there's a static binary available 01.06.39 # hmm 01.06.44 # where ? 01.06.48 # or someone compiled one at some point 01.07.00 # On the RockboxUtilityQt wiki page 01.07.19 # i bet someone compiled one at some point :) 01.07.47 # But no, rbutilqt doesn't build the database. 01.08.52 # ok, so no need for it, rsync does what i want 01.09.33 # will look at songdb, thanks 01.10.14 Quit Thundercloud (Read error: 104 (Connection reset by peer)) 01.11.44 Quit My_Sic (Read error: 104 (Connection reset by peer)) 01.12.41 Quit linuxstb_ ("CGI:IRC") 01.13.22 Join webguest37 [0] (i=54b3f9de@gateway/web/cgi-irc/labb.contactor.se/x-5676d87b8c932c28) 01.14.29 # hi, could this be implemented: http://www.thehumorarchives.com/joke/Snackout :D :D :D 01.14.41 Quit webguest37 (Client Quit) 01.22.12 Quit iamben (Read error: 104 (Connection reset by peer)) 01.28.48 Join iamben [0] (n=ben@dpc67142179038.direcpc.com) 01.28.58 Nick fxb is now known as fxb__ (n=felixbru@h1252615.stratoserver.net) 01.30.03 Quit obo ("bye") 01.33.33 Join My_Sic [0] (n=MySic@modemcable061.67-37-24.mc.videotron.ca) 01.35.44 Quit petur ("Zzzzz") 01.40.19 Quit Genre9mp3 () 01.44.55 Join midkay [0] (n=midkay@rockbox/developer/midkay) 01.50.56 Quit jhMikeS (Nick collision from services.) 01.51.02 Join jhMikeS [0] (n=jethead7@rockbox/developer/jhMikeS) 01.54.04 Join Febs [0] (n=chatzill@207-172-204-33.c3-0.rdl-ubr4.trpr-rdl.pa.cable.rcn.com) 01.54.08 Join donutman25 [0] (n=chatzill@65.75.87.48) 02.01.20 Quit My_Sic (Read error: 104 (Connection reset by peer)) 02.09.58 # Febs: you forgot to make use of colours too (in the forums) ;) 02.11.48 Quit Kupopop (" ") 02.13.40 Join rocko [0] (i=rocko@pc-71-80-121-24.will.ct.charter.com) 02.17.38 # pixelma: :) 02.17.57 Quit akaias (Read error: 113 (No route to host)) 02.20.12 Join yoyah56 [0] (i=4cbecdfb@gateway/web/cgi-irc/labb.contactor.se/x-4166a8408c424e95) 02.20.19 Part pixelma 02.21.52 Join Rob2222 [0] (n=Miranda@p54B1686D.dip.t-dialin.net) 02.22.46 # question, i have removed Rockbox from my Gigabeat reloaded all my music but it keeps saying that no files are found, what should i do? 02.23.08 # ask somewhere else, since it has nothing to do with rockbox 02.23.25 # http://www.mygigabeat.com/ has forums for that 02.24.22 Join linuxstb_ [0] (i=5343d4aa@rockbox/developer/linuxstb) 02.25.27 # yoyah56: What keeps telling you "no files are found"? And is that the exact error message? 02.29.02 # yea 02.31.17 # well it says, "no file found" when i try to play a song 02.31.58 # What is "it" ? The original Toshiba firmware? 02.32.26 # yea the original firmware 02.33.11 # I'd remove all the music files from the device and then re-load them using the approved toshiba method 02.33.43 # Then I'm afraid I can't help. As krazykit said, you will be better of asking in a forum devoted to that firmware - most Rockbox users have never used Toshiba's firmware. 02.34.06 # (and it's also off-topic for this channel) 02.34.09 Quit Dwyloc ("CGI:IRC (EOF)") 02.34.33 Join My_Sic [0] (n=MySic@modemcable061.67-37-24.mc.videotron.ca) 02.34.45 # ok, thanks 02.35.58 Quit My_Sic (Read error: 104 (Connection reset by peer)) 02.36.08 # is there a way 02.36.19 # to download older versions of rockbox 02.36.25 # my sistes going to kill me 02.37.58 # How old? 02.37.58 Quit yoyah56 ("CGI:IRC (EOF)") 02.38.57 # sister or version or rockbox :) 02.40.02 # linuxstb_: bed, huh? ;) 02.40.09 # * linuxstb_ couldn't sleep 02.40.36 # RudMan: Whichever... 02.41.06 # rocko, yep. on the "current build" page, there's a link to archived daily builds 02.42.31 # scorche: Somehow I have a feeling Shane won't stop... 02.43.27 Join My_Sic [0] (n=MySic@modemcable061.67-37-24.mc.videotron.ca) 02.44.08 # linuxstb_: one can hope... 02.49.19 Quit linuxstb_ ("CGI:IRC") 02.50.40 Quit My_Sic (Read error: 104 (Connection reset by peer)) 02.51.40 *** Saving seen data "./dancer.seen" 02.54.14 Join BigMac_ [0] (n=mike@c-71-234-95-131.hsd1.ct.comcast.net) 02.55.08 Join Gibbed [0] (i=rick@pool-96-229-91-46.lsanca.dsl-w.verizon.net) 02.55.12 Quit Rick (Nick collision from services.) 02.59.25 Join My_Sic [0] (n=MySic@modemcable061.67-37-24.mc.videotron.ca) 03.01.25 Join Rick [0] (i=rick@pool-96-229-91-46.lsanca.dsl-w.verizon.net) 03.02.00 Quit miepchen^schlaf ("Verlassend") 03.06.43 Quit BigMac (Read error: 110 (Connection timed out)) 03.10.30 Join akaias [0] (n=akaias@c-67-175-173-88.hsd1.il.comcast.net) 03.13.26 Quit Gibbed (Read error: 110 (Connection timed out)) 03.21.50 Join Nico_P [0] (n=nicolas@rockbox/developer/NicoP) 03.24.45 Quit My_Sic (Success) 03.46.05 Join My_Sic [0] (n=MySic@modemcable061.67-37-24.mc.videotron.ca) 03.47.13 Quit grndslm ("Leaving") 03.48.46 Join nowayx [0] (n=nowayx@71-38-205-207.albq.qwest.net) 03.49.12 # good evening 03.49.44 # hello 03.50.26 # i wrote a new game/plugin. What are the steps to have it on rockbox? 03.51.28 # Submit it to the Flyspray patch tracker. 03.51.50 # Ok.. and from there? What happen? Patch it until it runs on all players? 03.52.31 # Hmm I will wait for some feedback. 03.52.44 # If you want to get it accepted into Rockbox, then yes, it would almost certainly need to run on all supported players, or at least all that have hardware that support whatever your plugin is. 03.53.03 # It also needs to be submitted under a GPL-compatible license. 03.53.13 # Ok, great.. I tested it for a few players (with lcd) 03.53.24 # Yes, all my code is gpl :) 03.53.49 # everything that i code... (if i'm out the clock) 03.54.04 # Febs, thanks 03.58.36 Quit nowayx ("Leaving") 04.09.45 Quit newbyx86 () 04.10.04 Quit DMJC (Read error: 110 (Connection timed out)) 04.10.27 Join pwnzorrrr [0] (i=4a6e16a9@gateway/web/cgi-irc/labb.contactor.se/x-f7c3d0d91f6cdab3) 04.10.32 # hey 04.10.38 # any one here? 04.10.51 Join DMJC [0] (n=DMJC@219-90-160-85.ip.adam.com.au) 04.10.57 # hellooooo 04.11.02 # patience, dude. 04.11.06 # i need help with rock box x.x 04.11.12 # i got a new ipod nano 04.11.16 # it's typically best to simply ask the question 04.11.19 # ut i dont know how to get rock box on it 04.11.31 # can i hav sum help on how to get it? 04.11.35 # it's a 2g nano? 04.11.38 # its the 4 gig 04.11.47 # well 3.6 to be exact :\ 04.11.50 # no, i mean, is it the second generation? 04.11.57 # oh 04.12.04 # its the kind that looks like the mini x.x 04.12.08 # its green :P 04.12.22 # its rounded and metealic looking 04.12.26 # is that 2nd gen? 04.12.30 # x.x 04.12.53 # http://ipodlinux.org/Image:NewIpodNano.jpg 04.12.55 # one of those? 04.13.07 # yeah 04.13.15 # rockbox doesn't run on those. 04.13.19 # O 04.13.24 # NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO 04.13.30 # wut about linux? 04.13.57 # ipod linux? 04.14.06 # nope. 04.14.09 # not as far as i know 04.14.12 # ("") (o_o) ("") 04.14.16 # YYYYYYYYYYYYYYYY >< 04.14.42 # (")(-_-)(") 04.14.42 # please stop being disruptive 04.14.56 # k but still its a bummer >.> 04.15.08 Join eigma [0] (i=ufyerke@CABLE-206-188-76-21.cia.com) 04.15.43 # sigh i must look this up 04.15.48 # wut gen is my ipod then? 04.15.56 # it would help me in my search 04.15.59 # your nano appears to be a second generation 04.16.05 # ok 04.16.07 Quit pwnzorrrr ("CGI:IRC") 04.17.23 # yeah because the 3rd gen is short and fat 04.17.53 Join newbyx86 [0] (n=newby@ip68-7-12-123.sd.sd.cox.net) 04.18.43 Quit My_Sic (Read error: 110 (Connection timed out)) 04.20.59 Join hcs [0] (n=agashlin@rockbox/contributor/hcs) 04.21.24 Quit billytwowilly (No route to host) 04.31.39 Quit BobShield (Read error: 104 (Connection reset by peer)) 04.32.47 Join BobShield [0] (i=rshield@c-24-15-123-57.hsd1.il.comcast.net) 04.38.46 Join Soap_ [0] (n=Soap@rockbox/staff/soap) 04.38.58 # pwnzorrr: read this and start to follow it immediately: http://www.rockbox.org/wiki/IrcGuidelines 04.39.38 # Febs, he left a half hour ago... 04.39.57 # yeah, I just realized I had scrolled up and wasn't at the bottom of the chat. 04.40.47 Quit Soap (Read error: 104 (Connection reset by peer)) 04.42.02 # maybe there should be a "read to the end of the scroll back before you post" guideline 04.42.09 # hehe 04.42.19 Quit jhulst (Remote closed the connection) 04.42.37 # That's what I get for flipping back and forth between #rockbox and #rockbox-community. 04.43.02 # tsk tsk. 04.44.26 Join asda [0] (i=47ad9a9b@gateway/web/cgi-irc/labb.contactor.se/x-480541ebc8595bc5) 04.44.36 Quit asda (Client Quit) 04.46.10 Quit Nico_P (Remote closed the connection) 04.47.54 Join jhulst [0] (n=jhulst@c-71-205-0-132.hsd1.mi.comcast.net) 04.48.12 Join My_Sic [0] (n=MySic@modemcable061.67-37-24.mc.videotron.ca) 04.49.01 Quit donutman25 ("ChatZilla 0.9.78.1 [Firefox 2.0.0.6/2007072518]") 04.51.42 *** Saving seen data "./dancer.seen" 04.54.06 # I put a new version of rockbox on my sisters ipod 04.54.11 # it keeps data aborting 04.54.52 # When was the last time you updated the bootloader? 04.56.14 # a long time 04.56.16 # mmm 04.56.23 # good looks Febs 04.57.55 # Update to the latest bootloader and it should solve your problem. You can now use Rockbox Utility for this: http://www.rockbox.org/twiki/bin/view/Main/WebHome?topic=RockboxUtilityQt 04.59.36 Quit My_Sic (Read error: 104 (Connection reset by peer)) 05.00.23 Join My_Sic [0] (n=MySic@modemcable061.67-37-24.mc.videotron.ca) 05.01.43 Join sbrubes [0] (n=sbrubes@201-67-48-205.bsaco700.dsl.brasiltelecom.net.br) 05.02.53 # it won't wok Febs :( 05.03.38 # it says my bootloader is up to date 05.04.02 # In that case, what version of Rockbox did you put on the ipod? 05.04.11 # the newest 05.04.18 # I don't think the bootloader is up to date though 05.04.25 # ipod video 30g 05.04.54 # What is the actual build version number. Look at System-->Rockbox Info. 05.05.04 # at what point does it say data aborting 05.05.39 # when I start to play a song 05.05.56 Join bb [0] (n=bb@unaffiliated/bb) 05.06.06 # rocko: first, check the version number as I described above. 05.06.19 # did you try initializing the database again? 05.06.58 # r14324-070814 05.07.14 # what does that mean RudMan 05.08.51 # rocko: that is NOT "the newest" version. Install a current build. 05.10.47 # how bizarre...I just started the sim and there is no .rockbox dir below it 05.11.08 # did you make install? 05.11.32 # no, this is not on the dev image 05.11.39 # hey all has there been anychangesd for battery life for sansa 05.11.47 # it's like the .rockbox dir was deleted or moved 05.11.48 # is it better than sansa's firmware? 05.11.54 # im looking at a comparison 05.12.00 # no - it is worse than the OF 05.12.03 # RudMan: Or you're in "supported" mode so you don't see the hidden folder? 05.12.07 # oh ok 05.12.28 # EnterUserName, but the features of rockbox make it worth the battery life difference 05.13.16 # llorean:no,no this has nothing to do with rockbox, this is a windows issue 05.13.27 # ok I got r14624-070906 05.13.29 # RudMan: I thought you said you couldn't see it in the sim? 05.13.35 # same problem with the errors. 05.13.44 # data abort* 05.14.35 # I don't think the bootloader is right 05.14.36 # llorean: yeah, I couldn't see it in the sim but it's because the actual directory in windows is gone.....this is not a rockbox issue so I'll cease 05.17.18 Quit bb_ (Read error: 110 (Connection timed out)) 05.17.26 Join clocks [0] (n=clocks@r74-192-253-28.tyrdcmta02.tylrtx.tl.dh.suddenlink.net) 05.17.30 # when I go to use that rockbox utility 05.17.32 # it says 05.17.53 # "no ipod found" 05.18.07 # is there usb deteciton yet on svn for sansa 05.20.30 Join perplexity [0] (i=heh2865@dxb-as74784.alshamil.net.ae) 05.20.36 Quit My_Sic (Read error: 110 (Connection timed out)) 05.20.46 Quit sbrubes ("Leaving") 05.20.55 # rocko: did you delete rockbox and restore the ipod bootloader back to the original? 05.21.41 # I should delete the .rockbox ? 05.22.55 # rocko: I thought you said that Rockbox Utility told you that you had the latest bootloader. 05.23.28 # yeah it did 05.23.44 # rocko: how could it do that if it didn't detect your ipod? 05.23.46 # rocko: Turn your ipod off. Turn it back on and then hold the >>| button as it boots. What bootloader version is reported. 05.25.45 Join Soap__ [0] (n=Soap@cpe-65-189-128-141.columbus.res.rr.com) 05.26.42 Join DC1 [0] (n=dc1@pool-70-107-155-237.ny325.east.verizon.net) 05.27.16 # it doesn't do anyting when I hold >>| 05.29.24 # OK. do you know how to put your iPod in disk mode? 05.30.10 # like when I plug it in? 05.30.30 # Yes. 05.30.34 # yes 05.30.50 # Put it in disk mode and then connect to your computer. 05.31.35 Quit eigma (Read error: 104 (Connection reset by peer)) 05.32.31 Join billytwowilly [0] (n=chris@CABLE-72-53-22-61.cia.com) 05.32.57 Quit billytwowilly (Remote closed the connection) 05.41.12 Quit hcs ("Leaving.") 05.42.06 Quit tchan (No route to host) 05.42.15 # I guess it killed his computer too 05.42.43 Quit YouCeyE (Read error: 113 (No route to host)) 05.43.00 Quit Soap_ (Read error: 110 (Connection timed out)) 05.49.12 Quit rocko ("Leaving") 05.51.21 Quit Febs ("Goodnight.") 05.55.44 Join YouCeyE [0] (n=YouCeyE@unaffiliated/youceye) 05.57.41 Join hcs [0] (n=agashlin@rockbox/contributor/hcs) 06.10.34 Join webguest45 [0] (i=3fc464c2@gateway/web/cgi-irc/labb.contactor.se/x-9a6665f906354417) 06.11.01 # is there anyway to play a podcast under rockbox? 06.14.09 Quit DC1 ("If Obi-wan ain't home then I don't know what the fsck we're gonna do. I ain't got no other connections on Tattooine.") 06.14.23 Quit japc (Read error: 104 (Connection reset by peer)) 06.14.51 Join BHSPitLappy [0] (n=steve-o@129.120.244.117) 06.17.09 Quit webguest45 ("CGI:IRC (EOF)") 06.23.49 Join eigma [0] (i=jpdrgfb@CABLE-206-188-76-21.cia.com) 06.25.07 Quit bb (Remote closed the connection) 06.25.22 Join bb [0] (n=bb@unaffiliated/bb) 06.28.39 Quit eigma () 06.29.53 Quit idnar (Nick collision from services.) 06.29.55 Join idnar_ [0] (i=mithrand@unaffiliated/idnar) 06.34.30 Quit perplexity (Read error: 113 (No route to host)) 06.51.44 *** Saving seen data "./dancer.seen" 06.54.49 Join tchan [0] (n=tchan@lunar-linux/developer/tchan) 06.56.08 Nick fxb__ is now known as fxb (n=felixbru@h1252615.stratoserver.net) 06.57.41 Join ptw419 [0] (i=ptw419@66-90-157-228.dyn.grandenetworks.net) 07.01.36 Join kubiixaka [0] (n=Miranda@ip-89-103-17-41.karneval.cz) 07.02.40 Quit RudMan (Remote closed the connection) 07.05.43 Part toffe82 07.06.08 Quit jhMikeS (Nick collision from services.) 07.06.14 Join jhMikeS [0] (n=jethead7@rockbox/developer/jhMikeS) 07.12.57 # jhMikeS: How are you doing this?? 07.13.45 # (I mean ghosting the old nick before entering the channel) 07.14.28 # starting irc, ghosting the nick, switching nicks, joining the channel? 07.15.22 # Hmm, but that looks automatic... 07.15.44 # could be a script that does the same thing 07.16.15 # amiconn: just curious, but do those "next-gen" NiMH require the use of their own charger, or can regular chargers work as well?...many i saw "recommended" the use of their own charger, and i was wondering if it truely made a difference 07.16.48 # Regular NiMH charger is sufficient 07.17.04 # alright...thanks 07.17.31 # But it should be a good one. 07.18.04 # is this "good" measurable with a multimeter? 07.19.33 # http://www.ansmann.de/cms/consumroot/batteries/rechargeable/maxe.html "- No special charger required!" 07.19.57 # some i saw said it should, some disagreed depending ont he site and battery 07.20.10 # No it's not. 07.21.03 # One property of a good charger is that it handles single cells. Cheap chargers often charge cells in pairs, which is bad 07.22.31 # And its electronics should be able to fully charge the cells without overcharging. That requires proper monitoring. 07.28.56 # amiconn: just with a little Visual IRC script 07.29.56 Quit DMJC (Read error: 110 (Connection timed out)) 07.36.39 Quit jhMikeS (Nick collision from services.) 07.36.42 Join jhMikeS [0] (n=jethead7@rockbox/developer/jhMikeS) 07.37.50 Part Hellmark ("Leaving") 07.50.08 Nick fxb is now known as fxb__ (n=felixbru@h1252615.stratoserver.net) 07.53.49 Join norbusan [0] (n=norbusan@chello213047086216.5.14.tuwien.teleweb.at) 07.53.52 Part norbusan 07.58.34 Join skate3214 [0] (n=chatzill@C-59-101-82-50.syd.connect.net.au) 07.59.31 Quit skate3214 (Client Quit) 08.00.33 Join ivan` [0] (n=ivan@unaffiliated/ivan/x-000001) 08.03.08 Quit jhMikeS (Nick collision from services.) 08.03.14 Join jhMikeS [0] (n=jethead7@rockbox/developer/jhMikeS) 08.10.31 Join LinusN [0] (i=linus@rockbox/developer/LinusN) 08.11.10 Join Jangari [0] (n=jangari@178.64.233.220.exetel.com.au) 08.11.22 # that data abort bug fixed yet? 08.11.40 Join austriancoder [0] (n=austrian@rockbox/developer/austriancoder) 08.11.58 # Jangari: Unfortunately, none of the developers with psychic powers are here right now. Which data abort specifically were you referring to? 08.12.09 # iPod Touch... hmmmm 08.13.18 Quit BigBambi ("Leaving") 08.13.29 # a few people had this issue with the build of.... the third, i think 08.13.35 # on a couple of different players 08.13.47 # an h10 and an ipod video 30GB 08.14.20 # database initialisation would halt halfway through and show a 'data abort at 0042xxxx or something 08.14.30 # Yes, that one is fixed. 08.14.35 # oh really? 08.14.38 # groovy 08.14.51 Join GodEater [0] (i=c2cbc95c@rockbox/staff/GodEater) 08.15.12 # Llorean: there? 08.15.23 # i just downloaded an older build and it worked brilliantly, 08.15.25 # do any of the psychic developers know if the 160gb uses the 5.5G chips? 08.15.45 # LinusN: Yes. If it's about my loss of temper earlier, I'm feeling pretty bad about it already. 08.16.00 # ivan`: As they're not out yet, there's not much information on 'em. :) 08.16.13 # thanks 08.16.16 # they're bringing out 160 GB players? 08.16.27 # I would guess that they won't be, though. 08.16.56 # i suppose eventually, hard drive space will be such that you won't need compression, 08.17.13 # mm, sweet 08.17.16 # people will still compress anyway to fit in 20K tracks that they don't listen to 08.17.24 # well, yeah 08.17.42 # With flac you can maybe approximate to an average of 1/2 gb per CD, meaning 80cds already. 08.17.55 # flac is more like 300GB 08.17.56 # i have only 10GB of my 30 used, if it was uncompressed it'd be roughly 90-100GB 08.18.15 # why would a cd ever be more that 700MB? 08.18.20 Join norbusan [0] (n=norbusan@chello213047086216.5.14.tuwien.teleweb.at) 08.18.26 Part norbusan 08.18.37 # it makes no sense to inflate the 44.1kHz 16bit PCM wav 08.18.57 Join Rob222241 [0] (n=Miranda@p54B17694.dip.t-dialin.net) 08.18.57 # 703MB :) 08.19.15 # dvd-video audio is already 48000hz 08.19.23 # and it makes no sense to resample it to 44.1k 08.19.53 # is it? 08.19.56 # hmm, 08.20.01 Join CaptainSquid [0] (n=Miranda@proxy14.netz.sbs.de) 08.20.08 # i work with 24bit 96kHz 08.20.14 # 1 GB per channel per hour 08.20.20 # roughly 08.20.32 # or maybe exactly, i can't remember 08.21.44 # You have: 96000 * 24 bits / second 08.21.44 # You want: gigabytes/hour 08.21.44 # * 1.0368 08.22.14 # masters of the build system: You might want to disable my build server for a few days - BT have once again managed to knock out my home broadband connection :( 08.22.53 # ouch 08.23.23 # mm, no, it's slightly over an hour i think 08.23.35 # like, an hour, 7 minutes 08.23.40 # by memory 08.23.46 Join grndslm [0] (n=grndslm@24-116-87-97.cpe.cableone.net) 08.23.52 # as far as I'm concerned, storage remains inadequate until every CD ever made fits inside a drive with no moving parts 08.24.27 # but i specify 1gb per hour per channel in the documentation, so stay on the safe side 08.29.19 # grr 08.29.37 # linuxstb: The "Hang in USB screen" bug on ipod is not fixed 08.29.43 # * scorche kicks the forums 08.29.44 # * LinusN ph33rz the anger of amiconn 08.36.37 Quit Rob2222 (Read error: 110 (Connection timed out)) 08.38.12 Join ddalton [0] (n=daniel@203-214-50-20.dyn.iinet.net.au) 08.43.37 Join B4gder [0] (n=daniel@static-213-115-255-230.sme.bredbandsbolaget.se) 08.46.27 Quit BHSPitMonkey (Read error: 104 (Connection reset by peer)) 08.47.46 Join BHSPitMonkey [0] (n=stephen@129.120.244.114) 08.48.01 Join miepchen^schlaf [0] (n=hihi@p54BF7A69.dip.t-dialin.net) 08.49.01 Join ender` [0] (i=krneki@84-255-206-8.static.dsl.t-2.net) 08.50.33 # * GodEater reads the apple page on the new ipods. the Touch *starts* at $299 ?!?! Rip off city! 08.51.48 *** Saving seen data "./dancer.seen" 08.52.03 # yea your right GodEater 08.52.18 # youre* 08.54.03 # you're** 08.54.04 # yay, c200 work 08.54.22 # at that price just unlock an iphone 08.56.01 # B4gder: don't know if you've read the logs or not - but my home broadband is on the fritz again so my build server is off the 'net for the forseeable 08.56.30 # ok, it shouldn't matter much to the build system, it deals with server outages 08.56.51 # unless you're bothered with the ssh attempts? 08.57.04 # doesn't bother me a bit 08.57.08 # imo ipod are overpriced and at the same time under featured 08.57.12 # just thought I'd let you know 09.01.32 Join spiorf [0] (n=spiorf@host105-174-dynamic.58-82-r.retail.telecomitalia.it) 09.03.28 Join petur [0] (n=petur@rockbox/developer/petur) 09.04.08 Join Zagor [0] (n=bjorn@rockbox/developer/Zagor) 09.09.23 # * petur gets seriously fed up with indian programmers... explaining it 3 times and still not getting through :( 09.14.14 Quit GodEater ("CGI:IRC (Ping timeout)") 09.18.53 Join woodensoul [0] (n=noneofya@pool-72-86-76-28.aubnin.fios.verizon.net) 09.20.29 # can someone point me to where I can find out cygwin commands such a changing directories, etc? 09.21.35 Join GodEater [0] (i=c2cbc95c@rockbox/staff/GodEater) 09.21.53 # I guess that's any unix-like command line tutorial 09.23.38 # i didn't see anything like that in the "for developers" info on the rockbox site 09.23.55 # google.com they are the same as linux. cd basically cygwin is a linux terminal for windows but can't run apps compiled for linux. 09.23.59 # cd changes dir 09.24.21 # It wouldn't be on the rockbox site 09.24.23 # the important thing to remember is that you need to use lots of spaces.. cd\xxx will not work 09.24.50 # how do you go back one directory? 09.24.52 # I just type cd rockbox and it takes me to my rockbox dir 09.25.17 # * ddalton Continues reading his c book! 09.25.44 # cd .. goes back one i see 09.26.28 # yes and you can also type cd dir1/dir2 so if you have a dir1 in the dir your in and then in that dir2 you will end up in dir2 09.26.36 # if that makes any sence 09.26.52 # yes, thanks 09.27.19 # and a good thing to know is how to run scripts or apps so executables 09.28.11 # also, if i wanted to change the keymap for the gigabeat back to the way it used to be in the WPS, is the only source file i need to change keymap-gigabeat.c? 09.28.57 Join pixelma [0] (i=pixelma@rockbox/staff/pixelma) 09.29.14 Join davina [0] (n=davina@cpc1-sout6-0-0-cust616.sotn.cable.ntl.com) 09.29.25 Join fm2 [0] (i=c27f0814@gateway/web/cgi-irc/labb.contactor.se/x-5038955c2b3c7e4d) 09.31.12 # There seems to be a short (about 0.5 secs) delay on Sansa between a button press and backlight going on. Is it just me or do you also experience this? 09.31.23 # i also experience this 09.32.22 # My e280 is brand new and i haven't been getting a full battery reading even after fully charging the unit. Is this a known problem? Also, should I not charge via Rockbox? 09.34.10 # the battery level isn't perfected for the sansa afaik 09.34.22 # and people report that the OF charges faster than rockbox on the sansa 09.34.27 # slightly OT, but does anyone know what setting --as-needed in LDFLAGS does ? 09.35.11 Quit atsea-68 (Remote closed the connection) 09.35.46 # Well the thing that confused me is that it did seem to be more accurate the first time I charged it. But now it isn't. 09.36.02 # GodEater: it seems to detail what libs that are actually needed... 09.36.20 # or rather, which libs to mark as needed as normall all given are 09.36.30 # ah ok 09.36.53 # * B4gder just reads "man ld" - never used this option myself 09.37.15 # which text editor do you guys use for editing/creating source files? 09.37.23 # emacs! 09.37.25 # B4gder: as i was @AMS they told whats the best to charge over usb... will look into this issue if I have enought time 09.37.32 # * B4gder never misses an opportunity 09.38.54 Quit GodEater ("CGI:IRC") 09.38.57 Join GodEater [0] (i=c2cbc95c@rockbox/staff/GodEater) 09.39.43 # I'm not talking about battery, my concern is the delay before the backlight turns on. In the OF, it tirns on immediately. So this must be a RB "artefact". 09.39.53 # B4gder: which flavour, Gnu, or X ? 09.40.03 # gnu 09.40.15 # I always preferred X for some reason 09.40.31 # I come from a time long before the X one existed ;-) 09.40.34 # probably because you could load a wallpaper into the text buffer, or some pointless rubbish like that 09.40.38 # :) 09.40.47 # * B4gder recalls Lucid emacs... 09.40.58 # * GodEater recalls cutting his emacs teeth on JOVE 09.40.59 # Bagder: -- 19.3.6 or 20.x? -- 20.x? -- Ah you bastard! :-) 09.41.30 # I'm on 22.1.1 at home 09.41.46 # * GodEater tends to use vi more these days though, as it's the only editor pretty much guaranteed to be installed on a unix box 09.42.52 # emacs is just one of the first packages I install on any system I'm on 09.42.53 # B4gder: there was an old joke about two talking about what editors they use. vi user would be shot btw. But in the end one used 19.3.x and the other 20.x. And that was not good :-) 09.43.04 # hehe 09.43.23 # B4gder: I'd install it if I had rights on most of the systems I log in to - sadly I don't 09.43.27 # editor flame wars are the best! 09.43.33 # most of them I don't even have a home directory 09.45.47 # I'm trying to build from the latest source, and I'm getting errors. How can I make sure that the directory is complety in sync with the current source? 09.45.58 # woodensoul: svn update! 09.46.05 # i did just do that 09.46.14 # then you're in sync until someone commits 09.46.26 # i typed svn co svn://svn.rockbox.org/rockbox/trunk rockbox 09.46.32 # the error i'm getting is... 09.46.40 # pastebin!!! 09.47.06 # pastebin? 09.47.39 # step 2- type pastebin in google's search field 09.47.48 # playback.c:2747: error: syntax error before '<<' token 09.47.53 Join linuxstb_ [0] (n=linuxstb@rockbox/developer/linuxstb) 09.47.56 # woodensoul: that's a bad patch applied 09.48.07 # or rather a conflict on update 09.48.14 # most probably 09.48.34 # remove the patch and try again 09.49.01 # if there is a patch in the directory, it's automatically applied? 09.49.20 # svn update merges the repo's changes with your local changes 09.49.32 # and now they collided 09.50.43 # So what about backlight the delay? It doesn't exist on H120. Is it a Sansa LCD driver specific issue? 09.50.49 # first i svn updated, then i made a change in the gigabeat-keymap.c and now i'm trying to build and i get a bunch of errors regarding playback.c 09.51.11 # woodensoul: and you have no patch applied? 09.51.23 # then please pastbin your full error 09.51.27 # pastebin 09.52.00 # i'm learning how to do that 09.52.09 Quit linuxstb (Read error: 113 (No route to host)) 09.52.15 Join linuxstb [0] (i=5343d4aa@rockbox/developer/linuxstb) 09.52.17 # * B4gder goes searching for a coffee refill 09.53.16 Quit BHSPitLappy (Read error: 110 (Connection timed out)) 09.54.13 # woodensoul: You could type "svn revert -R ." to remove any changes that have been made locally to your files. That will remove any patches you've applied in the past. 09.55.00 # from which location (directory) should i type that? 09.55.20 # your source tree 09.55.20 # have we been flooded with port requests for the new ipods yet? 09.55.38 # if by "flooded" you mean one forum thread 09.55.40 # then yes :) 09.55.43 # Zagor: yessir 09.55.49 # before they were even announced as well 09.55.53 Quit linuxstb (Client Quit) 09.55.56 # haha 09.55.58 Join linuxstb [0] (i=5343d4aa@rockbox/developer/linuxstb) 09.56.26 # i'll try that linuxstb 09.56.31 # I guess those requests came with a hefty pile of tech docs, right? ;) 09.56.47 # Zagor: several hundred kilos worth yes 09.57.01 # in fact, the code will practically write itself 09.57.01 # woodensoul: Another useful command is "svn status" - that will tell you which files have been locally modified (indicated by an M) 09.57.10 # such as: "cool screen", "nifty touch-doodaas" and "awesome itunes" 09.57.24 # yeah all that 09.57.29 # "now get cracking" 09.57.36 Quit GodEater ("CGI:IRC") 09.57.39 Join GodEater [0] (i=c2cbc95c@rockbox/staff/GodEater) 09.57.49 # Zagor: why are you still talking - isn't it done already? 09.58.03 # he just needs a new logo 09.58.05 # :-) 09.58.10 Quit GodEater (Client Quit) 09.58.17 Join GodEater [0] (i=c2cbc95c@rockbox/staff/GodEater) 09.58.18 # Zagor: (kidding) 09.58.20 # anyone got a suggestion? 09.58.38 # svn revert -R doesn't work 09.58.47 # says not enough arguments 09.58.50 # svn revert -R ./ 09.58.58 # it doesn't work here either. Did you check out from svn 09.59.31 # woodensoul: Re-read the command I suggested... 09.59.36 # OK, that changed some source files. I will try building again. 09.59.59 # what was the command? Sorry can't find it 10.00.17 # Almost what austriancoder typed - "svn revert -R ." 10.00.44 # is the . part of it? 10.00.50 # i typed svn revert -R ./ and it worked 10.01.05 # svn status gives me a list of files, but no M designation 10.01.11 # ddalton: yes - it's the current directory 10.01.11 # its working thanks. 10.02.05 # woodensoul: Yes, "svn status" shouldn't show any modified files after you type svn revert... 10.03.00 # then possibly not all the files were reverted? 10.03.13 # there is a question mark next to the files listed by svn status 10.03.29 # woodensoul: no, ALL the files were reverted, that's why there's no M next to any of them 10.03.36 # woodensoul: those are files not controlled by svn 10.03.48 # "svn -q status" hides those 10.03.58 # they are all either .exe or .orig files 10.04.34 # Yes, as B4gder said, those are new files you've created which are not part of SVN. The ? means svn doesn't know those files. 10.05.06 # I see. 10.05.20 # You can delete them if you wish, or just leave them - they shouldn't cause any harm. 10.05.20 Join billytwowilly [0] (n=chris@CABLE-72-53-22-61.cia.com) 10.05.48 # apart from the chip port issues, do folks see the lack of buttons/controls to be a problem for rockbox? It'll be a totally different type of interface won't it? 10.06.14 # You're talking about the ipod touch? 10.06.16 # y 10.06.30 # I don't consider that a real problem 10.06.34 # me neither 10.06.34 # just a challange 10.06.35 # GodEater: I believe the "tvg" in the forum had problems with later revisions of rockbox and posted in this nano thread too... 10.06.38 # :) 10.06.46 # we discussed this about a week ago 10.06.49 # Yes, that's just a programming problem which is solvable... 10.06.59 # pixelma: I know - I'm just getting fed up of his whining 10.07.08 # The encryption and completely new hardware is the problem... 10.07.31 # and the lack of docs 10.07.56 # and the roads, and education, and wine, and ... 10.08.11 # kids these days 10.08.19 # Zagor: must have missed that conversation; sorry 10.08.20 # all this were fields etc etc 10.08.28 # pixelma: It's still pointless to report bugs that happen in a 500 revision old version, even if he's unwilling to update to the current version. Odds are decent his partition was corrupted by the main Nano bug, or he's experiencing the main Nano bug in a lesser form, anyway 10.08.41 # morrijr: come to think of it, it was probably several weeks ago. never mind. 10.11.08 # B4gder: Do you think it's worth adding the new ipod models as unsupported on the front page? I'm not sure - the list is growing longer than the supported list now... 10.11.35 # hm, let's wait and see 10.11.48 # it'll be a bit annoying with a long list of unsupported ones 10.12.56 # Maybe change what is in brackets to "2nd Gen Nano and later ipods are not supported" ? 10.13.00 # linuxstb: i wouldnt think so...the unsupported list is to avoid confusion, and as long as they call the new ipod "classic", we shouldnt worry...although nano 3rd gen might be added 10.13.03 # remove the unsupported list and just write "if your model is not in the list, it is not supported" 10.13.34 # scorche: actually, many people will likely think "classic" means it's an older model and thus supported... 10.13.48 # yes, we should perhaps make it clear that *only* the mentioned models are support and all others are not 10.13.52 # but I think we should move that whole section to a wiki page and make a big nice chart with images and all 10.14.01 # yes 10.14.15 # also because for some reason people don't look for this kind of info on the front page 10.14.24 # exactly 10.14.24 # they need a different page for it 10.14.25 # with bright green and red indications 10.14.42 # Zagor: We already have a nice big chart with pictures... builds.rockbox.org. Maybe just some clear text saying "Only these players are supported"? 10.14.54 # build. 10.15.08 # the build one isn't as explicit 10.15.16 # like there's no e200R on it 10.15.17 # unfortunately I don't think it's clear enough... 10.15.20 # nor x5l x5v etc 10.17.24 # We could make that page more explicit too then. 10.17.32 # I have to say that I like the "Quick Links" table on http://ipodlinux.org home page... 10.17.33 # For one thing, so people aren't uncertain what to download 10.18.22 # linuxstb: yeah our front page is a bit cluttered 10.18.52 # I deleted my entire rockbox directory and check out the source again. The build seems to be going fine now. 10.19.32 # If I want to change the gigabeat WPS keymap to what it used to be. Do I need to change any source files other than gigabeat-keymap.c? 10.19.50 # IPL says about the iPod Touch: "Will probably not be supported because homebrew software is already possible." anyone know what they mean with that? 10.19.55 Join obo [0] (n=obo@rockbox/developer/obo) 10.20.05 # it means that apple won 10.20.06 # here: http://ipodlinux.org/Project_Status 10.20.24 # Zagor: I imagine they expect the same hacks as work on the iPhone to work on it. 10.20.31 # I asssume home-brew is possible on the iphone, so they're guessing the touch will be the same... But I know nothing about the iphone... 10.20.41 # ipl isn't exactly jumping to new targets very often anyway 10.20.56 # so they won't support it because ... it's possible? makes no sense. 10.21.08 # ipl is not like rockbox 10.21.15 # they don't do a music player firmware repalcement 10.21.35 # I think the IPL devs see it as a supplement to the Apple firmware, rather than a genuine replacement. 10.21.35 # they make a platform to run custom applications on 10.21.53 # and if the OF can run custom applications, there's no point in using ipl 10.21.54 # * linuxstb looks towards the IPL devs lurking here... 10.22.17 # B4gder: fair point 10.23.01 Join perplexity [0] (i=heh3202@dxb-as74784.alshamil.net.ae) 10.23.59 # this is essentially the same as the Rockbox "port" to that motorola phone then 10.24.09 # so if someone can get SDL running on the new touch 10.24.11 # gosh, their latest code is from may??? 10.24.14 # then you can have "Rockbox" there too 10.24.16 # * Zagor stops looking there 10.24.51 # Zagor: i believe ipl is much more distributed so there are activities on other areas that are more recent 10.25.11 # Plus their svn server has been unavailable for a few months... 10.25.15 # p2p development :) 10.25.18 # oh 10.25.37 # linuxstb: yeah and the link to download source contains the last svn revision - from may 10.25.41 # I believe they're in the process of finding and migrating to a new server. 10.26.15 # But yes, even with an svn server, development seems to be very widely distributed - the opposite to Rockbox. 10.28.03 # * linuxstb googles and finds lots of download links for third-party iphone apps, but no technical details... 10.29.32 # can you write macosx apps without actually owning/using macosx? 10.30.23 # It just uses gcc, so you should be able to setup a cross-compiling environment. 10.31.16 Quit scorche (Connection timed out) 10.31.16 # what about the libraries? part of their GUI is proprietary, isn't it? 10.32.18 # Yes, that would be a problem... Their development environment (xcode) is available for download from their site, so maybe you could extract everything needed from there. 10.32.22 # Why do you ask? 10.32.32 Join Jdgordon [0] (i=jonno@c220-237-57-32.smelb1.vic.optusnet.com.au) 10.33.24 # just curious about this apps-for-iphone/ipod thing. 10.33.56 # my main thought being that if you can't write apps for it without owning a mac, I'd still prefer linux on it 10.34.23 # Or the "hack" would be porting the SDK to linux, rather than linux to the device... 10.34.47 # yeah. could get tricky with copyright issues though. 10.36.46 # Yes. 10.38.32 Quit GodEater ("CGI:IRC (Ping timeout)") 10.41.30 Join GodEater [0] (i=c2cbc95c@rockbox/staff/GodEater) 10.45.21 Quit linuxstb ("CGI:IRC") 10.46.21 # Well, I've answered my own question. The only change I made was in gigabeat-keymap.c. Now to learn how to patch. Thanks guys. 10.46.42 Quit Jdgordon ("Konversation terminated!") 10.51.49 *** Saving seen data "./dancer.seen" 10.53.45 Part fm2 10.54.05 Quit spiorf (Remote closed the connection) 10.54.17 Join Jeffrey_L [0] (n=jw@219.26.50.60.kmr03-home.tm.net.my) 10.55.04 # hi 10.55.26 # rockbox puts ipod to shame 10.55.56 Quit GodEater ("CGI:IRC (Ping timeout)") 10.56.18 # Jeffrey_L: we know :) 10.57.09 # one feature which i really like/love is the sleep timer 11.01.56 # hows the battery life on a 80g video anyway? rockbox.org says 5-7 hours 11.02.34 # got one to try? 11.02.40 Quit iamben (Read error: 104 (Connection reset by peer)) 11.03.30 # you use svn diff to creat a diff or patch -panumber filname 11.03.37 # to apply one 11.04.18 # @@ 11.04.39 # what is @@ 11.06.14 # why don't we use // comments in rockbox? 11.06.55 Join Jdgordon [0] (i=jonno@c220-237-57-32.smelb1.vic.optusnet.com.au) 11.07.43 Quit Jdgordon (Client Quit) 11.07.56 Join Jdgordon [0] (i=jonno@c220-237-57-32.smelb1.vic.optusnet.com.au) 11.08.30 Join pondlife [0] (n=Miranda@cpc1-rdng11-0-0-cust362.winn.cable.ntl.com) 11.08.52 # where can i browse for rockbox plugins? 11.08.53 # Hi all, back after a blown PSU 11.09.27 # maybe in "plugins" from the main menu! 11.09.56 Part grndslm ("Leaving") 11.11.03 Quit perplexity (Read error: 113 (No route to host)) 11.11.20 # rockbox is so metal 11.12.16 Part Llorean 11.12.48 Join iamben [0] (n=ben@dpc67142179038.direcpc.com) 11.13.19 # Jdgordon: Hi. Could you make the latest version of your stripped-down version of e200tool available? I'm trying to persuade someone to try and get it working on Windows... 11.14.14 Quit Jdgordon (Remote closed the connection) 11.14.45 Join delYsid [0] (n=user@debian/developer/mlang) 11.15.47 Join Jdgordon [0] (i=jonno@rockbox/developer/JdGordon) 11.17.45 Join scorche [0] (i=Blah@rockbox/administrator/scorche) 11.19.01 Join GodEater [0] (i=c2cbc95c@rockbox/staff/GodEater) 11.26.37 # heh, amazon.de is pushing the price up for sansa e280, in the last week the price went up about 40 EUR. 11.26.53 # from 155 to now 192 11.27.29 Join barrywardell [0] (n=barry@wardell.ucd.ie) 11.28.06 Quit barrywardell (Remote closed the connection) 11.41.16 Join bluebrother [0] (i=3yaJeRDl@rockbox/staff/bluebrother) 11.42.36 Join kclaf [0] (i=kclaf@85.95.211.245) 11.42.48 Join mikae1 [0] (i=c2477b02@gateway/web/cgi-irc/ircatwork.com/x-17c44d3007403fbf) 11.43.38 # hi 11.44.02 # anybody know anything about the hardware of the new ipod/ipod nano? 11.45.07 Join spiorf [0] (n=spiorf@host105-174-dynamic.58-82-r.retail.telecomitalia.it) 11.45.45 # nope, but my guess is that it isn't portalplayer 11.48.10 # mmm... which will make it harder to port? 11.48.40 # assuming it's a chip without public available documentation, most likely yes. 11.49.05 # one thing i did read is that the new nano can do videos 11.49.37 # i also expect the new ipod to be a lot better protected, with signed binaries etc 11.49.42 # my bet is either get one of these and hope there'll be a rockbox release or modding a 2g mini. 16 gb flash and new battery. 11.49.58 # i think i'll go for the latter then. 11.50.17 # how many gb is it? and when is it going to be released? 11.50.22 # how much ram? 11.50.24 # as well 11.51.57 # we've no reason to believe that apple will make running other code on their new ipods any easier than they have on the 2G Nano 11.52.10 # and currently that's pretty near impossible 11.52.11 Join Rondom [0] (n=Rondom@p57A953BC.dip.t-dialin.net) 11.52.40 # so "hoping" for a rockbox release on it is like hoping you'll win the lottery. Pretty bloody unlikely to happen. 11.53.21 Join atsea- [0] (i=atsea-@gateway/tor/x-8b023217a693a903) 11.55.27 Join scorche` [0] (i=Blah@rockbox/administrator/scorche) 11.56.09 # hmm ok 11.56.17 # it was so hard on the nano 2g 11.56.28 # why didn't they try harder with the 5.5g ipod? 11.56.50 # because it's the same platform as 5G 11.57.17 # the 2G is a completely new hardware platform woth new cpu etc 11.57.37 # apple have pretty much ditched PortalPlayer as their hardware supplier now 11.58.53 # so is this the 6th gen or something? 11.59.06 # the ipod "classic" would count as a 6G yes 11.59.16 # yes 11.59.24 # the ipod touch is pretty much a brand new product 11.59.37 # although you could argue it's the iPhone without the phone too 11.59.38 # i would say so 11.59.56 # I like the sound of 160GB 12.00.05 Quit scorche (Read error: 110 (Connection timed out)) 12.00.06 Nick scorche` is now known as scorche (i=Blah@rockbox/administrator/scorche) 12.00.06 # * scorche already has 160 in a DAP 12.00.46 # archos presumably though 12.00.51 # * scorche nods 12.01.08 # apparently the 80GB version of the classic is even thinner than the current 5.5G 30GB 12.01.10 # which is quite impressive 12.01.25 # FLAC and a decent line out would be nice though...hence why i have been watching AV300 auctions 12.01.53 # single platter?....i hate speculating though 12.01.58 # flac support, yes 12.02.00 # I guess it has to be 12.02.06 # why the f*** should it be so hard 12.02.12 # oh, we've got alac 12.02.19 # mikae1: because they choose to make it so ? 12.02.20 # mikae1: well, there are reasons for that with the archos units.. 12.02.21 # you can't use flac 12.02.33 Join Buschel [0] (n=AndreeBu@p54A3CA9F.dip.t-dialin.net) 12.03.03 # scorce: are there reasons for that with the ipod? 12.03.09 # * GodEater is currently hunting to find pics from the first dissections 12.03.14 Join sasukee [0] (n=SK@unaffiliated/sasukee) 12.03.17 # rockbox supports flac just fine on the ipods... 12.03.31 # GodEater: sounds like my job after the nanos came out 12.03.31 # on those ipods we support anyway ;) 12.03.36 # hi, how do you manage podcasts with rockbox? 12.03.45 # sasukee: anyway you like 12.03.48 # scorche: it did 12.03.57 # scorche: but not most likely on the 6g 12.03.59 # not past tense... 12.04.10 # so u just sync a podcast folder 12.04.26 # that still doesnt change that to past tense... 12.05.11 # has anybody replaced the battery in a mini? 12.05.22 # if so, what battery did you go for? 12.05.39 # also, does the mini 2g version of rockbox play flac? 12.05.42 # just because there's a new ipod does not mean we suddenly don't support flac on the models we already run on 12.06.03 # all SWcodec devices run flac... 12.06.54 Quit GodEater ("CGI:IRC") 12.06.58 Join GodEater [0] (i=c2cbc95c@rockbox/staff/GodEater) 12.07.27 # so what are the specks for it? 12.08.06 Join Nico_P [0] (n=nicolas@rockbox/developer/NicoP) 12.08.14 # ddalton: no-one knows yet 12.08.20 # GodEater: that wasn't what i meant. i wondered if the mini has ever been able to play flac. 12.08.27 # well, plenty know that, im sure 12.08.28 # but i guess the question is yes then :) 12.08.44 # all SWcodec devices run flac... 12.08.59 # ok 12.09.03 # what its not out yet? 12.09.18 # ddalton: what's not out yet ? 12.09.27 # the new ipod 12.10.09 # ddalton: yes it's out - but apple never tell you what the specs are beyond what the disc space is 12.10.23 # what's the disk space? 12.10.25 # how big? 12.10.27 # ddalton: so to know what processor it uses and such like, someone has to take one apart 12.10.50 # ddalton: if you mean the replacement for the ipod video, then it's coming in 80GB and 160GB varieties 12.11.10 # That's right. I know I was talking to a company about there word processing code and they wouldn't give me any info. 12.11.11 # they boast 40 hours of music playback too - which is pretty impressive 12.11.23 # its secret 12.11.45 # what and $800? 12.11.58 Join linuxstb [0] (n=linuxstb@rockbox/developer/linuxstb) 12.11.58 # which $ do you mean ? US, or AU ? 12.11.58 # the last one was expencive when it first came out. 12.12.06 # any 12.12.08 # au 12.12.47 # the 80GB is 249 USD 12.12.47 # I bet USD -- whose referring to AUD except australians? ;-) 12.13.01 # I think ddalton is from AU 12.13.07 # yes 12.13.25 # hence why I asked :) 12.13.28 # nice country. Unfortunately quite far away from europe 12.13.29 # for the new one? 12.13.39 # yeah where are you 12.13.47 # me? Germany. 12.13.54 # oh ok 12.13.56 # 349 USD for the 160GB one 12.14.05 # not to bad. 12.14.11 # pondlife: Already checked the latest improvements for sapi voice building? 12.14.17 # I guess we'll get ripped off in the UK though 12.14.25 # I've been to australia once and really liked it. Too bad travelling takes that much time (and money) 12.14.34 # wouldn't carry it around in my pocket. 12.15.13 # 249 GBP for the 160GB here 12.15.21 # so yes, we're getting ripped off 12.15.28 # whats new? 12.15.32 # nothing 12.15.48 # I don't understand why you would pay $350 AU for a 8 gb nano. When you can get a slightly bigger player in size for $280 or something with 20 gb hdd 12.16.14 # ddalton: I don't like using an HDD based device when I go running 12.16.34 # bluebrother: where did you go? 12.17.26 # yeah but maybe then something with smaller flash like 1 gb. Really if your going for a run you don't really need 10000 songs on it. 12.17.48 # ddalton: true :) 12.18.09 # ddalton: especially the paltry distances I run 12.18.23 # what's wrong with a hdd player when running? Does it bounce the hdd out of posision? 12.18.31 # or something 12.18.39 # ddalton: kind of - it can cause the heads in the disk to skip 12.18.57 # amiconn: Not yet, just in the process of rebuilding my PC after a blown PSU and damaged motherboard. Luckily all else seems unharmed. 12.19.00 # flash seems expencive or is it just the small size of the player 12.19.17 # ddalton: a combination of both I would imagine 12.19.49 Nick Soap__ is now known as Soap (n=Soap@cpe-65-189-128-141.columbus.res.rr.com) 12.20.23 # actually used my friends nano for 2 minutes and got anoyed by the touchy click wheel. The fourth gen click wheel was pretty good I have to admit. 12.20.24 # with rockbox 12.20.57 # well, the nanos have a smaller wheel as well 12.21.16 # * ddalton wants to get that ipod working! 20 gb 12.21.56 # well I skipped menus and stuff and it just wasn't what I liked. I am sure I would get use to it but I wouldn't buy a nano. 12.24.06 Join n1s [0] (n=nils@nl104-208-25.student.uu.se) 12.24.14 # * GodEater fights with bascule in the New Ports forum 12.24.52 # yay - now in the top five posters! 12.28.08 Join DefineByte [0] (n=DefineBy@bb-87-81-195-5.ukonline.co.uk) 12.28.29 Quit Jeffrey_L (Read error: 104 (Connection reset by peer)) 12.28.45 # scorche: you locked it again :( 12.29.02 # heh...it auto-did that, as i posted mine when it was in a locked state 12.29.21 # i would rather see it made a new, proper thread though...i might start it myself 12.29.58 # I just really want to see the scans if the original poster (or someone else) gets round to doing it 12.30.00 # GodEater: and get in #rockbox-after-dark, chump 12.30.11 # he did say "if you want any information just ask" 12.30.55 Quit spiorf (Remote closed the connection) 12.31.21 Join spiorf [0] (n=spiorf@host105-174-dynamic.58-82-r.retail.telecomitalia.it) 12.32.26 # does anybody know an american online shop which sells cheap flash cards 12.32.40 # the only one i know is newegg 12.32.49 # i'm not an american resident 12.33.17 Join Kupopop [0] (n=Jono@cpc1-bsfd2-0-0-cust26.cmbg.cable.ntl.com) 12.33.45 # A couple of days ago a guy on here said that none of his tags showed up in Rockbox. He said his mp3 files used combined ID3v1/2 tags. I suggested converting all tags to ID3v2. This fixed the problem. Now, the question is, is this by design ,a bug or a one off aberration (maybe to do with the program he used to tag the files) that mp3s with combined v1 and v2 tags don't show up in Rockbox? 12.33.52 # mikae1: That's way off-topic for this channel, but I would just use one of the price-comparison websites. Or join #rockbox-community 12.34.23 # DefineByte: Rockbox reads both tags, and has a setting to give preference to one over the other. 12.34.40 # hmm, rockbox-community? is that an offtopic rockbox irc channel then? not heard of that. 12.34.49 # Read the topic... 12.35.06 # he was getting no tags at all though. it seemed strange 12.35.31 Quit pondlife ("disconnected has pondlife") 12.35.35 # maybe all the tags were corrupt and just re-writing them fixed it. 12.36.03 # how long has that channel been around then? 8) 12.36.14 # GodEater: the pure number of posts doesn't tell anything... ;) 12.36.34 # -ChanServ- Registered: 32 weeks 1 day (10h 56m 53s) ago 12.36.48 # GodEater: And you should exclude all posts that consist solely of a link to the NewPorts wiki page... 12.37.09 # (if only we had more control over the forums, we could script that...) 12.37.58 # linuxstb: hehe - I said similar to Llorean, only about not counting posts saying "re-read the posting guidelines" 12.38.25 # So Llorean's count would be down to double-figures? 12.38.29 # GodEater: but then you would be down to 23 posts... 12.38.38 # scorche: if that 12.38.46 # and saratoga would be way above you ;) 12.38.56 # probably 12.39.06 # I should quit with the "yeah, what he said" posts too probably 12.39.26 # yeah 12.39.30 # or the "im special too!" posts ;) 12.39.44 # * GodEater looks down at his big shoes 12.40.53 Quit jhulst (Read error: 104 (Connection reset by peer)) 12.41.01 Join jbr-lover [0] (n=hello@e179207247.adsl.alicedsl.de) 12.42.45 Join The-Compiler [0] (n=florian@196.41.76.83.cust.bluewin.ch) 12.44.07 # hi all 12.45.13 # I have a problem concerning my DC connector. follwoing situation.. 12.45.36 # I assume you have an Archos Jukebox Recorder? 12.45.53 # If so, which version? If not, which device? 12.46.10 # I am blind, and therefore requested a repair facility near me to solder the DC connector, cause it fell into the device. 12.46.22 # sorry.. Recorder V1 12.46.24 # 20 GB 12.46.39 # * linuxstb pings LinusN and amiconn in case they can help 12.47.31 # the guys at repair said, impossible without a spare part, but they were unable to locate spare connectors. the man explained to me that the plus pole is inside, while the rest of the connector could be gotten out. but the plus is broken, and they say it cannot be resoldered... 12.51.53 *** Saving seen data "./dancer.seen" 12.51.57 # thanks, I will hang in here. other then that, no problem with rockbox or the jukebox, has always wororked fine. and it is super that menu items can be made to speak. 12.53.11 Quit Jangari ("There's no wrong way to eat a Hoss") 12.55.47 Quit GodEater ("CGI:IRC") 12.55.51 Join GodEater [0] (i=c2cbc95c@rockbox/staff/GodEater) 12.57.19 # eurgh 12.57.38 # The usb stack code is in need of a big code police raid 12.58.13 # send in the SWAT team! 12.58.35 Join ziroday [0] (n=ziroday@unaffiliated/ziroday) 12.58.55 # what is more stable in rbutil the current or archived build? 12.59.22 Quit austriancoder (Read error: 104 (Connection reset by peer)) 12.59.24 # archived builds are simply build once a day. 12.59.36 # while the current build is done upon every code change. 12.59.46 # usually you should just be able using the current build 12.59.52 Join BigBambi [0] (i=86ceaf30@gateway/web/cgi-irc/labb.contactor.se/x-1b8efb472ed77dd6) 13.00.02 Join austriancoder [0] (n=austrian@80.120.117.30) 13.00.34 # bluebrother: ok but before i was having issues with playback and was told it was a bug that was being worked on. i was just wondering what was more stable thanks :) 13.00.48 # well, current build is newer. 13.00.59 # ill use that thanks 13.02.13 # amiconn: What's the problem with the usb stack code? I already raided it once.. 13.02.47 # CamelCase variables + hungarian notation 13.03.06 # Hmm, I didn't notice those. 13.03.24 # Check the latest commit's diff... 13.03.46 # yuk 13.03.52 # Yes, I've just looked... Although maybe they're taken from some other project, in which case it might make sense to keep them. austriancoder? 13.04.51 Join Thundercloud [0] (n=thunderc@84-51-130-71.judith186.adsl.metronet.co.uk) 13.04.51 # amiconn: there is no coding style document for such a case 13.04.53 # sorry 13.05.15 # isn't "iProduct" and similar also the way it's written in the specs? Doesn't it make more sense to keep that way? 13.05.35 # austriancoder: "Variables and function names should be all lower case." 13.05.45 # also, there are multiple long lines and brace-on-first-for-function-declaration 13.06.26 # B4gder: The brace-on-first-for-function-declaration is missing from CONTRIBUTING though... 13.06.39 # still... 13.07.32 # soo.. maybe i have something on my eyes.. but can you point me to a "wrong" formated part in my code? 13.08.09 # every variable that isn't all lower case? 13.08.27 # What amiconn just said - the iHungarianNotation names in the structs you modified in your latest commit 13.08.34 # * B4gder commits a CONTRIBUTING change 13.08.59 # linuxstb: ahhh.. this is so written in the usb2.0 chapter 9 doc 13.09.34 # austriancoder: That's what I was asking you - if the names are taken from elsewhere. 13.09.53 # IMO that's a good reason for an exception.... 13.10.00 # linuxstb: they are taken from elsewhere 13.10.11 # * linuxstb isn't in charge though... 13.12.20 # B4gder: That reminds me - should we stick to those conventions for files which aren't C (as far as possible)? 13.12.21 Quit GodEater ("CGI:IRC") 13.12.27 Join GodEater [0] (i=c2cbc95c@rockbox/staff/GodEater) 13.13.09 # I don't have any strong opinion since C is the primary language we use 13.13.10 # amiconn: Are you thinking of the VB code? 13.13.18 # yes 13.13.29 # I looked at that yesterday, and thought the same... 13.13.55 # The vbscript sticks to the indent-by-4 and line length conventions, but not to the variable names 13.13.57 # it isn't stricly necessary that the C rules are the best suitable for other languages 13.14.15 # I think it would make sense to do what VB programmers normally do (for better or for worse)... 13.14.26 # worse... 13.14.43 # (even though vb isn't format free and wrapping a line needs a continuation character - the _ ) 13.21.44 # jbr-lover: the guy could be right, the connector might be discontinued. one solution would be to use another dc-connector connected with wiring. then you'd get it ugly hanging on the outside, but at least it'd work. 13.22.31 # jbr-lover: another option is to search for an old broken archos to strip that part from 13.22.54 # hrm...wasnt that just a general jack? 13.23.24 # yeah. but it's board-mounted. an maybe the pins on currently available ports don't match the board. I don't know. 13.23.35 # green wire 13.24.08 Quit atsea- (Read error: 104 (Connection reset by peer)) 13.24.14 # scorche: ? 13.25.09 Join spiorf_ [0] (n=spiorf@host214-208-dynamic.8-87-r.retail.telecomitalia.it) 13.25.11 Part DefineByte 13.25.51 # looks pretty general to me...and one could likely re wire a bit if it doesnt fit quite right 13.26.28 # yeah, but then it wouldn't sit firm and would be more difficult to connect. hence my suggestion to simply move it outside. 13.27.06 # http://www.connactivity.com/~eaw/archos_apart/ 13.27.28 # still seems to be there on digikey 13.28.36 # excellent. 13.28.57 # jbr-lover: the part you want is called PJ-007 and is made by CUI INC 13.29.19 # jbr-lover: available here http://www.digikey.com/scripts/US/DKSUS.dll?KeywordSearch?MPart=PJ-007 13.32.02 Quit GodEater ("CGI:IRC") 13.33.05 # Does anyone understand FS#7713 ? 13.34.09 # haha, nice verbose report. and it's a ... patch? 13.34.33 Quit The-Compiler (Remote closed the connection) 13.37.22 # um thanks, have to scroll around a little. to see the msgs. you are great!!! 13.37.33 # a bit hard with screen readers... 13.37.39 # I can imagine 13.37.43 Quit spiorf (Read error: 110 (Connection timed out)) 13.37.51 # * petur reads http://www.reghardware.co.uk/2007/09/06/tosh_previews_next_gen_hdd/ and falls over 13.41.17 # wow 13.41.50 # 240GB dual platter 1.8... 13.43.13 # * n1s is still a little shocked that they're actually selling players with 160GB 1.8" drives... but this is absurd 13.45.57 # OK, will just have to look somewhere in europe to get this connector in Germany, since I am an enduser, 13.46.14 # but thanks a bunch!!! 13.52.28 Quit ddalton ("leaving") 14.01.36 Quit BigBambi ("CGI:IRC (EOF)") 14.02.00 # scorche: Those Toshiba drives seem a long way into the future though - IIUC, they haven't even announced the product, just the technology. Samsung have 160GB in shops today... 14.02.25 Quit ziroday ("Leaving.") 14.02.30 # linuxstb: aye...they say 2009 in the article 14.03.15 # as well, it says toshiba have 160GB 1.8 as well 14.03.27 # Competition is always good... 14.03.28 # "including, we believe, the 160GB hard drive found in the new iPod Classic." 14.03.51 # I guess we'll get an answer soon when the first dissections are published. 14.03.56 # indeed 14.04.11 # any known rockbox dev going for one of these ? 14.05.16 # I haven't heard anyone mention it. 14.05.20 # if they still encrypt it... 14.06.27 Join jhulst [0] (n=jhulst@207.72.172.24) 14.09.21 # B4gder: MrH has never shown any interest in ipods? 14.09.50 # nope 14.10.14 # Seems no-one with a clue ever does. I wonder why.... 14.10.50 # linuxstbsomeone in the ipodlinux project must have had a clue, at some point in time :-) 14.11.12 # insert sapces and colons where appropriate 14.11.53 Join Dark_Apostrophe [0] (n=darkapos@supporter/monthlybyte/DarkApostrophe) 14.12.25 # Hello. Does anyone have any advice for what mp3 player I should buy? I want one with at least 10gb of storage space... 14.12.36 # Preferably one that isn't terribly expensive, since I'm saving up to buy a car 14.12.41 # see BuyersGuide in the wiki 14.13.51 # Is the iAudio X5L any good? 14.14.15 # it is fine 14.14.28 # but not easy to find, nor very cheap 14.14.32 # Damn. 14.14.44 # I live in Norway - finding stuff here isn't exactly a walk in the park. 14.14.49 # Do you want flash-based or a hard disk? 14.15.15 # If there are any that have ridiculously large flash drives, that's ok, but I'll probably need a drive 14.15.27 # I also want to be able to watch TV episodes on it 14.15.31 # If that's possible 14.15.52 # sounds like a gigabeat 14.15.59 # The Rockbox device with the best video support (in Rockbox) will be the Gigabeat F. 14.16.03 # aren't those microsoft's? 14.16.18 # No, Toshiba, but Toshiba also made the initial Zunes. 14.16.35 # Toshiba is kind of in bed with Microsoft all over 14.16.49 # The Gigabeat F ran Linux as it's original firmware though.. 14.16.51 Quit spiorf_ (Remote closed the connection) 14.17.00 # So are these any new? 14.17.06 # no 14.17.08 # Damn.' 14.17.22 # still manufactured models that run rockbox are rare 14.17.23 # No, but extremely good value used. Around USD $100 for a 40GB. 14.17.23 Join spiorf [0] (n=spiorf@host214-208-dynamic.8-87-r.retail.telecomitalia.it) 14.17.38 # Any Creative ones though? 14.17.41 # no 14.17.45 # They seem to pump out new players all the time 14.17.46 # damn 14.17.49 # not a single one in fact 14.17.51 Quit miepchen^schlaf ("Verlassend") 14.18.08 # Damnit 14.18.15 # My current one is a Creative Zen Touch 14.18.26 # A big old black/white beast 14.18.49 # But it does work well and is very rugged (I've dropped it on asfalt multiple times without it even stopping playback) 14.19.24 # but it lacks rockbox... 14.19.53 # Indeed. 14.20.13 # I found a relatively cheap one that has a lot of storage: archos 404 14.20.21 # But damn, the thing seems huge 14.20.25 # * n1s have been searching for gigabeats on the net that are available in Sweden, no luck so far... 14.20.40 # of the F or maybe S models 14.20.57 # rockbox doesn't run on the archos 404 14.21.08 # Damnit 14.21.25 # Archos 604 then? 14.21.37 # I'm using this list of players: 14.21.37 # no 14.21.37 # http://prisguide.hardware.no/vis_kategori.php?cat_id=20&manufacturer_id%5B%5D=&techinfo_compare%5B125%5D=select&techinfo_value%5B125%5D%5B%5D=&techinfo_compare%5B1206%5D=checkbox&techinfo_value%5B1206%5D%5B%5D=&techinfo_compare%5B1205%5D=select&techinfo_value%5B1205%5D%5B%5D=&techinfo_compare%5B1659%5D=gt&techinfo_value%5B1659%5D=10&techinfo_compare%5B1565%5D=checkbox&techinfo_value%5B1565%5D%5B%5D=&techinfo_compare%5B3871% 14.21.37 # 5D=bool&techinfo_value%5B3871%5D=&sortering=min_price&ppp=25&submit=S%F8k 14.21.38 # you can see what rockbox runs on on the front page 14.21.38 # Dark_Apostrophe, do they have the sansa over there 14.21.46 # Ooh crap, that's one gigantic link 14.21.50 # Hold on, I'll use tinyurl 14.21.55 # dont bother 14.21.57 # Somebody pls make an ata 50pin -> zif adapter :/ 14.22.06 # http://tinyurl.com/2wl6ls 14.22.09 # Dark_Apostrophe: BuyersGuide 14.22.18 # amiconn: going for a 160GB upgrade? ;-) 14.22.19 # I know, but I use that to find players that can be bought in Norway 14.22.29 # Are any of those on that list compatible? 14.22.49 # Dark_Apostrophe: compare with our front page 14.22.56 # we don't have to spoon feed this to you 14.22.59 # Dark_Apostrophe, do you have the sansas 14.23.06 # B4gder: Sorry... 14.23.13 # Dark_Apostrophe: I think you need to make a choice: 1) New Sansa E200 (8GB flash plus expandable via microSD), relatively small LCD; 2) Used Gigabeat F - large capacity, large screen, good video playback in Rockbox; 3) ipod video (using Apple's firmware for video playback); 4) Don't run rockbox. 14.23.16 # advcomp2019: Yeah, but their storage is quite limited :( 14.23.40 # Option 2 seems like the only half-decent one 14.23.41 # they are not limited with rockbox 14.23.48 # But finding gigabeats isn't easy 14.24.53 # rockbox on an e200 has microsdhc 14.24.55 Join _m4yh3m [0] (i=nightwin@dslb-088-077-228-075.pools.arcor-ip.net) 14.25.30 # n1s: At least I want that option. It's also interesting to be able to go 80GB single platter (e.g. my X5, or maybe pixelma's M5L) 14.25.32 # but an e280 with a 4GB microsdhc probably gonna be cheap either 14.25.38 # eh, not 14.25.56 # * Dark_Apostrophe buggars off to ebay to find gigabeats 14.26.17 Join miepchen^schlaf [0] (n=hihi@p54BF7A69.dip.t-dialin.net) 14.26.38 Quit spiorf ("Read error: 110 (Connection timed out)") 14.26.49 # Dark_Apostrophe: Remember that Rockbox only works on the F and X series gigabeats at the moment. Although a port to the S series is being worked on. 14.26.53 Join spiorf [0] (n=spiorf@host214-208-dynamic.8-87-r.retail.telecomitalia.it) 14.26.58 # Okay 14.27.30 # Weird 14.27.40 # The only thing on ebay are leather cases for the gigabeats 14.27.44 # Not the gigabeats themselves 14.28.09 Join spiorf_ [0] (n=spiorf@host214-208-dynamic.8-87-r.retail.telecomitalia.it) 14.28.37 # <_m4yh3m> hm...anyone an idea why my ipod video 80gb crash when i initial the database with about 16gb mp3? 14.28.58 Quit spiorf_ (Client Quit) 14.29.10 # _m4yh3m: are you using a current build 14.29.16 # <_m4yh3m> yeah 14.29.22 # from today? 14.29.31 # <_m4yh3m> and tryed also a "final" 14.29.47 # <_m4yh3m> ehm 14.29.49 # <_m4yh3m> daily 14.30.06 # try with the _current_ build 14.30.08 # Dark_Apostrophe, btw why do you want to run rockbox to play only TV episodes 14.30.31 # I want it primarily as an mp3/ogg player 14.30.41 # but occasionally, I'd want to be able to watch TV episodes too 14.31.14 # <_m4yh3m> atm im running r14616-070905 14.31.30 # That's the build before the fix was made... 14.31.36 # the cowon d2 might be the way even tho it does not have rockbox yet 14.32.06 # _m4yh3m: The current build is r14627 14.32.11 # The Cowon A2 isn't supported? 14.32.15 # I found one in Norway... 14.32.30 # <_m4yh3m> hm.. 14.32.36 # <_m4yh3m> or should i try r14625-070906 ? 14.32.38 # Dark_Apostrophe No, just the X5/X5L/X5V and M5/M5L 14.32.45 # Damn.. 14.33.09 # _m4yh3m: Why are you refusing to install the "current build" ? 14.33.33 # <_m4yh3m> hm.i dont, gonna try, sec 14.33.34 # how much are the d2s in norway 14.33.51 # to what you want to spend 14.35.17 # advcomp2019: I don't know.. but does it matter, if they're not rockbox compatible? 14.35.51 # it matters because this is a rockbox channel..anything else is offtopic 14.36.13 # Dark_Apostrophe: is it really that hard to read the list on the rockbox.org front page? 14.36.24 # I am genuinely curious 14.36.44 # http://www.rockbox.org/twiki/bin/view/Main/BuyersGuide <--- I looked here :/ 14.37.04 # yes, and on the front page is the complete list of all models rockbox supports 14.37.44 # Okay... looking now 14.37.49 # lets go to #rockbox-community Dark_Apostrophe to talk easier 14.37.58 Part Dark_Apostrophe (" 09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0") 14.38.42 # * B4gder interprets that as no, it isn't hard but I'm a lazy person 14.39.45 # he went to the over channel 14.39.56 # other* 14.40.02 # yes, so my question wasn't answered 14.40.11 # never mind 14.41.19 Join Genre9mp3 [0] (n=yngwiejo@athedsl-05815.home.otenet.gr) 14.41.27 Quit Stalwart (Nick collision from services.) 14.41.46 Join stalwart1 [0] (n=stalwart@ip-10.154.Home-Lan.fastnet.lv) 14.41.52 Nick stalwart1 is now known as Stalwart (n=stalwart@ip-10.154.Home-Lan.fastnet.lv) 14.43.55 # <_m4yh3m> hm... - looks like its workin now, thx @ linuxstb & n1s 14.44.01 # 16-18 hours on my iriver h140!? 14.44.09 # I'd be lucky to get 6 14.44.21 # then your battery is run down 14.44.23 Join atsea- [0] (i=atsea-@gateway/tor/x-75c81be805a79a67) 14.44.26 # maybe its because I use a lot of ogg 14.44.46 # ugh...i cant believe that e200R thread has gone to 6 pages... 14.45.29 # Kupopop: you should get a lot better battery time with that player even if playing back only ogg 14.45.46 # unless it is only 500kbps 96kHz files 14.46.01 # its quite old, I think I bought it in 2004 14.46.09 # maybe the battery is knackered 14.46.25 # there is a rockbox plugin which tests battery isn't there? 14.46.46 # I get something like 12 hours on my h320 with q4 oggs, I got it for christmas 2004 14.46.58 # Kupopop: yeps, battery_bench 14.51.57 *** Saving seen data "./dancer.seen" 15.03.15 # linuxstb: The new iPod classic 160GB might have a Toshiba disk after all... see here: http://www.engadget.com/2007/09/06/toshiba-announces-ipod-classic-sized-80gb-and-160gb-1-8-inch-dis/ 15.03.32 Join perplexity [0] (i=heh26767@dxb-as74784.alshamil.net.ae) 15.03.55 # Genre9mp3: Yes, scorche mentioned that earlier... 15.04.12 # ah... didn't notice 15.04.25 # I suppose they could even be using a mixture of the two... 15.06.52 # good news is that this one can fit to irivers... (?) 15.09.19 Quit jhMikeS (Nick collision from services.) 15.09.25 Join jhMikeS [0] (n=jethead7@rockbox/developer/jhMikeS) 15.12.28 Join low_light [0] (i=c730190b@gateway/web/cgi-irc/labb.contactor.se/x-ebf304523d505a65) 15.12.43 # low_light: good work on the c200 front! 15.12.45 # Genre9mp3: IIUC, "CE-ATA" is a new 18-pin connector, not the 50-pin the irivers have. 15.13.19 # low_light: you good with the recent key additions to mi4code and mi4.c ? 15.15.02 # linuxstb: oh... that's very dissapointing then... 15.16.29 # hmmm toshiba does 3600rpm, samsung does 4200rpm 15.17.40 # B4gder: thanks...and the new key works. 15.17.50 # goodie 15.23.07 # I'm not sure why the OF doesn't load from the rockbox bootloader even with the right key 15.23.23 # init issue? 15.23.33 # or at what point does it fail? 15.26.16 # The rockbox bootloader appears to successfully exit 15.26.41 # How is it loading the OF? From an OF.bin file? 15.26.59 # OF.mi4 15.27.10 # And it's being decrypted correctly? 15.27.12 # I think I tried OF.bin with the same result 15.27.30 # So what exactly happens? 15.28.06 # last message printed is "c200_106 key used" then nothing 15.29.40 # time to sprinkle with printf()s... 15.31.01 # And as B4gder said, it could be an init problem - so you could try disabling things in the bootloader, like LCD and button inits... 15.31.26 # after that it should either print "Can't load /System/OF.mi4" or return (void*)loadbuffer 15.32.06 # You should at least confirm it's getting to the return statement. 15.32.52 # Ouch, CE-ATA can't even be used with an adapter in irivers :( 15.33.06 # If they would be ZIF, an adapter would be possible... 15.34.55 # The Samsung drives are ZIF though, but you probably knew that... 15.46.10 Join agm3nt [0] (i=agm3nt@nat.n3t.pl) 15.49.08 Join kugel [0] (i=kugel@e178064218.adsl.alicedsl.de) 15.52.16 # does microSD and LCD backlight work on the c200, are all buttons working. is there a clock (i dont know if in the OF of the c200 is one). And how is the soundquality, comparable to the OF? 15.52.36 Quit jhulst (Remote closed the connection) 15.52.54 # does anyone other than low_light in the channel have a c200? 15.54.11 # yes 15.55.20 # kugel: (1) I don't have a microSD to try, (2) backlight works, (3) buttons work (although the keymap probably needs work), (4) there's a clock 15.55.20 # its just, that im gonna write a news on www.rockbox-lounge.com about the c200 port, but the infos the SVN comment gives are barely enough 15.55.32 # thanks 15.55.43 # I would assume the sound quality to be very similar to the e200 15.56.58 # kugel: there's still work to be done, particularly getting dual-boot to work because you still need the OF to get files on the device 15.57.30 # i know 15.57.59 # Does the C200 also have 32MB of RAM? 15.58.36 # linuxstb: yes...afaik 15.59.06 # are there allready any tests about the battery life on a rockboxed c200? 16.00.16 # Has anyone apart from low_light installed Rockbox on a c200 yet? 16.00.28 Quit Zagor ("Client exiting") 16.00.59 # kugel: no 16.02.24 # linuxstb: I believe I have the only one 16.02.48 Quit austriancoder (Read error: 104 (Connection reset by peer)) 16.04.56 Part agm3nt 16.05.52 Join The-Compiler [0] (n=florian@35.23.77.83.cust.bluewin.ch) 16.07.37 Quit hcs ("Leaving.") 16.07.56 Join Agm3nt [0] (i=nat-107@nat.n3t.pl) 16.11.48 # does anyone here have a e200r? 16.12.50 Part LinusN 16.13.21 # advcomp2019, I believe. (and scorche) 16.13.31 Quit Agm3nt (Read error: 104 (Connection reset by peer)) 16.13.38 # advcomp2019: you round? 16.14.06 # the sansa m200 isn't mi4 based and probably not PP 16.14.23 # * B4gder got the upgrade file and peeks 16.14.46 # "Telechips MTP V0.1" 16.14.48 Join Agm3nt [0] (i=nat-107@nat.n3t.pl) 16.15.03 # B4gder: how important do you think a dump of that partition from a non rockboxed e200r would be? 16.15.13 # s/that/the hidden 16.15.18 # Jdgordon: not terribly 16.15.29 # how to install rockbox on c200? 16.15.32 Join elinenbe [0] (n=elinenbe@209.196.192.7) 16.15.48 # Jdgordon: since the layout is the same as the vanilla ones and we already have the BL extracted 16.15.50 # ok, the I wont bother puting a call out on the mailing lists for a guienea pig :p 16.15.55 # Jdgordon: I think you need a dump of the partition table (MBR) though - to see what it actually looks like. 16.16.02 # ah yes 16.16.21 # Somehow you need to locate the start of the firmware partition... 16.16.29 Quit _m4yh3m ("dreaming in digital - living in realtime - thinking in binary - talking in IP ::--:: Welcome to our world") 16.17.05 # the mbr is the first few sectors or something isnt it? 16.17.20 # The very first sector - 512 bytes. 16.21.39 # linuxstb: regarding the ram on the c200...according to the image here http://www.rockbox.org/twiki/bin/view/Main/SansaC200Port the ram is Infineon HYB18L256160BF 16.22.14 # the product brief (http://www.tranzistoare.ro/datasheets/700/237595_DS.pdf) says its "256 Mb" 16.22.25 # OK, so the standard 32MB then. 16.22.51 # I just wondered, as I can't remember how the bootloader is using RAM - it could be trying to use something in the 2nd 16MB region. 16.23.09 Quit kubiixaka (Connection timed out) 16.23.22 # is there an app which can turn the mbr.bin into something simple to view? or do I need to find the format somewhere? 16.23.34 # Rockbox can... 16.23.43 # Just display the partinfo information in your app... 16.24.23 # linuxstb: what do I need to get sansapatcher to work on the c200? 16.24.52 # low_light: Firstly, is there a second, firmware partition on the disk? 16.25.35 # yes (Rockbox sees 2 partitions) 16.25.48 # Are you using Linux? 16.27.22 # Not at the moment...I'm going to try to boot a livecd later and image the drive with dd 16.28.59 # It's going to be a little work to get sansapatcher working with the c200. It's based on ipodpatcher, which supports installing different bootloaders to different devices, but that functionality wasn't included in sansapatcher. 16.29.55 # So it will require a bit of copying and pasting to add that to sansapatcher as well. 16.30.35 # You'll then need to work out how the firmware partition differs from an E200, and modify it appropriately. 16.32.43 Join Shane_e250r [0] (i=481b0349@gateway/web/cgi-irc/labb.contactor.se/x-00dad04794a15734) 16.32.58 # hey Shane_e250r 16.33.14 # please say you have a linux box...? 16.33.20 # ok jdgordon hear i am 16.33.26 Quit Entasis_ (Read error: 104 (Connection reset by peer)) 16.33.29 # .... 16.33.34 # no 16.33.47 # bah, ok, dont worry then 16.33.48 # if i had i would all ready have rockbox 16.33.53 # ok 16.34.37 Quit ivan` () 16.35.46 Join virus720 [0] (n=virus720@HSI-KBW-085-216-022-077.hsi.kabelbw.de) 16.35.52 Join toffe82 [0] (n=chatzill@ppp-69-238-93-198.dsl.frs2ca.pacbell.net) 16.36.12 Quit CaptainSquid (Remote closed the connection) 16.36.43 # hello jdgordon? 16.37.07 # ... i need someone with linux and an e200r 16.37.12 Quit sasukee (Read error: 110 (Connection timed out)) 16.38.49 # Jdgordon: Do you have access to a Windows box? 16.38.54 # yeah 16.39.36 # Maybe it could be the time to try and get your stripped-down e200tool working there - so you can get some testers. I would expect most e200r owners with Linux abilities to already have patched... 16.39.38 Join kubiixaka [0] (n=Miranda@ip-89-103-17-41.karneval.cz) 16.40.15 # yeah probably... wont have time til the weekend though 16.40.37 # putting a email on the -dev ml just in case someone hasnt converted yet 16.40.40 # Is your latest e200tool available somewhere? Maybe someone else could give it a go? 16.40.57 # will be in a minute 16.41.09 Nick fxb__ is now known as fxb (n=felixbru@h1252615.stratoserver.net) 16.41.28 # how to you get linux it's it freeware? 16.42.29 # Shane_e250r: You could start reading here - there is _lots_ of info about Linux on the web. And yes, it's free in all meanings of the word. 16.43.36 # By "here", I meant here - http://www.linux.org/ 16.44.06 # Follow the "Linux 101" link in the top-right corner. 16.45.26 # amiconn: about autoghosting: my irc client has an option to autoconnect on disconnect and perform a list of commands (server dependant if you like) where I just identify and always ghost my nick. 16.47.00 # of course when I connect for the first time, I get the "You cannot ghost yourself" in the status window, but that is not a concern at all 16.47.37 Join DarkStylist [0] (n=DarkStyl@c213-100-135-215.swipnet.se) 16.48.12 # hi anyone experienced with mp3 players that wont browse and get past welcome screen? 16.48.47 # This is a channel about the Rockbox software... 16.50.06 # yea but i gotta fix it in order to install rockbox 16.50.28 # Which player is it? 16.50.41 # sandisk 16.50.49 # Which sandisk player is it? 16.51.18 # e220 16.51.42 # Then you could try the methods here - http://www.rockbox.org/twiki/bin/view/Main/SansaE200Unbrick 16.51.54 # it stays at welcome at its original os and the drive says insert disk 16.52.01 *** Saving seen data "./dancer.seen" 16.52.06 Join lazka [0] (n=lazka@85-126-38-22.dynamic.xdsl-line.inode.at) 16.52.11 # thx 16.52.16 # 220? 16.52.28 # really? 16.53.14 # B4gder: Is the e220 special? 16.53.24 # I'm not aware of any e220 model 16.53.30 # e200 sorry 16.53.32 # e250 is the 2GB one 16.53.36 # if the 2gb moel is the e250.. whats the e220? 16.53.38 # mistyped 16.53.48 # damn their un-intuitiver model numbering 16.54.12 # easy guys i misstyped the model. 16.54.29 # DarkStylist: A single letter or digit can make a big difference... 16.54.54 # But if it's part of the e200 series, then the page I linked you to may help. 16.57.25 # Jdgordon: I don't think a rockbox install will ruin the mbr dump you want 16.57.41 # maybe not... but just in case... 16.58.22 # anyway... 1am, bed time 16.58.28 Quit Jdgordon ("Konversation terminated!") 16.58.38 # going home time 16.58.40 Quit B4gder ("It is time to say MOOO") 17.00.47 # so all i have to do is install linux and follow the instution? 17.01.40 Quit low_light ("CGI:IRC (EOF)") 17.02.11 # all can i have linux and run windows at the same time? 17.02.17 # *all so 17.02.39 # Shane_e250r: yes, but this is getting off topic for this channel 17.02.47 # yes with vmware 17.03.18 # or some other virtual machine 17.05.16 # sorry im tring to get rockbox on my e250r 17.06.18 # DarkStylist: In this situation, it seems vmware isn't suitable. 17.10.42 Join jonuts [0] (n=jonuts@82.166.64.198) 17.10.56 # i thought vmware had usb support 17.11.26 Join barrywardell [0] (n=barrywar@dhcp-892b9b5a.ucd.ie) 17.14.29 # Shane_e250r: or use a linux live cd. 17.14.51 Join seablue [0] (n=s@0x535c1344.banxx3.adsl-dhcp.tele.dk) 17.17.52 Quit XavierGr (Nick collision from services.) 17.17.54 Quit atsea- (Read error: 104 (Connection reset by peer)) 17.17.56 Join XavierGr [0] (n=xavier@ppp56-121.adsl.forthnet.gr) 17.19.12 Quit Agm3nt () 17.19.25 # DarkStylist: Yes, but the two people that have tested it with vmware couldn't get it to work - something to do with conflicts between Windows and vmware http://www.rockbox.org/twiki/bin/view/Main/SansaE200Unbrick 17.19.26 # but thanks a bunch!!!hi all, am still here. 17.19.38 # Oops, didn't mean to repaste that link... 17.19.47 # have a question to those who know the inner parts of the Recorder 20 V1... 17.20.22 # the connector, is it a black thing with three little pins like sticking out of it, one looking through the device turned towards the right? 17.20.40 # if so, Archos may still have one on stock! 17.20.52 # XavierGr: Thanks, I never tried ghosting myself. Thought that I would kick myself this way... 17.21.18 # btw rockbox support the sigmatel stfm1000? 17.22.08 # * amiconn added the /ns ghost line to the appropraite "command profile" in Hydra 17.23.43 # another mp3player i cant get to life 17.24.25 # if i bought a track from real could that be played in rockbox? 17.24.36 Nick idnar_ is now known as idnar (i=mithrand@unaffiliated/idnar) 17.26.03 Quit jonuts () 17.26.22 # Shane_e250r: No. 17.26.46 Quit Shane_e250r ("CGI:IRC") 17.27.08 Join Shane_e250r [0] (i=481b0349@gateway/web/cgi-irc/labb.contactor.se/x-93711e2e1f4bb728) 17.27.27 # hello? 17.27.51 Quit Shane_e250r (Client Quit) 17.28.26 Join Shane_e250r [0] (i=481b0349@gateway/web/cgi-irc/labb.contactor.se/x-45805b49c971fa78) 17.29.48 Join webguest40 [0] (i=97c98a9f@gateway/web/cgi-irc/labb.contactor.se/x-9f7571dd2aeafa7c) 17.30.04 # DarkStylist: is it on the list of supported players on the frontpage? 17.31.24 Join low_light [0] (i=c730180b@gateway/web/cgi-irc/labb.contactor.se/x-d2494f2fc64e1c94) 17.31.48 Join eigma [0] (i=jnsqmla@CABLE-206-188-76-21.cia.com) 17.31.56 # its a soundchip 17.32.30 # im thinking of making one custom rockbox 17.32.57 Quit mikae1 ("CGI:IRC (Session timeout)") 17.33.00 Part pixelma 17.34.31 Join jonuts [0] (n=jonuts@82.166.64.198) 17.34.50 # linuxstb: ok, I have a disk image of my sansa c250 17.36.57 Quit Shane_e250r ("CGI:IRC") 17.40.39 # http://www.icst.net/dsgdownload/Digital_Sound_Generation_1.pdf 17.40.48 # ok, i did not intend to do that 17.41.04 # but you will just have to live with it 17.42.57 Join Robin0800 [0] (n=Robin080@cpc3-brig8-0-0-cust132.brig.cable.ntl.com) 17.44.30 Join Shane_e250r [0] (i=481b0349@gateway/web/cgi-irc/labb.contactor.se/x-fcd62a2c04ec8fad) 17.44.45 # Hello? 17.45.31 # i have a sansa D.a.p has anyone tried to put rockbox on it? 17.47.02 # tried to use large icons on a wps and ran into some buffer limit what is this hard limit? 17.47.47 # Shane_e250r, 17.48.21 # Shane_e250r, does it say the 250r is supported? 17.49.32 Quit virus720 () 17.50.00 Quit lostnihilist ("Leaving") 17.50.06 # yes i'm not talking the sansa e250 im talking the original dap http://www.sandisk.com/Products/Catalog(1072)-SanDisk_Digital_Audio_Players.aspx 17.55.40 Join toffe82_ [0] (n=chatzill@ppp-69-238-93-198.dsl.frs2ca.pacbell.net) 17.57.08 Quit jonuts () 17.58.25 Quit iamben (Read error: 104 (Connection reset by peer)) 17.58.44 # hello? 17.59.51 # hello? 17.59.55 # hello? 18.04.04 Quit Shane_e250r ("CGI:IRC (Ping timeout)") 18.04.23 Join atsea- [0] (i=atsea-@gateway/tor/x-bf5f2e325ca13959) 18.09.00 Quit lazka ("I'm off now") 18.09.03 Quit eigma () 18.09.23 Join lostnihilist [0] (n=lostnihi@ppp-68-251-72-237.dsl.chcgil.ameritech.net) 18.09.55 Quit petur ("work->home") 18.10.44 Join Gnelik [0] (n=a@i182.monk.dialup.sm.chereda.net) 18.11.24 Quit low_light ("CGI:IRC (Ping timeout)") 18.11.33 Quit toffe82 (Read error: 110 (Connection timed out)) 18.12.13 # Sansa 250 Data abort at 00045f80 playing any mp3 yesterday night build can someone confirm 18.12.15 # ? 18.12.42 # Update to a current build and try again. 18.12.50 # I mean _the_ current build. 18.13.12 # * Gnelik went upgrading 18.14.45 Join iamben [0] (n=ben@dpc67142179038.direcpc.com) 18.17.50 Quit kubiixaka (Read error: 110 (Connection timed out)) 18.18.19 Join jonuts [0] (n=jonuts@82.166.64.198) 18.18.53 Join Justcameron [0] (n=cameron@CPE-144-137-223-85.sa.bigpond.net.au) 18.20.42 Join low_light [0] (i=c730180b@gateway/web/cgi-irc/labb.contactor.se/x-390bbea31caafab5) 18.22.21 Quit jonuts (Client Quit) 18.22.36 Quit nicktastic ("Leaving") 18.23.32 Join jonuts [0] (n=jonuts@82.166.64.198) 18.24.03 Part DarkStylist 18.25.08 Join Frazz [0] (n=Fraser@thelawsons.plus.com) 18.27.48 Quit datachild ("Half of the modern drugs could well be thrown out of the window, except that the birds might eat them.") 18.30.15 Quit barrywardell () 18.30.41 # hey people 18.31.08 # I'm looking for a way to make scrolling through lists of files faster on rockbox on my ipod photo 18.31.28 # when scrolling through large lists in the ipod firmware, it accellerates as you scroll - can rockbox do this? 18.31.58 # No, no-one has implemented that on ipods yet. 18.33.03 Quit obo ("bye") 18.34.05 # linuxstb: okay, ty. I found that "better wheel support" is listed here - http://www.rockbox.org/twiki/bin/view/Main/IpodStatus#General_tasks 18.34.19 # for now, I will put files into more sub-directories 18.34.26 # thanks for your assistance linuxstb 18.38.09 Join datachild [0] (n=datachil@217-208-144-87-no75.tbcn.telia.com) 18.38.15 Join kubiixaka [0] (n=Miranda@ip-89-103-17-41.karneval.cz) 18.39.50 Part jonuts 18.40.19 Join agm3nt [0] (i=nat-107@nat.n3t.pl) 18.41.59 # Justcameron,i'm sure their is a patch for this 18.42.16 # Robin0800: oh? 18.43.13 Quit linuxstb ("Client Exiting") 18.43.13 Quit low_light ("CGI:IRC (EOF)") 18.44.43 Part agm3nt 18.44.45 Join BigBambi [0] (n=alex@86.66.198.24) 18.45.40 Quit Genre9mp3 () 18.46.48 Join petur [0] (n=petur@rockbox/developer/petur) 18.47.58 # Justcameron,found it scrollwheel acceleration FS# 5594 18.49.39 Join DarkStylist [0] (n=DarkStyl@c213-100-135-215.swipnet.se) 18.50.01 # just a question 18.51.00 # which unit performs best with rockbox? 18.51.05 Quit bluebrother ("Lost terminal") 18.51.40 # DarkStylist,define 'best'? 18.52.02 *** Saving seen data "./dancer.seen" 18.52.48 # performs best with gameboy most stable etc 18.53.16 # In terms of most stable, of SWCodec, it'd be iRiver (not H10), iAudio and Gigabeat 18.53.23 # i.e. not PortalPlayer 18.53.43 # For speed, Gigabeat, for recording H100.... depens what you want to do 18.54.00 # Have a look at the BuyersGuide wiki page 18.54.13 # where at? 18.54.18 # the wiki 18.54.22 # www.rockbox.org 18.54.22 # sure 18.54.54 # recording like recording live concerts in cd quality wav? 18.55.34 # so um... if I want to incorporate that patch, I'd have to download the source, patch it, then compile it? 18.56.31 Join Genre9mp3 [0] (n=yngwiejo@athedsl-05815.home.otenet.gr) 18.57.09 Join eigma [0] (n=eigma@134.117.254.250) 18.57.15 # Hey whats the usb stack? Is that allowing usb connections? if so does the latest cvs have access to use usb on the sansa? 18.57.19 Part webguest40 19.00.55 # Justcameron,or use an unsaported build check the forum 19.01.08 # Robin0800: yeah, looking, thanks :) 19.01.09 # Do everyone post unsupported builds 19.01.15 # DarkStylist: Yes, or WavPack or MP3 19.01.21 # I created a build myself late august and i didnt know if i should post it 19.02.00 # The H100 series has line in and line out and optical in and optical out and internal mike all built in without needing a subpack. If you want to do recording it has the most inputs/outputs etc 19.02.19 # EnterUserName,only a link in that forum section 19.02.29 # EnterUserName: Only if you want to 19.02.37 # Many people build and don't publish 19.02.57 # If you plan to do it on a regular basis and think people will appreciate it, sure go ahead 19.03.01 # So I'd have to place the build on my own server and people download it from my server? 19.03.25 # Youl'd have to put it somewhere accessible, yes 19.03.40 # ok thank u 19.03.47 # no probs 19.04.12 # Its alot of work to make your own builds though especially if the patches dont match up :) 19.04.22 Quit elinenbe (Read error: 110 (Connection timed out)) 19.05.21 Join My_Sic [0] (n=MySic@modemcable061.67-37-24.mc.videotron.ca) 19.05.35 # EnterUserName,its hard to keep them up to date as the rockbox code chanes/improves 19.06.21 # Robin0800: I understand the reason :) 19.06.36 # And its not hard to find the rejects. Just time consuming :) 19.07.50 # EnterUserName,and by that time perhaps it's changed again 19.08.41 # Yup. I get it. Cuz people constantly commiting changes cuz your working on svn. 19.09.55 Quit Genre9mp3 () 19.11.08 Quit Justcameron ("I'm using Chatzilla on XULRunner. Oh, and please - http://getfirefox.com") 19.13.28 Join Genre9mp3 [0] (n=yngwiejo@rockbox/contributor/Genre9mp3) 19.16.43 Quit My_Sic (Success) 19.17.21 Join obo [0] (n=obo@rockbox/developer/obo) 19.19.53 Quit iamben (Read error: 104 (Connection reset by peer)) 19.19.55 Quit Genre9mp3 () 19.23.08 Join Genre9mp3 [0] (n=yngwiejo@athedsl-05815.home.otenet.gr) 19.24.10 Join Wiwie [0] (n=goddi@vpnsh0006.fh-trier.de) 19.24.30 Quit Wiwie (Read error: 104 (Connection reset by peer)) 19.25.01 Join Wiwie [0] (n=goddi@vpnsh0006.fh-trier.de) 19.28.09 Quit jbr-lover () 19.31.54 Join eigma_ [0] (n=eigma@134.117.254.250) 19.32.23 Join elinenbe [0] (n=elinenbe@209.196.192.8) 19.35.53 Join Redbreva [0] (n=chatzill@host86-142-54-122.range86-142.btcentralplus.com) 19.37.34 Quit eigma (Read error: 110 (Connection timed out)) 19.39.21 Quit atsea- (Remote closed the connection) 19.41.25 Nick eigma_ is now known as eigma (n=eigma@134.117.254.250) 19.41.58 Join iamben [0] (n=ben@dpc67142179038.direcpc.com) 19.42.17 Part toffe82_ 19.42.39 Quit BHSPitMonkey (Remote closed the connection) 19.45.40 Join freqmod [0] (n=freqmod@m072g.studby.ntnu.no) 19.46.52 Quit amiconn (Nick collision from services.) 19.46.56 Join amiconn_ [0] (n=jens@rockbox/developer/amiconn) 19.50.30 Join atsea- [0] (i=atsea-@gateway/tor/x-60a12e951652d168) 19.54.10 Join Fraser [0] (n=Fraser@thelawsons.plus.com) 19.54.10 Quit Frazz (Read error: 104 (Connection reset by peer)) 19.56.35 Quit eigma (Read error: 104 (Connection reset by peer)) 19.57.02 Join Chairman_Wow [0] (n=Chairman@static-87-79-239-65.netcologne.de) 19.57.27 Quit Wiwie (Read error: 113 (No route to host)) 19.58.01 # Anyone know what's the current situation with nano 2nd gen? I know it's not officially supported but are there any hacks to get it working? 19.59.30 Join jgarvey [0] (n=jgarvey@cpe-069-134-102-044.nc.res.rr.com) 20.01.49 Quit Genre9mp3 () 20.03.13 # Chairman_Wow: there has been no breakthrough 20.03.50 # Nico_P: Ah well, you can't have everything thanks for the info. 20.03.53 # did someone say my name 20.04.16 # If they did it was a bit of a mouthful. 20.05.25 # advcomp2019, I believe. (and scorche) advcomp2019: you round? <-- it was back a little bit 20.06.25 # back later tho 20.07.00 # Oh, sorry advcomp2019, I thought you were joking about the "say my name bit". Nico_P: thanks for the reply. 20.07.18 # Chairman_Wow: you're welcome 20.10.08 Nick amiconn_ is now known as amiconn (n=jens@rockbox/developer/amiconn) 20.11.31 Join BHSPitMonkey [0] (n=stephen@129.120.244.114) 20.12.50 Quit Kupopop (Read error: 110 (Connection timed out)) 20.20.19 Join linuxstb [0] (i=5343d4aa@rockbox/developer/linuxstb) 20.22.35 Join pixelma [0] (i=pixelma@rockbox/staff/pixelma) 20.23.06 # you asked for me earlier 20.23.14 # pixelma 20.24.04 # I just wanted to mention you as JdGordon was looking for an e200r owner 20.24.29 # o ok 20.25.09 # hope I remembered correctly that you have one 20.25.30 # yea i have an e200r 20.27.05 # maybe you can answer him per mail, see http://www.rockbox.org/mail/archive/rockbox-dev-archive-2007-09/0012.shtml - or if he's around later 20.27.28 Join Agm3nt [0] (i=nat-107@nat.n3t.pl) 20.27.42 Join pepie34 [0] (n=pepie34@cop60-1-82-240-26-92.fbx.proxad.net) 20.31.38 Quit pepie34 (Client Quit) 20.32.45 # i might talk to him later plus i am going to be busy for a while pixelma 20.32.53 # how to build bootloader for c200? 20.33.22 # Have you set up a Rockbox development environment? 20.33.32 # yes 20.33.43 # And you've checked out the source code from SVN? 20.34.09 # i have subversion 20.34.24 # Then see the UsingSVN wiki page and download the Rockbox source. 20.34.38 # I dont think it shows how to find the bootloader there.. 20.34.43 # I build rockbox.zip 20.34.45 # just the rockbox.zip 20.34.56 # yes 20.35.06 # It's all the same source - I haven't got to the bootloader stage yet.... 20.35.19 # Agm3nt: So you have the source on your computer? 20.35.22 # Ya where does it put the sanspatcher? 20.35.41 # yes i have source 20.35.57 # Then create a new build directory (e.g. mkdir build-boot) and then cd into it. 20.36.21 # Then you run ../tools/configure, select the c200, then b for bootloader, then "make" 20.36.29 # ahh 20.36.38 # That should give you a .mi4 file you can install on your c200. 20.37.03 # (assuming low_light has checked all the required changes into SVN - I haven't been following his commits) 20.38.37 # i get a bootloader.bin 20.38.57 # amiconn, jhMikeS: I don't know if you've noticed, but the IPL PP5020 wiki page was updated a couple of weeks ago with some new info. 20.41.41 Join DarkSKall [0] (i=428251ea@gateway/web/cgi-irc/labb.contactor.se/x-6784e9e8b2eb5746) 20.41.45 # hello 20.41.58 # can someone help me with my gigabeat? 20.42.09 Join pepie34 [0] (n=pepie34@cop60-1-82-240-26-92.fbx.proxad.net) 20.42.27 Join low_light [0] (i=c730180b@gateway/web/cgi-irc/labb.contactor.se/x-1ea7a1736c602495) 20.42.32 # DarkSKall: Ask your question - no-one knows yet if they can help... 20.42.36 # linuxstb: i copy firmware.mi4 but it not upgrade 20.42.55 # Agm3nt: The expert's just arrived... 20.43.32 Join Llorean [0] (n=llorean@cpe-70-113-103-34.austin.res.rr.com) 20.43.33 # My gigabeat shows the error 0000010 when i power on , i had rockbox on it ,the last thing i did was charging the battery 20.43.37 Join eigma [0] (i=tlzumt@CABLE-206-188-76-21.cia.com) 20.43.50 # with the c200 you need to to build and install the Normal build first (so you can use the orig firmware's usb) 20.43.52 # i tried the surgery solution but the hard drive does not show up 20.44.39 # then build the rockbox bootloader (firmware.mi4) 20.45.41 # to install the rockbox bootloader, you use the recovery mode: device off, switch hold on, press and hold rec while inserting usb 20.45.53 # tell Bagder i was going to do the same thing in the that forum that he posted in 20.46.55 # copy the firmware.mi4 and disconnect. it should update. 20.47.17 # I'll update the wiki when I get time. 20.48.16 # low_light: I thought a normal firmware upgrade (on the E200) was just to copy it to the FAT32 partition in normal UMS mode? 20.48.21 # The only way to get usb access to the device (to add music or update rockbox) is to put the orig firmware back 20.51.11 Part DarkStylist 20.51.34 # Nobody can help me? 20.52.06 *** Saving seen data "./dancer.seen" 20.52.16 Quit Nico_P (Remote closed the connection) 20.52.23 # linuxstb: on the H10 and mrobe the OF is in the System directory so you can copy it directly...not so on the c200...I don't know about the e200 20.52.24 Join Nico_P [0] (n=nicolas@rockbox/developer/NicoP) 20.52.41 # from what I've seen, there are two types of USB support in devices: dedicated hardware (firmware just flips a switch and suddenly the HDD is handed over to some kind of USB MSD controller) and software (the firmware bridges between the HDD and the USB MSD standard). which does Rockbox support, and how well? 20.53.08 # I suppose the former is trivial to support once you know where the switch is. 20.53.32 Join HeNry2kOo [0] (n=None@adsl-75-37-38-164.dsl.pltn13.sbcglobal.net) 20.53.38 # low_light: Have you seen this thread (especially the last post on this page) ? http://forums.sandisk.com/sansa/board/message?board.id=c200&message.id=546 20.54.03 # has anything having trouble with dual booting with their E200R? 20.54.09 # *anyone 20.54.43 # low_light: not work http://pastebin.ca/684392 20.55.07 # eigma: You're right - the devices Rockbox supports have both kinds of USB. The hardware USB is well-supported and works perfectly. Software USB doesn't work at all (but is in development). 20.55.50 # linuxstb: I see. thanks. 20.56.49 # Where Rockbox doesn't have USB connectivity, you need to use the original firmware. On some devices (e.g. ipods), Rockbox detects a USB connection and automatically starts the disk mode of the original firmware. On others you have to start the OF manually. 20.57.18 # I see. that's still a nice fallback (automatically starting the firmware) 20.58.04 Quit Gnelik ("Пока") 20.59.54 # anyone here with a rockboxed E200R? 21.00.49 # Agm3nt: firmware.mi4...that's the rockbox bootloader 21.01.37 Quit Nico_P (Remote closed the connection) 21.03.32 # low_light: i put it but it not upgade in screen i see LUN0 locked 21.03.56 # HeNry2kOo: What kind of problems are you having booting the OF? Has it ever worked? 21.04.11 # Agm3nt: unmount & disconnect 21.04.40 Quit eigma () 21.08.04 Quit kugel ("ChatZilla 0.9.78.1 [Firefox 2.0.0.6/2007072518]") 21.08.40 # low_light: Can't load rockbox.mi4. File too big 21.10.38 Quit DarkSKall ("CGI:IRC (EOF)") 21.13.55 Join My_Sic [0] (n=MySic@modemcable061.67-37-24.mc.videotron.ca) 21.14.26 # hmm, on my e280, I just selected recording from the menu, and now it hangs there and I can not stop it anymore. 21.14.39 # Any hints? Pressing the off button for long doesnt help at all 21.14.55 Join bluebrother [0] (i=WgWMjFIN@nat-wh-1.rz.uni-karlsruhe.de) 21.15.46 # thought holding the power button for about 10 (maybe a bit more) seconds would always turn the Sansa off 21.16.15 # ah, thanks. 21.16.22 # I didnt know about the 10 seconds. 21.16.39 # so recording is broken? 21.17.26 Quit pepie34 ("Ex-Chat") 21.19.12 # Agm3nt: what's the mi4 size displayed on the screen? 21.19.14 Join pepie34 [0] (n=pepie34@cop60-1-82-240-26-92.fbx.proxad.net) 21.19.19 Quit pepie34 (Read error: 104 (Connection reset by peer)) 21.20.15 # low_light: its 38167449 21.20.37 # delYsid: I don't have a Sansa, on my player (M5) it works fine 21.21.27 # Agm3nt: and what's the size of rockbox.mi4 21.21.51 Quit HeNry2kOo () 21.22.11 # low_light: its mi4 size 21.24.12 # Agm3nt: I'm confused...the rockbox.mi4 file should be about 400 kB 21.24.46 Join eigma [0] (i=jpczddk@CABLE-206-188-76-21.cia.com) 21.24.47 Join SoapSud [0] (n=SoapSud@host86-136-127-222.range86-136.btcentralplus.com) 21.25.04 # low_light: in rockbox.zip have 411 KB 21.27.24 # low_light: to restore to OF copy only firmware.mi4?? 21.27.34 # Let's review...you booted the orig sansa firmware, unzip rockbox.zip onto the device, turned off the device, restarted in recovery mode (hold+rec+usb), copied the rockbox firmware.mi4, and disconnected 21.27.56 # low_light: right 21.28.35 # low_light: yes 21.29.25 # yes, go back to recovery mode and copy over the orig firmware.mi4 21.29.41 Join hannesd [0] (n=light@gate-hannes-tdsl.imos.net) 21.30.50 # how to unpack *.7z file in linux?? 21.31.24 Quit Buschel () 21.31.24 # using "7z" 21.31.26 Quit The-Compiler (Read error: 104 (Connection reset by peer)) 21.31.28 # you need p7zip 21.31.45 # 7z x archive.7z 21.32.04 # thanks 21.34.07 Quit SoapSud ("ChatZilla 0.9.78.1 [Firefox 2.0.0.6/2007072518]") 21.34.56 Quit chrisjs169 (Read error: 110 (Connection timed out)) 21.36.32 Join chrisjs169 [0] (n=jack@pool-71-114-128-205.hrbgpa.dsl-w.verizon.net) 21.36.44 Quit low_light ("CGI:IRC (Ping timeout)") 21.36.51 Join ompaul [0] (n=ompaul@freenode/staff/gnewsense.ompaul) 21.38.42 # linuxstb: The exception vector remapping sounds interesting. It could make ram remapping superfluous 21.39.44 Part Redbreva 21.40.12 # courtc made the wiki changes (he's lurking here now...) 21.40.35 Quit woodensoul () 21.40.52 # The cpu controller stuff extends on what jhMikeS figured out 21.47.29 # Llorean: when I browse to a thread in the forums that has the "new" icon attached, is it possible to directly jump to the new posts? 21.48.30 # click on the "new" icon? 21.48.38 # oh, does that work? 21.48.48 # works here 21.48.52 # ah, cool :) 21.48.55 # thanks 21.49.09 # * Agm3nt have works rockbox on c200 21.50.06 # exception vector remap? 21.50.11 Quit Agm3nt () 21.50.18 Join DarkSkall [0] (i=428251ea@gateway/web/cgi-irc/labb.contactor.se/x-46bc35fd597185f3) 21.50.26 # Hello 21.50.33 # Hello 21.53.43 # I got a problem with my gigabeat , error 10 , I tried the surgery solution ,but it doesnt work at all ,someone know how to solve this? 21.59.06 Quit Guile`` ("KVIrc 3.2.0 'Realia'") 21.59.49 Quit Robin0800 (Read error: 110 (Connection timed out)) 22.03.40 Join DefineByte [0] (n=DefineBy@bb-87-81-195-5.ukonline.co.uk) 22.03.51 Quit freqmod (Remote closed the connection) 22.08.05 Quit DarkSkall ("CGI:IRC (EOF)") 22.10.06 # jhMikeS, Bagder: You guys around? 22.11.31 Quit ompaul ("take it easy") 22.13.44 Join pepie34 [0] (n=pepie34@cop60-1-82-240-26-92.fbx.proxad.net) 22.18.44 # Quick question - been going through list archives but haven't found anything recent - does rockbox support wma? 22.18.52 # Yes 22.19.53 Join Adler [0] (i=4c4205fb@gateway/web/cgi-irc/labb.contactor.se/x-cf9951661bdfc2c3) 22.20.07 Quit Adler (Client Quit) 22.20.16 Join MyAdler [0] (i=4c4205fb@gateway/web/cgi-irc/labb.contactor.se/x-c6aa32fe8f7865dc) 22.26.37 # Is it normal that whenever i plug in my iriver to the usb on my computer and turn it on it tells me that "one of the usb devices on this computer has malfunctioned"? 22.27.04 # i get that on my ipod sometimes 22.27.07 # Which iriver? 22.27.14 # when i haven't booted first 22.27.15 Quit clocks ("Leaving") 22.27.24 # h10..... 22.27.33 # 20gig 22.27.38 # blue... 22.27.58 # Yes, there is a known problem (on lots of targets) when booting with the USB cable attached. 22.28.23 Quit pepie34 ("Ex-Chat") 22.28.36 # i dont think it ever recognises it.....no matter when i connect.... 22.28.55 # Are you holding the required button (I forget what, maybe power) when inserting USB? 22.29.21 # maybe not......anyone know what that button may be? 22.29.31 Join pepie34 [0] (n=pepie34@cop60-1-82-240-26-92.fbx.proxad.net) 22.29.46 Quit My_Sic ("Miranda IM! Smaller, Faster, Easier. http://miranda-im.org") 22.30.03 # The manual should describe it. (I hope...) 22.30.21 # ill go take a look... 22.31.29 # am I right that the .talk and _dirname.talk generation does only work with vbs currently? 22.34.31 # * n1s thinks it's interesting that most threads requesting some weird UI feature get so heated once someone comes with an argument against adding it... 22.35.30 # delYsid: Rockbox Utility can create .talk-clips 22.35.40 # though I neither implemented nor tested it ... 22.35.44 # i cant find anything to do with connecting the player to usb.... besides for when it explains how to install rockbox... 22.35.58 # bluebrother: thats the qt thing, right? 22.36.06 # yes. 22.36.17 # hmm, sad, so I cant use that either. 22.36.29 # will have to write my own script then 22.36.37 # delYsid: Your computer can't run it, or the accessibility features in QT don't meet your standards? 22.37.00 # Llorean: on linux (which is what I use) Qt is not accessible at all, so I cant use it... 22.37.33 # delYsid: QT4 certainly claims to be, at least 22.37.34 # MyAdler: is your h10 a MTP version? 22.37.47 # Llorean: it claims to, thats the problem. 22.37.57 # youre gonna have to tell me how should know that....? 22.38.13 # delYsid: Well, are you saying the functionality doesn't work at all? 22.38.17 # It just does nothing? 22.38.27 # Llorean: correct. 22.38.41 # well, some of the kde guys seem to work on a Qt-ATK bridge 22.39.09 # MyAdler: did you have to do the UMS trick to install rockbox 22.39.14 # bluebrother: I am very involved with the accessibility stack on linux, I know it will at least take 6 months or more. 22.39.18 # yes i do 22.39.19 # delYsid: I seem to recall people having some success with it, so I'm tempted to think it's more likely something not configured properly. Have you gone to QT support channels and sought more information on this? 22.39.26 # unfortunately that web page seems to be down. 22.39.32 # they are discussing this since *years* and nothing usable emerged yet. 22.39.41 # ah. And what's the current status? 22.39.53 # is there any web site giving an overview? 22.40.10 # Llorean: please believe me, it does not work. I am really quite involved with a11y on linux. 22.40.50 # bluebrother: the AT-SPI/ATK uses corba, and Qt/KDE does not want to use this, that is the status since about 3 years now. 22.40.52 # delYsid: Well that's the thing, I've heard people claim it's worked for them. 22.40.56 # but they keep claiming they support it. 22.41.04 # delYsid: So claiming that it is completely unfunctioning seems to be going a bit too far, to me. 22.41.16 # I googled around a bit the last days and as far as I found Qt wants to use dbus. 22.41.17 # MyAdler: then you should hold down a button when connecting the USB while in rockbox, I guess it's the select button 22.41.18 # delYsid: Or are you saying "It doesn't function with my system"? 22.42.12 # Llorean: no, the problem is Qt implements an API since Qt4, but there is no screen reader (a program that can use the API) yet. 22.42.18 # so it is effectively not working at all. 22.42.46 # just believe me, I really know what I am talking here. 22.43.03 # anyway, I'll write myself a script that does it. 22.43.08 # on linux that is 22.43.19 # since clearly it speaks on windows 22.43.39 # you might want to look into adding the command line interface to rbutil ;-) 22.43.42 # just wanted to clarify 22.43.48 # well, maybe, I dont use windows. 22.44.00 # which is somewhat planned but needs quite some work 22.44.06 # still, saying "qt4 isn't accessible" isn't completely true 22.44.22 # since it is qt4 on linux that has the problems 22.44.24 # Bagder: you sound like a trolltech guy :-) 22.44.44 # great thanx, seems to have worked 22.44.45 # delYsid: My googling suggests at least Orca claims to support AT-SPI? 22.44.45 # I consider the fact that many people don't use linux 22.44.59 # Bagder: that, doesnt help me :-) 22.45.05 # indeed not 22.45.10 # I just clarify your statements 22.45.34 Quit pepie34 ("Ex-Chat") 22.46.00 # Llorean: yes, Orca supports AT-SPI, but Qt has no bridge to AT-SPI yet 22.46.32 # delYsid: QT4 claims to. Is the documentation incorrect? 22.46.44 # Llorean: yes, the documentation is incorrect. 22.46.50 # by what means? 22.46.56 # I was baffled as well when I read that. 22.46.59 # its just a lie 22.47.05 # I read about two different approaches AT-SPI 22.47.13 # if you ask the KDE people, they will confirm it, but they will be reluctant about it :-) 22.47.45 # anyway, thanks for your info. 22.47.51 # delYsid: What about Gnome people? 22.48.07 # Llorean: GTK2 is accessible via orca since about 2 years now. 22.48.26 # GTK2, openoffice and java use AT-SPI 22.48.43 # but Qt does not want to use CORBA, so they implemented an API without a bridge to anything on linux. 22.48.57 # so what is Qt using? The docs claim it's AT-SPI 22.49.11 # bluebrother: yes, I know, and that is false!!! 22.49.30 # but what are they using if it's not AT-SPI? 22.49.39 # nothing :-) 22.49.40 # I read about two approaches at AT-SPI ... 22.49.52 # its a really crazy situation 22.49.54 # well, there is code around so it needs to be at least more than nothing. 22.49.56 Quit linuxstb ("CGI:IRC (Ping timeout)") 22.50.18 Join linuxstb__ [0] (n=linuxstb@i-83-67-212-170.freedom2surf.net) 22.50.23 # well, the API is there, but it doesnt go anywhere. 22.50.40 # I guess they claim compatibility because they want to have some positive PR, dunno, really. 22.51.04 # I was confused as well when I read the QT4 a11y docs. 22.51.34 # but the guys working on it confirmed to me that it isnt there yet. 22.51.55 # I actually know them, I am involved in a11y development on linux, going to conferences and all that. 22.52.08 *** Saving seen data "./dancer.seen" 22.52.13 # and how's the state with KDE4? 22.52.34 # I read they want to have it accessible at least. 22.52.49 Quit Fraser (Read error: 110 (Connection timed out)) 22.53.13 # wanting is not the same as doing.... 22.53.23 # gnome has its act together since several years now. 22.53.27 # and KDE is only claiming stuff. 22.53.38 # that doesn't imply they have something working in their current development tree. 22.53.39 # believe me, I rely on accessibility to actually work with my computer. 22.54.20 # delYsid: we believe you, we just try to get some further info from you than the repeated "it doesn't work" mantra 22.54.26 # anyway, gotta get some sleep. 22.54.26 # ... and you really sound pretty much frustrated about kde / qt in terms of accessibility 22.54.37 Quit BigMac_ ("Konversation terminated!") 22.54.38 # bluebrother: yes, I am. 22.54.45 # and only telling us that "it doesn't work" doesn't help clarifying the situation nor improving it 22.54.46 # bluebrother: Is our RBUtil compiled with accessibility functions (or non-working ones) enabled? 22.54.55 # Llorean: yes, at least on windows. 22.55.26 # bluebrother: I'm just curious if "doesn't work" means "extremely limited" or "nothing at all" or "error messages" or what. 22.55.44 # Which means a linux test. 22.55.55 # Llorean: on linux, currently, "nothing at all", at least from an end-user perspective. 22.56.13 # I haven't done test on linux, but information about screen readers on linux are really hard to find. 22.56.26 # at least if you're not familiar with that "scene" 22.56.37 # there is only orca really on linux 22.56.51 # and I know that code, I patched it in the past, and there is no Qt support at all in orca. 22.57.06 # bluebrother: I was just curious if the functionality is "enabled" in the linux binary on the wiki page 22.57.19 # and as long as Qt provides no AT-SPI bridge, that means nothing works. 22.57.32 # Llorean: the functionality is provided by a Qt plugin which needs to be compiled in when build statically. 22.57.48 # Llorean: ideally, an app should not have to care, the accessibility part is enabled in the toolkit, not app-specific 22.57.52 # I had the impression that there's something fishy about this on the linux binary but I haven't investigated yet. 22.57.58 # * bluebrother found an interesting web page: http://labs.trolltech.com/page/Projects/Accessibility/QDBusBridge 22.58.02 # delYsid: Yes, but we provide a static binary I think 22.58.26 # Llorean: i see. 22.58.29 Join donutman25 [0] (n=chatzill@65.75.87.48) 22.58.37 # bluebrother: dbus, yes, but there is no screen reader for dbus yet. 22.59.09 # anyway, bye... and thanks. 22.59.10 # well, fine. I'm currently trying to find out what's available at all 22.59.12 # bluebrother: Something fishy about the linux version? Also how would I know if the plugin has been compiled in? 22.59.46 # and it seems like there is no general overview or good start point around. Or nobody is willing to point me to it. Dunno. 23.00.19 # Llorean: if the plugin isn't compiled in it won't be accessible. Users not interested in that wouldn't notice a difference. 23.03.37 Quit linuxstb_ (Read error: 113 (No route to host)) 23.03.45 # hmm, interesting: http://developer.kde.org/documentation/library/cvs-api/kdelibs-apidocs/interfaces/kspeech/html/index.html 23.05.33 Quit seablue ("life, death, life, death") 23.06.06 # As I said, I'm almost positive I've had someone tell me they had a QT program speaking, though I don't know what hoops they may have gone through 23.06.36 # maybe I should go and compile KDE4. After reading some pages it really looks like they have something working. 23.08.26 # Orca seems a bit unstable here. 23.08.53 # But then I've been having some weird instability with anything GTK+ right now 23.09.05 # it was heavily unstable when I tried it some days ago. Frequent crashes after closing a gtk application 23.09.08 Part n1s 23.09.34 # That's what I get. 23.10.12 Quit Rondom ("Ex-Chat") 23.10.30 # Doing Google research, every time I see QT4 being problematic for accessibility it's under KDE. 23.11.26 # well, KDE3 doesn't have support for screen readers and KDE4 isn't released yet 23.11.35 # any devs in the Edmonton/Alberta/Canada area? If so, interested in spending a bit of non warranty voiding quality time with my new ipod nano once it arrives/ 23.12.11 # billytwowilly: Installing Rockbox is warranty voiding... 23.12.38 # I was thinking trying to get some info out of it to see how hard a rockbox port would be. 23.12.48 # how would anyone know that rockbox was installed.... 23.12.52 # not actually installing rockbox. 23.13.30 # reading through list archives with loads of top-posts isn't fun :/ 23.14.01 # billytwowilly: Well any useful information requires opening it up, again warranty voiding. 23.15.20 # heh. then no dice. Oh well, I tried. 23.15.32 # and of course checking the firmware upgrade files 23.15.36 # etc 23.16.10 # Llorean: also quite interesting in terms of at-spi: http://websvn.kde.org/trunk/playground/accessibility/orca-dbus/README?revision=588808&view=markup 23.17.56 # bluebrother: That's also a year old. =/ Doesn't look very good. 23.18.22 # well, it's in the playgound of kde. Maybe they moved on ... 23.20.14 Quit MyAdler ("CGI:IRC (EOF)") 23.21.26 Join sarixe [0] (n=sarixe@ool-435403e9.dyn.optonline.net) 23.21.52 Join freqmod [0] (n=freqmod@m072g.studby.ntnu.no) 23.26.16 # \ 23.27.19 Quit jhMikeS (Read error: 104 (Connection reset by peer)) 23.28.47 Quit sarixe ("Peace") 23.29.28 Join jhMikeS [0] (n=jethead7@rockbox/developer/jhMikeS) 23.29.54 # http://www.linux-foundation.org/en/AT-SPI_on_D-Bus 23.30.21 # sounds to me like there is just a big change underway and that hinders KDE / Qt from supporting the existing techniques. 23.32.36 Join einhirn [0] (n=Miranda@p5B030D4F.dip0.t-ipconnect.de) 23.33.04 # Good evening. I finally made it back to do some coding. 23.33.37 # bluebrother: It does sound to me that Qt isn't *really* the culprit though. Not in the strictest sense. 23.35.18 # I agree. 23.36.52 Join linuxstb_ [0] (n=linuxstb@rockbox/developer/linuxstb) 23.42.05 Quit BigBambi (Remote closed the connection) 23.42.58 Quit linuxstb__ (Read error: 110 (Connection timed out)) 23.43.57 Part DefineByte 23.44.44 Join hcs [0] (n=agashlin@rockbox/contributor/hcs) 23.47.34 Join BigBambi [0] (n=alex@86.66.198.24) 23.53.47 Quit jgarvey ("Leaving") 23.56.27 Join jhulst [0] (n=jhulst@c-71-205-0-132.hsd1.mi.comcast.net)