--- Log opened Sun Nov 18 00:00:03 2007 00:06 -!- courtc [n=court@unaffiliated/courtc] has quit [Read error: 110 (Connection timed out)] 00:12 -!- screwt8 [i=screwt8@gateway/tor/x-b84c5f8d8fab948c] has quit [Remote closed the connection] 00:28 -!- skittle7 [i=5ac0a88c@gateway/web/cgi-irc/ircatwork.com/x-4e12450ea3799600] has joined #ipodlinux 00:30 -!- zacaj [n=chatzill@209.23.29.70] has quit [Read error: 104 (Connection reset by peer)] 00:30 -!- zacaj_ [n=chatzill@209.23.29.70] has joined #ipodlinux 00:30 -!- zacaj_ is now known as zacaj 00:41 -!- pandrew [n=andrew@86.122.168.62] has joined #ipodlinux 00:41 -!- ionvas__ is now known as ionvas 00:42 -!- skittle7 [i=5ac0a88c@gateway/web/cgi-irc/ircatwork.com/x-4e12450ea3799600] has quit ["CGI:IRC"] 00:55 -!- fxb is now known as fxb__ 00:57 -!- screwt8 [i=screwt8@gateway/tor/x-773a79d0b9abecef] has joined #ipodlinux 01:10 -!- DerPapst [n=DerPapst@p5B23EA28.dip.t-dialin.net] has quit ["So Long And Thanks For All The Fish!"] 01:30 -!- screwt8 [i=screwt8@gateway/tor/x-773a79d0b9abecef] has quit [Remote closed the connection] 01:32 < BleuLlama> DerPapst: http://umlautllama.com/tmp/mikmodule_r27_src.zip Relative playlists work now! 01:32 < BleuLlama> oh, you're not here. darn 01:44 -!- screwt8 [i=screwt8@gateway/tor/x-42a3b7348c273295] has joined #ipodlinux 02:20 < DataGhost> zacaj 02:20 < zacaj> what? 02:20 < DataGhost> what's your position on the rom/iso sites your forum members are currently linking to? 02:21 < zacaj> Why? 02:27 < DataGhost> because your forums would become one of the 'off limits' sites on our forums, I guess 02:30 < zacaj> Well, i dont like them doing it(afraid of being shut down), but I dont really care, and theyd probably get mad if I stopped, although they wouldnt have been if Id never let them, so.... 02:30 < DataGhost> anyway, I don't really know about the law, but my common sense says that if you know about such activities and have the power to intervene, you can be held (partially) responsible 02:31 < DataGhost> and them getting mad is really their own problem, in my opinion 02:31 < zacaj> Well, thats why they left iPL Forums I think 02:31 < BleuLlama> we can't allow links to sites that condone illegal activities (whether you agree to the legality or not) 02:32 < zacaj> Well, 02:32 < BleuLlama> (meaning, links to your forums are about to disappear from our forums) 02:32 < BleuLlama> as much as i dislike doing it. 02:32 < zacaj> Id say they should limit the links to 'illeagal' stuff to 02:32 < zacaj> things that the origional 02:33 < zacaj> publishers cant make more profit on 02:33 < BleuLlama> not to mention, the "share a song" probably is of questionable legality as wel 02:33 < zacaj> ex: NES roms should be allowed, because Nintendo doesnt sell them anymore, but PS2 shouldnt, because they still make money off of them, 02:33 < DataGhost> unfortunately, the law does not limit 'illegality' to objects which are still actively sold, but to all copyrighted content... and we're still bound to the law 02:34 < zacaj> Ill probably make that a rule 02:34 < zacaj> I know, but I dont like that law... 02:34 < zacaj> Ill post that rule 02:34 < BleuLlama> zacaj: doesn't matter if they can make a profit or not, if the IP is profitable for them. if they own it, and you're distributing it without their consent, they can prosecute you. (you meaning the people of the site) 02:34 < DataGhost> nope, but you do have to obey it, as do we. 02:35 < BleuLlama> i don't agree with the law either, but i;ve already had brushes with Namco and Nintendo in the past, and i'd rather not see another acquaintence go through that. 02:35 < zacaj> Would it help if I limited it to stuff that no profit is being made(with you guys) 02:35 < BleuLlama> I don't mean to rail against you in particular, zacaj. I really do like that you have your forums set up. 02:36 < zacaj> thanks 02:36 * zacaj glad youre not mad at me for making them) 02:36 < davidc__> zacaj - we're happy for you to take the offtopic people off our hands 02:36 < BleuLlama> and i'd really like to be able to send people to them if they want to vent about the way we do stuff, about us, whatever. 02:36 < davidc__> zacaj - we;re just in a bit of a difficult position, reverse engineering being so grey and all 02:37 < davidc__> zacaj: so we tend to absolutely stay on the side of being perfectly legal 02:37 < zacaj> Heh.... 02:37 < davidc__> zacaj: that way we can't be shut down ;) 02:37 < BleuLlama> but we don't distribute apple IP, just knowledge gleaned from peeking at it. 02:38 -!- ionvas is now known as ionvas__ 02:48 < zacaj> IP? 02:49 < BleuLlama> intellectual property 02:51 < zacaj> Oh, 02:51 < zacaj> Whats the difference between ++i and i++? 02:51 < DataGhost> speed, although it'd be optimized away probably 02:51 < davidc__> zacaj - one increments before you get the value, one after 02:51 < davidc__> aka if you had int a; 02:52 < davidc__> int i = 3; 02:52 < DataGhost> and the main difference is when using that in an evaluation 02:52 < davidc__> a = i++; 02:52 < davidc__> means a = 3 02:52 < davidc__> and a = ++i; means a = 4 02:52 < DataGhost> anyway, brushed my teeth etc. going to get some sleep. night 02:52 < zacaj> Whats the difference it for loops? 02:52 < zacaj> Is it like while and do while? 02:54 < davidc__> eh, if its just for (i=0; i<5; i++) 02:54 < davidc__> vs ++i 02:54 < davidc__> no difference 02:54 < davidc__> but if its while (i-- != 0) 02:54 < davidc__> vs --i = 0; 02:55 < davidc__> one will go one cycle extra 02:56 < zacaj> thanks 03:00 -!- Rprp [n=Rprp@cc763024-b.groni1.gr.home.nl] has quit [Excess Flood] 03:00 -!- Rprp [n=Rprp@cc763024-b.groni1.gr.home.nl] has joined #ipodlinux 03:24 < zacaj> Does anyone know of any fonts(ttf) that look like the vector(scaling) fonts in podzilla 03:26 < BleuLlama> dunno. 03:26 < BleuLlama> i created the vector font from scratch, based on the vector text used in the game "Tempest" 03:26 < BleuLlama> it wasn't based on an existing TTF or anything 03:27 < BleuLlama> OCR-A is fairly similar, kinda 03:28 < zacaj> No, ime looking for a ttf font that looks like the vector text in tempest 03:31 < BleuLlama> right. that's what i'm answering 03:31 < BleuLlama> when i made that vectorfont stuff for podzilla, it was based on Tempest, not an existing TTF, and the closest TTF font i can think of is OCR-A 03:33 < zacaj> So you dont know of any ttf fonts that are all strait lines? 03:34 < davidc__> zacaj: he just said, OCR-A 03:34 < davidc__> zacaj: look at that font 03:34 < BleuLlama> (twice) 03:48 < zacaj> Have you made any progress with the Java installer? 03:49 < BleuLlama> just the basic app. i was working on MikModule today. 03:49 < BleuLlama> probably get a basic installer doing something tomorrow 04:14 -!- ionvas__ is now known as ionvas 04:49 -!- pandrew [n=andrew@86.122.168.62] has quit [Remote closed the connection] 05:04 -!- courtc [n=court@c-24-99-230-218.hsd1.ga.comcast.net] has joined #ipodlinux 05:14 -!- Orb [i=gasm@68.58.85.85] has quit ["OJ"] 05:14 -!- ionvas is now known as ionvas__ 05:38 -!- ionvas__ is now known as ionvas 05:55 -!- monchevique [n=monchevi@201.163.76.110] has joined #ipodlinux 05:55 < monchevique> is it possible to install linux on ipod 5g? 06:00 < rvvs89> For great justice, look at the wiki 06:01 < monchevique> http://es.wikipedia.org/wiki/Imagen:Ipod_linux_booting_kernel.jpg 06:01 < monchevique> it seems it does 06:01 < monchevique> that* 06:01 -!- monchevique [n=monchevi@201.163.76.110] has left #ipodlinux [] 06:24 -!- n1mda [n=n1mda@202.124.73.173] has joined #ipodlinux 07:10 -!- weezerle_moep [n=weezerle@dslb-088-072-030-169.pools.arcor-ip.net] has joined #ipodlinux 07:11 -!- scorche [n=scorche@rockbox/administrator/scorche] has joined #ipodlinux 07:12 -!- weezerle [n=weezerle@dslb-088-072-004-019.pools.arcor-ip.net] has quit [Read error: 110 (Connection timed out)] 07:42 -!- andy_js [n=andy@AAmiens-152-1-58-171.w83-198.abo.wanadoo.fr] has joined #ipodlinux 07:44 -!- n1mda [n=n1mda@202.124.73.173] has quit [Read error: 110 (Connection timed out)] 07:48 -!- travisslack [n=travissl@216.249.50.123] has joined #ipodlinux 07:48 < travisslack> ok so i guess my ipods harddrive disconnected... i know how to take the casing off, is it easy to reattach? 07:50 < BleuLlama> http://ifixit.com has guides for assembly/disassembly 07:52 < travisslack> i know it would void my warrenty but what do you figure my odds are? 07:53 < BleuLlama> odds of what? 07:53 < BleuLlama> if you follow the directions it should be fairly easy to do. 07:53 * BleuLlama goes to sleep 07:53 < travisslack> ok cool, thanks ill do it tomorrow 07:54 -!- travisslack [n=travissl@216.249.50.123] has quit [] 08:30 -!- zacaj_ [n=chatzill@209.23.29.70] has joined #ipodlinux 08:30 -!- zacaj [n=chatzill@209.23.29.70] has quit [Read error: 104 (Connection reset by peer)] 08:31 -!- zacaj_ is now known as zacaj 09:14 -!- amiconn [n=jens@rockbox/developer/amiconn] has quit [" mrf"] 09:18 -!- amiconn [n=jens@rockbox/developer/amiconn] has joined #ipodlinux 09:36 -!- davina [n=davina@cpc1-sout6-0-0-cust616.sotn.cable.ntl.com] has joined #ipodlinux 09:48 -!- RedDak [n=dak@host65-81-dynamic.18-79-r.retail.telecomitalia.it] has joined #ipodlinux 10:06 -!- andy_js_ [n=andy@AAmiens-152-1-84-100.w90-34.abo.wanadoo.fr] has joined #ipodlinux 10:12 -!- andy_js__ [n=andy@AAmiens-152-1-81-199.w90-34.abo.wanadoo.fr] has joined #ipodlinux 10:21 -!- andy_js [n=andy@AAmiens-152-1-58-171.w83-198.abo.wanadoo.fr] has quit [Read error: 110 (Connection timed out)] 10:25 -!- andy_js_ [n=andy@AAmiens-152-1-84-100.w90-34.abo.wanadoo.fr] has quit [Connection timed out] 10:28 -!- amiconn [n=jens@rockbox/developer/amiconn] has quit [" HydraIRC -> http://www.hydrairc.com <- Like it? Visit #hydrairc on EFNet"] 10:33 -!- oslo [n=oslo@alf94-5-82-225-102-119.fbx.proxad.net] has joined #ipodlinux 10:33 -!- oslo [n=oslo@alf94-5-82-225-102-119.fbx.proxad.net] has quit [Read error: 104 (Connection reset by peer)] 10:46 -!- screwt8 [i=screwt8@gateway/tor/x-42a3b7348c273295] has quit [Read error: 104 (Connection reset by peer)] 10:54 -!- weezerle_moep [n=weezerle@dslb-088-072-030-169.pools.arcor-ip.net] has quit ["...und tschüss!"] 11:07 -!- andy_js__ is now known as andy_js 11:16 -!- zacaj [n=chatzill@209.23.29.70] has quit ["ChatZilla 0.9.79 [Firefox 2.0.0.9/2007102514]"] 11:31 -!- andy_js [n=andy@AAmiens-152-1-81-199.w90-34.abo.wanadoo.fr] has quit ["Ex-Chat"] 11:53 -!- amiconn [n=jens@rockbox/developer/amiconn] has joined #ipodlinux 11:58 -!- amiconn [n=jens@rockbox/developer/amiconn] has quit [Nick collision from services.] 11:58 -!- amiconn [n=jens@rockbox/developer/amiconn] has joined #ipodlinux 11:59 -!- ionvas is now known as ionvas__ 12:17 -!- Aicart [n=aideb@123.Red-83-58-43.dynamicIP.rima-tde.net] has joined #ipodlinux 12:34 -!- andy_js [n=andy@AAmiens-152-1-81-199.w90-34.abo.wanadoo.fr] has joined #ipodlinux 12:35 -!- davina_ [n=davina@cpc1-sout6-0-0-cust616.sotn.cable.ntl.com] has joined #ipodlinux 12:40 -!- DerPapst [n=DerPapst@p5B23EBFC.dip.t-dialin.net] has joined #ipodlinux 12:40 -!- kick52 [n=kick52-s@91.108.220.53] has joined #ipodlinux 12:50 -!- davina [n=davina@cpc1-sout6-0-0-cust616.sotn.cable.ntl.com] has quit [Read error: 110 (Connection timed out)] 13:03 -!- RedDak [n=dak@host65-81-dynamic.18-79-r.retail.telecomitalia.it] has quit [Remote closed the connection] 13:11 -!- screwt8 [i=screwt8@gateway/tor/x-212630c3920650eb] has joined #ipodlinux 13:46 -!- RedDak [n=dak@host65-81-dynamic.18-79-r.retail.telecomitalia.it] has joined #ipodlinux 13:46 -!- Gimp_ [n=malcolm@growl/gimp] has quit [Read error: 110 (Connection timed out)] 14:31 -!- fxb__ is now known as fxb 14:38 -!- oslo [n=oslo@alf94-5-82-225-102-119.fbx.proxad.net] has joined #ipodlinux 14:38 -!- oslo [n=oslo@alf94-5-82-225-102-119.fbx.proxad.net] has quit [Client Quit] 14:44 -!- lejatornbis [n=lejatorn@smgl.fr.eu.org] has joined #ipodlinux 14:44 < lejatornbis> hi there, 14:45 < lejatornbis> I've just been offered an ipod nano 3rd gen, as far I can tell from your doc, those are totally unsupported, right? Or is it worth I still try to install ipodlinux on it? 14:46 < rvvs89> No chance 14:46 < lejatornbis> :( 14:47 < lejatornbis> so, do you know of any other way i could play ogg on it then? 14:48 < rvvs89> There's no way to play OGG 14:48 -!- monchevique [n=monchevi@201.163.76.110] has joined #ipodlinux 14:48 < rvvs89> There are no software modifications you can do to a nano 3G 14:49 < monchevique> an ipodlinux in spanish 14:49 < monchevique> ? 14:49 < lejatornbis> k, this thingie is worthless to me then, probably gonna give it to my lil' sis heh. 14:49 < lejatornbis> rvvs89: thx for the answers. 14:49 < rvvs89> No probs :) 14:49 < monchevique> there aren't any room for ipodlinux in SPANISH? 14:50 < courtc> monchevique: Sorry, there are no official translations avalable. 14:50 < monchevique> :( 14:50 < rvvs89> You're welcome to make a translation, of course 14:50 < monchevique> who speask english and spanish 14:50 < monchevique> who helps us to translate 14:51 < monchevique> is welcome 14:51 < courtc> http://ipodlinux.org/Internationalization 14:51 < monchevique> :) 14:51 < lejatornbis> and kudos for this nice project btw, great to see some open source effort in this field :) 14:52 < monchevique> the link doesn't work anymore 14:52 < monchevique> ¬¬ 14:52 < courtc> What doesn't? 14:53 < monchevique> podzilla2.pot 14:53 < courtc> Works for me. 14:55 < monchevique> I can't install ipodlinux in linux, when should I write this code: # dd if=/dev/sdX of=ipod_boot_sector_backup bs=512 count=1 14:55 < monchevique> when I connect di Ipod 14:55 < monchevique> hook di ipod up 14:57 -!- amiconn [n=jens@rockbox/developer/amiconn] has quit [Nick collision from services.] 14:57 -!- amiconn [n=jens@rockbox/developer/amiconn] has joined #ipodlinux 14:58 < courtc> http://paste.felixbruns.de/raw89 15:07 -!- perror [n=fleury@mazurek.labri.fr] has joined #ipodlinux 15:08 -!- monchevique [n=monchevi@201.163.76.110] has left #ipodlinux [] 15:16 -!- Rprp [n=Rprp@cc763024-b.groni1.gr.home.nl] has quit ["Cant sleep..... Clowns will eat me."] 15:16 -!- Rprp [n=Rprp@cc763024-b.groni1.gr.home.nl] has joined #ipodlinux 15:24 -!- animeloe [n=animeloe@unaffiliated/animeloe] has joined #ipodlinux 15:29 -!- RedDak [n=dak@host65-81-dynamic.18-79-r.retail.telecomitalia.it] has quit [Remote closed the connection] 15:31 -!- Rprp is now known as Rprp` 16:00 < DerPapst> rvvs89: willing to spend some time fixing my bad spelling and ppor grammar? 16:00 < DerPapst> BleuLlama: maybe you too? :P 16:01 * DerPapst just added more stuff http://ipodlinux.org/Manual_Installation 16:02 < rvvs89> I'll have a read through 16:03 < DerPapst> *poor 16:03 < DerPapst> that's a good start :_/ 16:03 < DerPapst> ;) 16:03 < DerPapst> rvvs89: thanks :) 16:04 < DerPapst> rvvs89: and don't worry about the evil orange/red thinky on top of the page :P 16:04 < DerPapst> *thingy 16:04 * DerPapst sighs 16:18 < DerPapst> rvvs89: just added instructions for the kernel 16:19 < rvvs89> Righto, I will get to reading it eventually, I'm just working on some stuff 16:20 < DerPapst> ah ok 16:20 < DerPapst> thanks anyways :) 16:21 < rvvs89> Yeah, in like 20 minutes or so 16:21 < DerPapst> take your time :) 16:21 -!- Bi-noix [n=Binoix@nor75-3-82-226-37-131.fbx.proxad.net] has quit [Read error: 113 (No route to host)] 16:30 -!- kick52_ [n=kick52-i@91.108.249.114] has joined #ipodlinux 16:36 -!- kick52 [n=kick52-s@91.108.220.53] has quit [Read error: 110 (Connection timed out)] 16:36 < rvvs89> DerPapst: At the top it says this guide works on all iPods, regardless of Generation. While I understand the purpose of the statement, I've seen enough noobs to know that some will interpret it to mean "this works on my nano 2G" etc. 16:37 < rvvs89> You may want to change it 16:37 < rvvs89> Or just assume that people reading it are not that clueless 16:40 -!- kick52_ [n=kick52-i@91.108.249.114] has quit [Remote closed the connection] 16:40 -!- kick52 [n=kick52-i@91.108.249.114] has joined #ipodlinux 16:41 < rvvs89> Also, is there even any point in having instructions for Windows there? 16:42 < DerPapst> rvvs89:well not really. just for completeness.. e.g. you can update the bootloader in windows either. 16:42 < DerPapst> rvvs89: about hte "works on all iPods" feel free to change it to make it clearer :-) 16:46 < rvvs89> We should have some templates for that 16:46 * DerPapst nods 16:46 < DerPapst> can you make one? 16:46 < rvvs89> No :( 16:46 < rvvs89> I don't know how heh 16:47 < rvvs89> I'll rtfm 16:47 < DerPapst> well put it on the page and i'll convert it to a template then ;) 16:47 < DerPapst> basicly create an artice Template:MyTemplate 16:48 < DerPapst> and to include it on other pages with {{MyTemplate}} 16:48 < DerPapst> (grammar wtf) 16:49 < rvvs89> Heh, tired? 16:54 < DerPapst> not really.. 16:54 < DerPapst> i just can't type... 16:56 -!- davidc__ [n=davidc__@c-24-8-151-128.hsd1.co.comcast.net] has quit [Read error: 113 (No route to host)] 16:58 * rvvs89 -> bed 16:58 < rvvs89> Ping me tomorrow if I haven't submitted changes by then 16:59 < DerPapst> ok 16:59 < DerPapst> i'll add some stuff now 17:00 < DerPapst> good night :) 17:00 < rvvs89> Ok, night 17:01 < DerPapst> submitted 17:13 < DerPapst> is it "Make sure you know your iPod's Generation before you begin" or "iPods" ? 17:14 -!- andy_js_ [n=andy@AAmiens-152-1-87-202.w90-34.abo.wanadoo.fr] has joined #ipodlinux 17:29 -!- andy_js [n=andy@AAmiens-152-1-81-199.w90-34.abo.wanadoo.fr] has quit [Read error: 110 (Connection timed out)] 17:29 -!- Snake_ is now known as snake 17:43 -!- andy_js_ is now known as andy_js 18:19 -!- DerPapst [n=DerPapst@p5B23EBFC.dip.t-dialin.net] has quit ["So Long And Thanks For All The Fish!"] 18:20 -!- DerPapst [n=DerPapst@p5B23EBFC.dip.t-dialin.net] has joined #ipodlinux 18:20 -!- syamajala [n=syamajal@c-75-68-225-205.hsd1.ma.comcast.net] has quit [] 18:50 -!- syamajala [n=syamajal@c-75-68-225-205.hsd1.vt.comcast.net] has joined #ipodlinux 18:51 -!- syamajala [n=syamajal@c-75-68-225-205.hsd1.vt.comcast.net] has quit [Remote closed the connection] 18:53 -!- Gimp_ [n=malcolm@growl/gimp] has joined #ipodlinux 18:56 -!- amiconn [n=jens@rockbox/developer/amiconn] has quit [Nick collision from services.] 18:56 -!- amiconn [n=jens@rockbox/developer/amiconn] has joined #ipodlinux 18:58 -!- Gimp__ [n=malcolm@S010600c049ed94ef.vs.shawcable.net] has joined #ipodlinux 19:01 -!- Gimp_ [n=malcolm@growl/gimp] has quit [Nick collision from services.] 19:01 -!- Gimp__ is now known as Gimp_ 19:17 -!- kick52 [n=kick52-i@91.108.249.114] has quit [Read error: 110 (Connection timed out)] 19:24 -!- screwt8 [i=screwt8@gateway/tor/x-212630c3920650eb] has quit [Remote closed the connection] 19:29 -!- HellDragon [i=jd@unaffiliated/helldragon] has quit [Nick collision from services.] 19:29 -!- HellDragon [i=jd@unaffiliated/helldragon] has joined #ipodlinux 19:39 -!- lostlogic [n=lostlogi@rockbox/developer/lostlogic] has joined #ipodlinux 19:39 -!- lostlogic [n=lostlogi@rockbox/developer/lostlogic] has left #ipodlinux [] 19:40 -!- Orc [n=Orc@83.149.21.140] has joined #ipodlinux 19:40 < Orc> help me pls, hi 19:40 < Orc> how I can change codepage on IPL 19:41 < Orc> i need cp1251 19:43 -!- syamajala [n=syamajal@c-75-68-225-205.hsd1.vt.comcast.net] has joined #ipodlinux 19:49 < Orc> help me please 19:52 -!- DerPapst [n=DerPapst@p5B23EBFC.dip.t-dialin.net] has quit [Read error: 110 (Connection timed out)] 19:56 -!- amiconn [n=jens@rockbox/developer/amiconn] has quit [Nick collision from services.] 19:56 -!- amiconn [n=jens@rockbox/developer/amiconn] has joined #ipodlinux 19:57 -!- Orc [n=Orc@83.149.21.140] has quit ["Leaving"] 20:01 -!- screwt8 [i=screwt8@gateway/tor/x-d6fda5d2e34d365e] has joined #ipodlinux 20:11 -!- perror [n=fleury@mazurek.labri.fr] has quit ["I'll be back !"] 20:12 -!- fxb is now known as fxb__ 20:15 -!- fxb__ is now known as fxb 20:16 -!- cdm [n=cdm@pool-71-116-92-149.snfcca.dsl-w.verizon.net] has joined #ipodlinux 20:22 -!- kick52 [n=kick52-i@91.108.249.114] has joined #ipodlinux 20:29 -!- Aicart [n=aideb@123.Red-83-58-43.dynamicIP.rima-tde.net] has quit [Remote closed the connection] 20:36 -!- cdm [n=cdm@pool-71-116-92-149.snfcca.dsl-w.verizon.net] has quit [Read error: 104 (Connection reset by peer)] 20:39 -!- davina_ [n=davina@cpc1-sout6-0-0-cust616.sotn.cable.ntl.com] has quit [Read error: 104 (Connection reset by peer)] 20:39 -!- davina [n=davina@cpc1-sout6-0-0-cust616.sotn.cable.ntl.com] has joined #ipodlinux 20:45 -!- cdm [n=cdm@pool-71-116-92-149.snfcca.dsl-w.verizon.net] has joined #ipodlinux 20:54 -!- animeloe [n=animeloe@unaffiliated/animeloe] has quit ["Leaving"] 21:01 -!- RedDak [n=dak@host65-81-dynamic.18-79-r.retail.telecomitalia.it] has joined #ipodlinux 21:13 -!- amiconn [n=jens@rockbox/developer/amiconn] has quit [" bbl"] 21:18 -!- Aicart [n=aideb@123.Red-83-58-43.dynamicIP.rima-tde.net] has joined #ipodlinux 21:21 -!- DerPapst [n=DerPapst@p5B23C66A.dip.t-dialin.net] has joined #ipodlinux 21:38 -!- andy_js [n=andy@AAmiens-152-1-87-202.w90-34.abo.wanadoo.fr] has quit ["Ex-Chat"] 21:41 -!- lejatornbis [n=lejatorn@smgl.fr.eu.org] has quit ["leaving"] 21:44 -!- amiconn [n=jens@rockbox/developer/amiconn] has joined #ipodlinux 21:54 -!- ejb [n=zephyr@242-150.suscom-maine.net] has joined #ipodlinux 22:27 -!- RedDak [n=dak@host65-81-dynamic.18-79-r.retail.telecomitalia.it] has quit [Remote closed the connection] 22:48 < BleuLlama> DerPapst: 22:49 < BleuLlama> DerPapst: http://ipodlinux.org/forums/viewtopic.php?t=28615 "Delete a LOT of other *modules*" 22:49 < BleuLlama> i don't want to edit your post 22:58 -!- matteo [n=matteo@openwrt/developer/matteo] has joined #iPodLinux 22:58 < matteo> hi all 22:59 < DerPapst> BleuLlama: haha thanks 23:00 < DerPapst> BleuLlama: do you know if is it "Make sure you know your iPod's Generation before you begin" or "iPods"? I'm not quiet sure... 23:01 -!- davina [n=davina@cpc1-sout6-0-0-cust616.sotn.cable.ntl.com] has quit [Remote closed the connection] 23:09 -!- Aicart [n=aideb@123.Red-83-58-43.dynamicIP.rima-tde.net] has quit [Remote closed the connection] 23:10 -!- kick52 [n=kick52-i@91.108.249.114] has quit [Read error: 110 (Connection timed out)] 23:11 < BleuLlama> iPod's. it's posessive 23:11 < BleuLlama> or 23:11 < BleuLlama> Make sure you know the generation of your iPod before you begin 23:11 < BleuLlama> ;) 23:18 -!- Paltsu [n=hautamak@dsl-jklgw3-fe13df00-222.dhcp.inet.fi] has quit [Read error: 110 (Connection timed out)] 23:21 < DerPapst> aha.. thanks 23:21 < DerPapst> :) 23:26 < BleuLlama> Why did WnN edit that, even though it says not to in a HUGE F'ING BANNER? 23:28 < DerPapst> i allowed it fix typos.. and he did 23:28 < BleuLlama> ah.ok 23:28 * DerPapst grammar == bad 23:29 -!- HellDragon [i=jd@unaffiliated/helldragon] has quit [Read error: 104 (Connection reset by peer)] 23:29 < DerPapst> fixed all similar "iPod's" 23:29 -!- HellDragon [i=jd@unaffiliated/helldragon] has joined #ipodlinux 23:31 < BleuLlama> DerPapst: might want to have a "how to update ipodlinux components" as well 23:31 < BleuLlama> ie; putting a new loader.bin, adding modules, etc. 23:31 < DerPapst> did that afaik :P 23:31 < DerPapst> the "Updating or first time installation" headline 23:31 < BleuLlama> nevermind 23:33 < DerPapst> but the pz2 instructions need to be better.. i.e. more detailed 23:33 < BleuLlama> looks good 23:33 < DerPapst> thanks :D 23:38 * matteo is ready to fight against his iPod 23:39 < matteo> BleuLlama: what about providing a tar archive 23:39 < DerPapst> for? 23:39 < matteo> ipodfs+kernel+podzilla+modules 23:39 < matteo> ready to unpack in the iPod drive 23:39 < DerPapst> maybe try http://ipodlinux.org/Manual_Installation 23:40 < matteo> yes yes 23:40 < matteo> is what I did 23:40 < DerPapst> no 23:40 < matteo> but ipodfs kernel and podzilla 23:40 < DerPapst> you can't 23:40 < DerPapst> it's all new and shiny 23:40 < matteo> ah 23:41 < matteo> i need to solve the loader2 issue first 23:41 < BleuLlama> is it really that hard to download 3 files ready to unpack on the iPod, rather than one? 23:42 < DerPapst> matteo: dunno if it's a problem with your hfs+ partition. 23:42 < matteo> i formatted it from my brother macbook 23:42 < DerPapst> maybe try to convert it into a winpod? 23:42 < matteo> mac 10.4 23:43 < matteo> DerPapst: tiger format is my last resort, before winpod 23:43 < DerPapst> ok 23:43 < DerPapst> then follow the macpod instructions 23:43 < BleuLlama> i have two MacPods here that use the latest loader2, and podzilla, userland, etc. they work great. 23:43 < DerPapst> but use your brothers macbook to install iPL 23:43 < DerPapst> in case the linux driver for hfs+ is broken 23:44 < matteo> mm 23:44 < matteo> now ipodpatcher doesn't works 23:44 < matteo> sudo ./ipodpatcher -ab loader.bin /dev/sdc 23:44 < matteo> seems correct 23:44 < BleuLlama> sounds like you have problems with your system in general then 23:45 < matteo> dmesg |fgrep [mac] 23:45 < matteo> sdc: [mac] sdc1 sdc2 sdc3 23:45 < DerPapst> matteo: ipodpatcher can detect the ipod its self 23:45 < DerPapst> you can skip the /dev/sdc argument 23:45 < matteo> [INFO] Ipod found - Video (aka 5th Generation) ("macpod") - /dev/sdc 23:45 < matteo> ah, ok 23:46 < matteo> worked now 23:46 < matteo> [INFO] Bootloader loader.bin written to device. 23:46 < DerPapst> see :) 23:46 < BleuLlama> what does the Manual_Installation page tell you to do, matteo? 23:47 < matteo> Repartitioning the Hard Drive (WinPods only) 23:47 < matteo> so i'll go with no partition 23:47 < matteo> Nano, Video or Big Linux Partition 23:47 < BleuLlama> please, do not post line by line from the wiki 23:47 < BleuLlama> we all know what's there. *we've* read it 23:47 < matteo> well, it seems I just have to copy kernel and rootfs 23:48 < DerPapst> yes... you don't have to partition anything if you have a macpod 23:48 < DerPapst> but use OSX to install iPL 23:48 < DerPapst> just to make sure 23:48 < matteo> to install iPL or to copy ipodlinux on the iPod? 23:48 < matteo> or both? 23:49 < DerPapst> iPL == iPodLinux 23:49 < matteo> ah, ok 23:49 < DerPapst> so yes. both :P 23:52 < matteo> damn it doesn't work 23:52 < matteo> :( 23:52 < matteo> i'll try from mac 23:52 < matteo> i can't use that pc now, it's busy 23:52 < DerPapst> as i said 23:53 < matteo> let's read about the winpod way 23:54 < matteo> DerPapst: does AppleOS or the loader need some geometry in particular? 23:54 < DerPapst> you mean the partitions? 23:54 < matteo> mine has 512b sects 23:54 < matteo> yes 23:54 < DerPapst> just leave the firmare partition alone 23:54 < DerPapst> the rest is up to you 23:54 < matteo> ok 23:55 < DerPapst> and the fat32 has to be the 2nd one to keep the apple firmware happy 23:55 * BleuLlama thought installation on a macpod was really easy. ipodpatcher, unzip userland 23:55 < matteo> BleuLlama: sure it is, but it doesn't works 23:55 < matteo> for me 23:56 < matteo> started wmware, restoring the iPod with iTunes 23:57 < matteo> linux should be faster on ext3 than hfs+ 23:57 < matteo> *should* 23:58 < matteo> restored ok, it asks me the language. now i'll repartition 23:59 < matteo> winpods has only 2 partitions right? --- Log closed Mon Nov 19 00:00:00 2007