You can subscribe to this list here.
2003 |
Jan
|
Feb
(9) |
Mar
(21) |
Apr
(12) |
May
(11) |
Jun
(6) |
Jul
(3) |
Aug
|
Sep
(10) |
Oct
(20) |
Nov
(32) |
Dec
(41) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(48) |
Feb
(27) |
Mar
(120) |
Apr
(69) |
May
(15) |
Jun
(1) |
Jul
(6) |
Aug
(1) |
Sep
(1) |
Oct
(6) |
Nov
(2) |
Dec
(4) |
2005 |
Jan
|
Feb
(10) |
Mar
(1) |
Apr
(1) |
May
|
Jun
(3) |
Jul
|
Aug
(2) |
Sep
(2) |
Oct
|
Nov
(1) |
Dec
(1) |
2006 |
Jan
(3) |
Feb
(4) |
Mar
(9) |
Apr
(2) |
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
(2) |
Dec
(2) |
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(5) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Jens T. <jl...@sh...> - 2004-04-10 23:04:53
|
On Wed, Apr 07, 2004 at 11:05:02PM +0200, Jens Taprogge wrote: > I will try to give the iTunesDB a shot tomorrow night. So if it is not > to complicated perhaps we have s/th by the day after tomorrow. Well I guess better late than never... I have finally managed to take a closer look at the problem. I ahve decided to implement a library from scratch. So far it can read most of the information on tracks (as opposed to playlists). Writing is not yet supported. But the library is designed in a way that makes it possible to update single entries without rewriting all the whole file. I think it might also be a bit faster than the gtkpod implementation. But I have not measured that. However the test program takes about 127 milliseconds to read a 1779 songs iTunesDB on a 2.4 GHz Pentium 4M (output piped to /dev/null). So far the library is only 6480 bytes large (stripped). So far the lib does not handle converison of the iTunesDB strings (UTF-16). And I am not sure it should. Basically I am undecided between not handling conversion (and leaving that part to the app) or converting everything to UTF-8. The latter has some performance and/or memory usage advantages. What does everyone else think? Also please comment on the api. It is not documented to well (a bit of documentation is in itunesdb.h) but I think it should become pretty clear by looking at the test program. You can find the tarball at http://www-users.rwth-aachen.de/jens.taprogge/files/libitunesdb_0.1.tar.gz Best Regards Jens PS: Btw. it should be really easy to change the test program to output a shellscript to create a link-farm. -- Jens Taprogge |
From: <av...@ma...> - 2004-04-10 20:35:39
|
I'm having trouble building microwindows. I follow all the steps listed here: http://ipodlinux.sourceforge.net/forums/viewtopic.php?t=13 I copy the ipod config file over and then try to make. However I get the following error: Generating keyctrl.c from bitmap file ... Error: bits per pixel must be 1, 4, 8 or 24 Conversion failed: keyctrl.bmp make[2]: *** [keyctrl.c] Error 1 make[1]: *** [subdir-nxkbd] Error 2 Any ideas on how to fix this? |
From: Terje W. <wie...@sa...> - 2004-04-10 13:22:07
|
I don't know how things are done at the moment, but as far as I can=20 notice, mp3 files are not cached to memory when played by mp3example=20 (correct me if I'm wrong). Anyway, I thought that other programs as well=20 could benefit from a disk cache, and I thought of the following scheme: - Create a ramdisk at the maximum size we can spare (is 16MB ok?) - Write a new fopen() function - This function will check if there is enough space in the ramdisk for th= e=20 file If there is, it is copied there, and a file descriptor is returned fo= r=20 the new file. If not, a file descriptor is simply returned for the original file. - Write a new fclose() that, if the file is on the ramdisk, deletes the=20 file Maybe this is totally useless, and that the kernel already has a much=20 better way of handling disk cache, but I do think this could help with th= e=20 access time for files, and used with the hdparm fix from Jonathan it coul= d=20 also help battery time. Just an idea =3D) Terje |
From: Mathieu <zi...@xw...> - 2004-04-09 18:01:12
|
Yeah ! Great work :) ! Now you or we can add a symbolic link function into your program like Bernard described.. or we can integrate it into podzilla... it's a choice ! Mathieu > ----- Original Message ----- > From: "Terje Wiesener" <wie...@sa...> > To: <ipo...@li...> > Sent: Friday, April 09, 2004 7:45 PM > Subject: [Ipodlinux-devel] Parsing the itunes DB > > > Hi all > > I've managed to port some of the itunesdb functions from the gtkpod > project. > > It runs under ipodlinux, and parsing my database (around 1600 songs) takes > ~30 sec on the iPod. > > So far, it doesn't do anything fancy, other than print the info about each > track, but I suspect it should be quite easy to integrate with for > instance podzilla. > > The source can be downloaded from > http://orz.dyndns.org/stash/parsedb.tar.gz (When looking at the code, > please remember I haven't written a line C in about 3 years...) > > Happy easter =) > > Terje > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=ick > _______________________________________________ > iPodlinux-devel mailing list > iPo...@li... > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > > |
From: Terje W. <wie...@sa...> - 2004-04-09 17:45:23
|
Hi all I've managed to port some of the itunesdb functions from the gtkpod=20 project. It runs under ipodlinux, and parsing my database (around 1600 songs) take= s=20 ~30 sec on the iPod. So far, it doesn't do anything fancy, other than print the info about eac= h=20 track, but I suspect it should be quite easy to integrate with for=20 instance podzilla. The source can be downloaded from=20 http://orz.dyndns.org/stash/parsedb.tar.gz (When looking at the code,=20 please remember I haven't written a line C in about 3 years...) Happy easter =3D) Terje |
From: Ronja W. <ro...@wi...> - 2004-04-09 16:08:28
|
Hi, i was just installing the 2.4.24 release. i noticed that after installing it regarding the directions in the readme files that came with the 2.4.24 binary release, my apple firmware refused to play auio files again. (i had that problem on my first install with 2.4.20rc2 too). i played around with it, and now achieved to get it running with linux as default boot. am i doing something wrong? or is this somehow a known bug? it still seems to persist even with the latest files. Ronja > I've downloaded and built the latest bootloader, and I'm having > troubles with it: > The bootloader works, abd lets me boot into the Apple software, or the > Linux kernel. The linux kernel works fine. The apple software 'seems' > to wokr, I can navigate the song database, etc... But when I play a > song, it reboots the device. > > If I don't have the bootloader, and I only use the apple software, > everything plays fine. |
From: Bernard L. <le...@bo...> - 2004-04-07 23:21:11
|
On Wed, 2004-04-07 at 06:04, Daniel Hazelbaker wrote: > Greetings. Just installed the latest builds of the kernel and the fs. It > works great! It plays my 128kbps files at about 99.2% real time (every once > in a while it "blips", but not very often). The 160+bps files not too well. > (It seems to kernel panic on one of my files, not sure why. It is a > 256kbps, but I have others at that rate that work fine.) A suggestion I > have though for the next release, find a way to slow down the scroll wheel. > It is REALLY touchy! :) Maybe have the kernel count consecutive scrolls in > each direction and only pass along the code after the first five, then 4, 3, > 2, 1, etc. so the first few go slowly and then it speeds up as you continue. Yup, it sure is sensitive ;) There is some code in CVS that makes it less so but I was rushed when I was doing the release and it was too slow on the PC so I just dropped for the release. It basically needs some tuning. > Anyway, I would like to see if I can hack the apple ethernet over firewire > to work with the iPod. The source is available for download. Bernard, > could you drop me the information for what you had to do to the linux > ethoverfirewire to get it to work, and I will see if I can use that as a > starting point. The iPod ethernet module is using an old version that is not compatible with anything but itself. The reason why we use that one is because it doesn't require ieee1394 isochronous support which the iPod doesn't have (hardware restriction). So basically this code won't ever talk to anything else. My current idea is to try a recent eth1394 module (which is compatible with the MacOS and Windows versions) and then make the minimum mods to that to get it to work on the iPod. If any mods are required then it should be possible to do the same on the MacOS driver (Windows users are stuck with binary drivers though so no luck there). We might get lucky though and we can just remove the iso bits from the iPod and use some other hacks to make the ARP work... The problem with this is that it needs 2.6 to work that means anyone running 2.4 will then be stuck without ethernet (unless both drivers are somehow included). The other problem is that I dont run 2.6 on my development machine.... cheers, bern. PS I'm taking Easter vactions starting today so I'll be off the air for the next week... |
From: Bernard L. <le...@bo...> - 2004-04-07 23:02:34
|
Hi all, Sorry I haven't been following this thread too closely but hopefully you guys make some progress on this ;) I dug up some old code I was working on for reading the itunes library. The simple example just reads the iTunes db (in current directory) and prints out some stuff like file name and track name. Maybe this would be easy to hack together to create a simple sim-linker... Anyhow the code is at http://ipodlinux.sourceforge.net/download/beta/it-src.tgz. Extract that, run ./configure && make and it should create a binary 'src/it'. Copy/link your iTunesDB to the current directory and run that and it should print out stuff. It uses the iTunesDB2 library from qahog... cheers, bern. On Wed, 2004-04-07 at 23:05, Jens Taprogge wrote: > Hi Jonathan, > > On Wed, Apr 07, 2004 at 09:22:13AM +0200, Jonathan C. Ross wrote: > > Hi Jens, > > > > last time I looked, the gtkpod iTunesDB code was really slow... on my > > dual 2.4 GHz Xeon that is. It took about five minutes to parse my 4500 > > song db (perhaps the GUI code was slowing things down a bit too). I > > shiver at the thought of running it on my iPod. If we ever wanted to > > add playcount updating to podzilla, it would not be too wise either, as > > gtkpod actually re-writes the entire database upon export. I think the > > way to go is actually a proper db driver implementation - updating > > records in place (or, at least, with a cache mechanism for updates, so > > as to minimise disk access). > The slowless is almost certainly caused by the gui. Depending on your > settings it is adding the entries in the gui as soon as it is reading > them (IIRC at least). > > Still I fully agree on the in place editing. > > > I have started work on a playqueue in podzilla - for now I'm going to > > use my own simple d.b. files for browsing songs (to be generated with > > libid3tag on the host). I am working on the principle of caching up to > > 16 MB of the next songs in the playqueue, and actually playing them > > with libmad (rather than forking a sub-process). (Intel's code is my > > second candidate, but its not GPLed). > > > > When I've gotten that working, I would port the code to the binary > > iTunesDB format, and add play-count updating. > > For the time-being, I think Bernards idea of a link farm is the > > quickest way we'll get user-friendly song browsing in podzilla :-). > > I will try to give the iTunesDB a shot tomorrow night. So if it is not > to complicated perhaps we have s/th by the day after tomorrow. > > Cheers > Jens |
From: Jens T. <jen...@po...> - 2004-04-07 21:05:20
|
Hi Jonathan, On Wed, Apr 07, 2004 at 09:22:13AM +0200, Jonathan C. Ross wrote: > Hi Jens, > > last time I looked, the gtkpod iTunesDB code was really slow... on my > dual 2.4 GHz Xeon that is. It took about five minutes to parse my 4500 > song db (perhaps the GUI code was slowing things down a bit too). I > shiver at the thought of running it on my iPod. If we ever wanted to > add playcount updating to podzilla, it would not be too wise either, as > gtkpod actually re-writes the entire database upon export. I think the > way to go is actually a proper db driver implementation - updating > records in place (or, at least, with a cache mechanism for updates, so > as to minimise disk access). The slowless is almost certainly caused by the gui. Depending on your settings it is adding the entries in the gui as soon as it is reading them (IIRC at least). Still I fully agree on the in place editing. > I have started work on a playqueue in podzilla - for now I'm going to > use my own simple d.b. files for browsing songs (to be generated with > libid3tag on the host). I am working on the principle of caching up to > 16 MB of the next songs in the playqueue, and actually playing them > with libmad (rather than forking a sub-process). (Intel's code is my > second candidate, but its not GPLed). > > When I've gotten that working, I would port the code to the binary > iTunesDB format, and add play-count updating. > For the time-being, I think Bernards idea of a link farm is the > quickest way we'll get user-friendly song browsing in podzilla :-). I will try to give the iTunesDB a shot tomorrow night. So if it is not to complicated perhaps we have s/th by the day after tomorrow. Cheers Jens -- Jens Taprogge |
From: Jonathan C. R. <jon...@ba...> - 2004-04-07 07:22:23
|
On Apr 6, 2004, at 3:04 PM, Jens Taprogge wrote: > On Tue, Apr 06, 2004 at 02:11:16PM +0200, Terje Wiesener wrote: >> Currently, I don't think there is. >> >> I am working on porting a library for reading the itunesDB to the >> ipod, >> but it's going slowly... Don't know if anyone else is doing the same? > > I am planing on rewriting the gtkpod itunesDB code so that it does not > depend on glib as soon as I find the time. Which might be in around two > weeks. > > But you are od course welcom to beat me to it. > The gtkpod code should be a very good basis. It is fairly well tested > and supports most features (rating, playcount, volume adj. jsut to name > a few) and under active development. > Hi Jens, last time I looked, the gtkpod iTunesDB code was really slow... on my dual 2.4 GHz Xeon that is. It took about five minutes to parse my 4500 song db (perhaps the GUI code was slowing things down a bit too). I shiver at the thought of running it on my iPod. If we ever wanted to add playcount updating to podzilla, it would not be too wise either, as gtkpod actually re-writes the entire database upon export. I think the way to go is actually a proper db driver implementation - updating records in place (or, at least, with a cache mechanism for updates, so as to minimise disk access). I have started work on a playqueue in podzilla - for now I'm going to use my own simple d.b. files for browsing songs (to be generated with libid3tag on the host). I am working on the principle of caching up to 16 MB of the next songs in the playqueue, and actually playing them with libmad (rather than forking a sub-process). (Intel's code is my second candidate, but its not GPLed). When I've gotten that working, I would port the code to the binary iTunesDB format, and add play-count updating. For the time-being, I think Bernards idea of a link farm is the quickest way we'll get user-friendly song browsing in podzilla :-). Cheers, Jonathan. |
From: Daniel H. <da...@hi...> - 2004-04-07 04:04:04
|
Greetings. Just installed the latest builds of the kernel and the fs. It works great! It plays my 128kbps files at about 99.2% real time (every once in a while it "blips", but not very often). The 160+bps files not too well. (It seems to kernel panic on one of my files, not sure why. It is a 256kbps, but I have others at that rate that work fine.) A suggestion I have though for the next release, find a way to slow down the scroll wheel. It is REALLY touchy! :) Maybe have the kernel count consecutive scrolls in each direction and only pass along the code after the first five, then 4, 3, 2, 1, etc. so the first few go slowly and then it speeds up as you continue. Anyway, I would like to see if I can hack the apple ethernet over firewire to work with the iPod. The source is available for download. Bernard, could you drop me the information for what you had to do to the linux ethoverfirewire to get it to work, and I will see if I can use that as a starting point. Daniel |
From: Terje W. <wie...@sa...> - 2004-04-07 02:30:37
|
> I am planing on rewriting the gtkpod itunesDB code so that it does not > depend on glib as soon as I find the time. Which might be in around two > weeks. That is the code I'm working with also. I'm trying to make a wrapper for=20 all the glib types and functions needed, so the code itself doesn't have=20 to be rewritten so much. However, I'm not sure what to do with those pesk= y=20 UTF strings... Work has been very slow though, especially after some unfortunate disk=20 crashes courtesy of Partition Magic... Things are finally up and running=20 again now, so I'll see if I get time to look at it one of these days. cheers Terje |
From: <ic...@co...> - 2004-04-06 22:12:26
|
Well, I could take a stab at this, telling it which directories to look for shouldn't be a problem, its the "decryption" that gets me. Does anyone know exactly how it works, what the import will have to accomplish, and where to get started? --Thanks > Send iPodlinux-devel mailing list submissions to > ipo...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > or, via email, send a message with subject or body 'help' to > ipo...@li... > > You can reach the person managing the list at > ipo...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of iPodlinux-devel digest..." > > > Today's Topics: > > 1. Re: Mounting hda2/playing from vfat harddrive (Bernard Leach) > > --__--__-- > > Message: 1 > Subject: Re: [Ipodlinux-devel] Mounting hda2/playing from vfat harddrive > From: Bernard Leach <le...@bo...> > To: ic...@co... > Cc: ipo...@li... > Date: Sun, 04 Apr 2004 11:47:49 +0200 > > > You mean on a win iPod right? If so sure, just add a mount command to > your /etc/rc: > > mount -t vfat /dev/hda2 /mnt > > Then you will see the normal iPod music in /mnt/iPod_Control/Music/. > > Its a bit of pain to navigate, perhaps a simple hack would be to create > a tool that will symlink from the crazy f01.. directory structure back > to a /muic/artist/albumn/... type structure. I thought something like > this existed but I haven't seen anything yet. > > cheers, > bern. > > On Sun, 2004-04-04 at 02:33, ic...@co... wrote: > > Great Job guys!! everything plays and works fine...i have updated to the > newest kernel and was wondering if there was a way to play from the sda2 (hda2) > instead of having to repartition the iPod to get more space to copy the music > from sda2 into a folder in sda3? --Thanks > > > Send iPodlinux-devel mailing list submissions to > > > ipo...@li... > > > > > > To subscribe or unsubscribe via the World Wide Web, visit > > > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > > or, via email, send a message with subject or body 'help' to > > > ipo...@li... > > > > > > You can reach the person managing the list at > > > ipo...@li... > > > > > > When replying, please edit your Subject line so it is more specific > > > than "Re: Contents of iPodlinux-devel digest..." > > > > > > > > > Today's Topics: > > > > > > 1. Re: Powersaving with hdparm (Bernard Leach) > > > 2. Re: Powersaving with hdparm (Robert D) > > > 3. Re: Powersaving with hdparm (JonathanC.Ross) > > > > > > -- __--__-- > > > > > > Message: 1 > > > Date: Thu, 1 Apr 2004 07:27:16 -0000 > > > To: "Jonathan C. Ross" <jon...@ba...>, > > > "ipo...@li..." > <ipo...@li...> > > > Subject: Re: [Ipodlinux-devel] Powersaving with hdparm > > > From: "Bernard Leach" <le...@bo...> > > > Reply-To: le...@bo... > > > > > > > > > Great job, I'll see about getting a binary up on in the beta area for > > > download. I'd be very interested to hear what sort of results you see from > > > that. > > > > > > So whats next? ;) > > > > > > cheers, > > > bern. > > > > > > "Jonathan C. Ross" <jon...@ba...> said: > > > > > > > Hi all, > > > > > > > > I have just 'ported' hdparm to my iPod, and added the following line to > > > > my /etc/rc: > > > > > > > > hdparm -S 1 /dev/ide/host0/bus0/target0/lun0/disc > > > > > > > > now my harddisk spins down after 5 seconds of inactivity, and spins up > > > > again quite happily when needed. I will do some tests over the next > > > > couple of days to see how long the battery lasts in various > > > > circumstances - perhaps 10 seconds spindown will prove better. > > > > > > > > The patch is quite simple, just affecting the Makefile: > > > > > > > > $ diff hdparm-5.5/Makefile.orig hdparm-5.5/Makefile > > > > 13c13 > > > > < CC = gcc > > > > --- > > > > > CC = arm-elf-gcc > > > > 17c17 > > > > < LDFLAGS = -s > > > > --- > > > > > LDFLAGS = -s -elf2flt > > > > > > > > Cheers, > > > > Jonathan. > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This SF.Net email is sponsored by: IBM Linux Tutorials > > > > Free Linux tutorial presented by Daniel Robbins, President and CEO of > > > > GenToo technologies. Learn everything from fundamentals to system > > > > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > > > > _______________________________________________ > > > > iPodlinux-devel mailing list > > > > iPo...@li... > > > > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > > > > > > > > > > > > > > > -- > > > > > > > > > > > > > > > > > > -- __--__-- > > > > > > Message: 2 > > > From: "Robert D" <ro...@op...> > > > To: <ipo...@li...> > > > Subject: Re: [Ipodlinux-devel] Powersaving with hdparm > > > Date: Thu, 1 Apr 2004 18:24:13 +1000 > > > > > > Wow, well done, thats just what was needed :) > > > > > > Robert D > > > > > > ----- Original Message ----- > > > From: "Jonathan C. Ross" <jon...@ba...> > > > To: <ipo...@li...> > > > Sent: Thursday, April 01, 2004 8:05 AM > > > > > Subject: [Ipodlinux-devel] Powersaving with hdparm > > > > > > > > > > Hi all, > > > > > > > > I have just 'ported' hdparm to my iPod, and added the following line to > > > > my /etc/rc: > > > > > > > > hdparm -S 1 /dev/ide/host0/bus0/target0/lun0/disc > > > > > > > > now my harddisk spins down after 5 seconds of inactivity, and spins up > > > > again quite happily when needed. I will do some tests over the next > > > > couple of days to see how long the battery lasts in various > > > > circumstances - perhaps 10 seconds spindown will prove better. > > > > > > > > The patch is quite simple, just affecting the Makefile: > > > > > > > > $ diff hdparm-5.5/Makefile.orig hdparm-5.5/Makefile > > > > 13c13 > > > > < CC = gcc > > > > --- > > > > > CC = arm-elf-gcc > > > > 17c17 > > > > < LDFLAGS = -s > > > > --- > > > > > LDFLAGS = -s -elf2flt > > > > > > > > Cheers, > > > > Jonathan. > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This SF.Net email is sponsored by: IBM Linux Tutorials > > > > Free Linux tutorial presented by Daniel Robbins, President and CEO of > > > > > > GenToo technologies. Learn everything from fundamentals to system > > > > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > > > > _______________________________________________ > > > > iPodlinux-devel mailing list > > > > iPo...@li... > > > > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > > > > > > > > -- __--__-- > > > > > > Message: 3 > > > Cc: "ipo...@li..." > > > <ipo...@li...> > > > From: Jonathan C. Ross <jon...@ba...> > > > Subject: Re: [Ipodlinux-devel] Powersaving with hdparm > > > Date: Thu, 1 Apr 2004 16:37:47 +0200 > > > To: le...@bo... > > > > > > On Apr 1, 2004, at 9:27 AM, Bernard Leach wrote: > > > > > > > > Great job, I'll see about getting a binary up on in the beta area for > > > > download. I'd be very interested to hear what sort of results you see > > > > from that. > > > > > > Last night I left the unit on - I wasn't very surprised to find that > > > the battery had drained fully this morning. Today, I managed 4 hours > > > on a more-or-less fully charged battery, simulating low to semi-normal > > > usage - listening to a song once in a while, playing around with > > > podzilla, letting the unit 'sleep' for a bit, etc., waking it up every > > > ten minutes or so. I'll do another drain test tonight (last night I > > > didn't have a fully charged unit. > > > > > > > So whats next? ;) > > > > > > I guess twice as much battery life, continuous playback of mp3s and > > > some funky userland tools? (-: > > > > > > > cheers, > > > > bern. > > > > > > > > > > Ditto, > > > Jonathan. > > > > > > > > > Ir. Jonathan C. Ross > > > Senior Developer > > > IMC Holding B.V. > > > Tel: +31 20 7988462 > > > > > > For general information, please visit our web site: http://www.imc.nl. > > > This e-mail and its attachments are only intended for the individual(s) > > > or entity(entities) named above to whom they are addressed and may > > > contain personal and/or confidential information. Please notify us > > > immediately if you are not the intended recipient. Any dissemination, > > > duplication, publication to third parties or other use of the contents > > > > > of this e-mail or its attachments is forbidden. Although this > > > information has been compiled with great care, neither IMC > > > International Marketmakers Combination B.V. nor its subsidiaries shall > > > accept any responsibility for any errors, omissions or other > > > inaccuracies in this information or for the consequences thereof, nor > > > shall it be bound in any way by the contents of this e-mail or its > > > attachments. In the event of incomplete or incorrect transmission > > > please return the e-mail to the sender. > > > > > > > > > > > > > > > -- __--__-- > > > > > > _______________________________________________ > > > iPodlinux-devel mailing list > > > iPo...@li... > > > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > > > > > > > > End of iPodlinux-devel Digest > > > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by: IBM Linux Tutorials > > Free Linux tutorial presented by Daniel Robbins, President and CEO of > > GenToo technologies. Learn everything from fundamentals to system > > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > > _______________________________________________ > > iPodlinux-devel mailing list > > iPo...@li... > > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > > > > > > --__--__-- > > _______________________________________________ > iPodlinux-devel mailing list > iPo...@li... > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > > End of iPodlinux-devel Digest |
From: Jens T. <jen...@po...> - 2004-04-06 13:04:35
|
On Tue, Apr 06, 2004 at 02:11:16PM +0200, Terje Wiesener wrote: > Currently, I don't think there is. > > I am working on porting a library for reading the itunesDB to the ipod, > but it's going slowly... Don't know if anyone else is doing the same? I am planing on rewriting the gtkpod itunesDB code so that it does not depend on glib as soon as I find the time. Which might be in around two weeks. But you are od course welcom to beat me to it. The gtkpod code should be a very good basis. It is fairly well tested and supports most features (rating, playcount, volume adj. jsut to name a few) and under active development. Jens > > Terje > > On Tue, 06 Apr 2004 11:03:17 +0000, <ic...@co...> wrote: > > >is there a way to import the iTunes database into the file browser > >instead of all the crazy f0* directories? -- Jens Taprogge |
From: Bernard L. <le...@bo...> - 2004-04-06 12:54:59
|
There are also some good(?) libraries already available in C but they are glib based so need quite a few support libraries that we don't currently use on the iPod. A good simple C library would be great! A simple short term fix would be to use one of these libraries on the host to create symbolic links between the /iPod_Control/... files and /music/Artist/Album/Song or something similar. There is also a perl package that can be used to read the .db files which might be well-suited to the symbolic link creation task. Jeffrey Harris <jef...@cl...> said: > There is VB source code for doing this that I wrote for a windows program > called SharePod. > > The website is at http://www25.brinkster.com/carmagt/sharepod/, you can > download the source from there. > > It reads all song information, playlists and their contents and the > On-The-Go playlist ;) > > Shouldnt be much of a mission to convert the useful bits to C... > > Jeff > > ----- Original Message ----- > From: "Terje Wiesener" <wie...@sa...> > To: <ic...@co...>; <ipo...@li...> > Sent: Wednesday, April 07, 2004 12:11 AM > Subject: Re: [Ipodlinux-devel] iTunesDB import > > > Currently, I don't think there is. > > I am working on porting a library for reading the itunesDB to the ipod, > but it's going slowly... Don't know if anyone else is doing the same? > > Terje > > On Tue, 06 Apr 2004 11:03:17 +0000, <ic...@co...> wrote: > > > is there a way to import the iTunes database into the file browser > > instead of all the crazy f0* directories? > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by: IBM Linux Tutorials > > Free Linux tutorial presented by Daniel Robbins, President and CEO of > > GenToo technologies. Learn everything from fundamentals to system > > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > > _______________________________________________ > > iPodlinux-devel mailing list > > iPo...@li... > > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > > > -- > Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/ > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=ick > _______________________________________________ > iPodlinux-devel mailing list > iPo...@li... > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > _______________________________________________ > iPodlinux-devel mailing list > iPo...@li... > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > -- |
From: Jeffrey H. <jef...@cl...> - 2004-04-06 12:38:50
|
There is VB source code for doing this that I wrote for a windows program called SharePod. The website is at http://www25.brinkster.com/carmagt/sharepod/, you can download the source from there. It reads all song information, playlists and their contents and the On-The-Go playlist ;) Shouldnt be much of a mission to convert the useful bits to C... Jeff ----- Original Message ----- From: "Terje Wiesener" <wie...@sa...> To: <ic...@co...>; <ipo...@li...> Sent: Wednesday, April 07, 2004 12:11 AM Subject: Re: [Ipodlinux-devel] iTunesDB import Currently, I don't think there is. I am working on porting a library for reading the itunesDB to the ipod, but it's going slowly... Don't know if anyone else is doing the same? Terje On Tue, 06 Apr 2004 11:03:17 +0000, <ic...@co...> wrote: > is there a way to import the iTunes database into the file browser > instead of all the crazy f0* directories? > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > _______________________________________________ > iPodlinux-devel mailing list > iPo...@li... > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel -- Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/ ------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=ick _______________________________________________ iPodlinux-devel mailing list iPo...@li... https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel |
From: Benjamin H. <be...@ke...> - 2004-04-06 12:06:19
|
On Tue, 2004-04-06 at 21:03, ic...@co... wrote: > is there a way to import the iTunes database into the file browser instead of all the crazy f0* directories? > Not yet afaik. However, the iTunes DB file format has been reverse engineered, so it's possible to implement it. Your contribution is welcome :) Ben. |
From: Terje W. <wie...@sa...> - 2004-04-06 12:06:10
|
Currently, I don't think there is. I am working on porting a library for reading the itunesDB to the ipod,=20 but it's going slowly... Don't know if anyone else is doing the same? Terje On Tue, 06 Apr 2004 11:03:17 +0000, <ic...@co...> wrote: > is there a way to import the iTunes database into the file browser=20 > instead of all the crazy f0* directories? > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id=3D1470&alloc_id=3D3638&op=3Dc= lick > _______________________________________________ > iPodlinux-devel mailing list > iPo...@li... > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel --=20 Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/ |
From: <ic...@co...> - 2004-04-06 11:03:24
|
is there a way to import the iTunes database into the file browser instead of all the crazy f0* directories? |
From: Bernard L. <le...@bo...> - 2004-04-04 09:56:27
|
You mean on a win iPod right? If so sure, just add a mount command to your /etc/rc: mount -t vfat /dev/hda2 /mnt Then you will see the normal iPod music in /mnt/iPod_Control/Music/. Its a bit of pain to navigate, perhaps a simple hack would be to create a tool that will symlink from the crazy f01.. directory structure back to a /muic/artist/albumn/... type structure. I thought something like this existed but I haven't seen anything yet. cheers, bern. On Sun, 2004-04-04 at 02:33, ic...@co... wrote: > Great Job guys!! everything plays and works fine...i have updated to the newest kernel and was wondering if there was a way to play from the sda2 (hda2) instead of having to repartition the iPod to get more space to copy the music from sda2 into a folder in sda3? --Thanks > > Send iPodlinux-devel mailing list submissions to > > ipo...@li... > > > > To subscribe or unsubscribe via the World Wide Web, visit > > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > or, via email, send a message with subject or body 'help' to > > ipo...@li... > > > > You can reach the person managing the list at > > ipo...@li... > > > > When replying, please edit your Subject line so it is more specific > > than "Re: Contents of iPodlinux-devel digest..." > > > > > > Today's Topics: > > > > 1. Re: Powersaving with hdparm (Bernard Leach) > > 2. Re: Powersaving with hdparm (Robert D) > > 3. Re: Powersaving with hdparm (JonathanC.Ross) > > > > --__--__-- > > > > Message: 1 > > Date: Thu, 1 Apr 2004 07:27:16 -0000 > > To: "Jonathan C. Ross" <jon...@ba...>, > > "ipo...@li..." <ipo...@li...> > > Subject: Re: [Ipodlinux-devel] Powersaving with hdparm > > From: "Bernard Leach" <le...@bo...> > > Reply-To: le...@bo... > > > > > > Great job, I'll see about getting a binary up on in the beta area for > > download. I'd be very interested to hear what sort of results you see from > > that. > > > > So whats next? ;) > > > > cheers, > > bern. > > > > "Jonathan C. Ross" <jon...@ba...> said: > > > > > Hi all, > > > > > > I have just 'ported' hdparm to my iPod, and added the following line to > > > my /etc/rc: > > > > > > hdparm -S 1 /dev/ide/host0/bus0/target0/lun0/disc > > > > > > now my harddisk spins down after 5 seconds of inactivity, and spins up > > > again quite happily when needed. I will do some tests over the next > > > couple of days to see how long the battery lasts in various > > > circumstances - perhaps 10 seconds spindown will prove better. > > > > > > The patch is quite simple, just affecting the Makefile: > > > > > > $ diff hdparm-5.5/Makefile.orig hdparm-5.5/Makefile > > > 13c13 > > > < CC = gcc > > > --- > > > > CC = arm-elf-gcc > > > 17c17 > > > < LDFLAGS = -s > > > --- > > > > LDFLAGS = -s -elf2flt > > > > > > Cheers, > > > Jonathan. > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.Net email is sponsored by: IBM Linux Tutorials > > > Free Linux tutorial presented by Daniel Robbins, President and CEO of > > > GenToo technologies. Learn everything from fundamentals to system > > > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > > > _______________________________________________ > > > iPodlinux-devel mailing list > > > iPo...@li... > > > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > > > > > > > > > > -- > > > > > > > > > > > > --__--__-- > > > > Message: 2 > > From: "Robert D" <ro...@op...> > > To: <ipo...@li...> > > Subject: Re: [Ipodlinux-devel] Powersaving with hdparm > > Date: Thu, 1 Apr 2004 18:24:13 +1000 > > > > Wow, well done, thats just what was needed :) > > > > Robert D > > > > ----- Original Message ----- > > From: "Jonathan C. Ross" <jon...@ba...> > > To: <ipo...@li...> > > Sent: Thursday, April 01, 2004 8:05 AM > > > Subject: [Ipodlinux-devel] Powersaving with hdparm > > > > > > > Hi all, > > > > > > I have just 'ported' hdparm to my iPod, and added the following line to > > > my /etc/rc: > > > > > > hdparm -S 1 /dev/ide/host0/bus0/target0/lun0/disc > > > > > > now my harddisk spins down after 5 seconds of inactivity, and spins up > > > again quite happily when needed. I will do some tests over the next > > > couple of days to see how long the battery lasts in various > > > circumstances - perhaps 10 seconds spindown will prove better. > > > > > > The patch is quite simple, just affecting the Makefile: > > > > > > $ diff hdparm-5.5/Makefile.orig hdparm-5.5/Makefile > > > 13c13 > > > < CC = gcc > > > --- > > > > CC = arm-elf-gcc > > > 17c17 > > > < LDFLAGS = -s > > > --- > > > > LDFLAGS = -s -elf2flt > > > > > > Cheers, > > > Jonathan. > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.Net email is sponsored by: IBM Linux Tutorials > > > Free Linux tutorial presented by Daniel Robbins, President and CEO of > > > > GenToo technologies. Learn everything from fundamentals to system > > > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > > > _______________________________________________ > > > iPodlinux-devel mailing list > > > iPo...@li... > > > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > > > > > --__--__-- > > > > Message: 3 > > Cc: "ipo...@li..." > > <ipo...@li...> > > From: Jonathan C. Ross <jon...@ba...> > > Subject: Re: [Ipodlinux-devel] Powersaving with hdparm > > Date: Thu, 1 Apr 2004 16:37:47 +0200 > > To: le...@bo... > > > > On Apr 1, 2004, at 9:27 AM, Bernard Leach wrote: > > > > > > Great job, I'll see about getting a binary up on in the beta area for > > > download. I'd be very interested to hear what sort of results you see > > > from that. > > > > Last night I left the unit on - I wasn't very surprised to find that > > the battery had drained fully this morning. Today, I managed 4 hours > > on a more-or-less fully charged battery, simulating low to semi-normal > > usage - listening to a song once in a while, playing around with > > podzilla, letting the unit 'sleep' for a bit, etc., waking it up every > > ten minutes or so. I'll do another drain test tonight (last night I > > didn't have a fully charged unit. > > > > > So whats next? ;) > > > > I guess twice as much battery life, continuous playback of mp3s and > > some funky userland tools? (-: > > > > > cheers, > > > bern. > > > > > > > Ditto, > > Jonathan. > > > > > > Ir. Jonathan C. Ross > > Senior Developer > > IMC Holding B.V. > > Tel: +31 20 7988462 > > > > For general information, please visit our web site: http://www.imc.nl. > > This e-mail and its attachments are only intended for the individual(s) > > or entity(entities) named above to whom they are addressed and may > > contain personal and/or confidential information. Please notify us > > immediately if you are not the intended recipient. Any dissemination, > > duplication, publication to third parties or other use of the contents > > > of this e-mail or its attachments is forbidden. Although this > > information has been compiled with great care, neither IMC > > International Marketmakers Combination B.V. nor its subsidiaries shall > > accept any responsibility for any errors, omissions or other > > inaccuracies in this information or for the consequences thereof, nor > > shall it be bound in any way by the contents of this e-mail or its > > attachments. In the event of incomplete or incorrect transmission > > please return the e-mail to the sender. > > > > > > > > > > --__--__-- > > > > _______________________________________________ > > iPodlinux-devel mailing list > > iPo...@li... > > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > > > > > End of iPodlinux-devel Digest > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > _______________________________________________ > iPodlinux-devel mailing list > iPo...@li... > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > |
From: <ic...@co...> - 2004-04-04 00:33:42
|
Great Job guys!! everything plays and works fine...i have updated to the newest kernel and was wondering if there was a way to play from the sda2 (hda2) instead of having to repartition the iPod to get more space to copy the music from sda2 into a folder in sda3? --Thanks > Send iPodlinux-devel mailing list submissions to > ipo...@li... > > To subscribe or unsubscribe via the World Wide Web, visit > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > or, via email, send a message with subject or body 'help' to > ipo...@li... > > You can reach the person managing the list at > ipo...@li... > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of iPodlinux-devel digest..." > > > Today's Topics: > > 1. Re: Powersaving with hdparm (Bernard Leach) > 2. Re: Powersaving with hdparm (Robert D) > 3. Re: Powersaving with hdparm (JonathanC.Ross) > > --__--__-- > > Message: 1 > Date: Thu, 1 Apr 2004 07:27:16 -0000 > To: "Jonathan C. Ross" <jon...@ba...>, > "ipo...@li..." <ipo...@li...> > Subject: Re: [Ipodlinux-devel] Powersaving with hdparm > From: "Bernard Leach" <le...@bo...> > Reply-To: le...@bo... > > > Great job, I'll see about getting a binary up on in the beta area for > download. I'd be very interested to hear what sort of results you see from > that. > > So whats next? ;) > > cheers, > bern. > > "Jonathan C. Ross" <jon...@ba...> said: > > > Hi all, > > > > I have just 'ported' hdparm to my iPod, and added the following line to > > my /etc/rc: > > > > hdparm -S 1 /dev/ide/host0/bus0/target0/lun0/disc > > > > now my harddisk spins down after 5 seconds of inactivity, and spins up > > again quite happily when needed. I will do some tests over the next > > couple of days to see how long the battery lasts in various > > circumstances - perhaps 10 seconds spindown will prove better. > > > > The patch is quite simple, just affecting the Makefile: > > > > $ diff hdparm-5.5/Makefile.orig hdparm-5.5/Makefile > > 13c13 > > < CC = gcc > > --- > > > CC = arm-elf-gcc > > 17c17 > > < LDFLAGS = -s > > --- > > > LDFLAGS = -s -elf2flt > > > > Cheers, > > Jonathan. > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by: IBM Linux Tutorials > > Free Linux tutorial presented by Daniel Robbins, President and CEO of > > GenToo technologies. Learn everything from fundamentals to system > > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > > _______________________________________________ > > iPodlinux-devel mailing list > > iPo...@li... > > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > > > > > -- > > > > > > --__--__-- > > Message: 2 > From: "Robert D" <ro...@op...> > To: <ipo...@li...> > Subject: Re: [Ipodlinux-devel] Powersaving with hdparm > Date: Thu, 1 Apr 2004 18:24:13 +1000 > > Wow, well done, thats just what was needed :) > > Robert D > > ----- Original Message ----- > From: "Jonathan C. Ross" <jon...@ba...> > To: <ipo...@li...> > Sent: Thursday, April 01, 2004 8:05 AM > Subject: [Ipodlinux-devel] Powersaving with hdparm > > > > Hi all, > > > > I have just 'ported' hdparm to my iPod, and added the following line to > > my /etc/rc: > > > > hdparm -S 1 /dev/ide/host0/bus0/target0/lun0/disc > > > > now my harddisk spins down after 5 seconds of inactivity, and spins up > > again quite happily when needed. I will do some tests over the next > > couple of days to see how long the battery lasts in various > > circumstances - perhaps 10 seconds spindown will prove better. > > > > The patch is quite simple, just affecting the Makefile: > > > > $ diff hdparm-5.5/Makefile.orig hdparm-5.5/Makefile > > 13c13 > > < CC = gcc > > --- > > > CC = arm-elf-gcc > > 17c17 > > < LDFLAGS = -s > > --- > > > LDFLAGS = -s -elf2flt > > > > Cheers, > > Jonathan. > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by: IBM Linux Tutorials > > Free Linux tutorial presented by Daniel Robbins, President and CEO of > > GenToo technologies. Learn everything from fundamentals to system > > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > > _______________________________________________ > > iPodlinux-devel mailing list > > iPo...@li... > > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > > --__--__-- > > Message: 3 > Cc: "ipo...@li..." > <ipo...@li...> > From: Jonathan C. Ross <jon...@ba...> > Subject: Re: [Ipodlinux-devel] Powersaving with hdparm > Date: Thu, 1 Apr 2004 16:37:47 +0200 > To: le...@bo... > > On Apr 1, 2004, at 9:27 AM, Bernard Leach wrote: > > > > Great job, I'll see about getting a binary up on in the beta area for > > download. I'd be very interested to hear what sort of results you see > > from that. > > Last night I left the unit on - I wasn't very surprised to find that > the battery had drained fully this morning. Today, I managed 4 hours > on a more-or-less fully charged battery, simulating low to semi-normal > usage - listening to a song once in a while, playing around with > podzilla, letting the unit 'sleep' for a bit, etc., waking it up every > ten minutes or so. I'll do another drain test tonight (last night I > didn't have a fully charged unit. > > > So whats next? ;) > > I guess twice as much battery life, continuous playback of mp3s and > some funky userland tools? (-: > > > cheers, > > bern. > > > > Ditto, > Jonathan. > > > Ir. Jonathan C. Ross > Senior Developer > IMC Holding B.V. > Tel: +31 20 7988462 > > For general information, please visit our web site: http://www.imc.nl. > This e-mail and its attachments are only intended for the individual(s) > or entity(entities) named above to whom they are addressed and may > contain personal and/or confidential information. Please notify us > immediately if you are not the intended recipient. Any dissemination, > duplication, publication to third parties or other use of the contents > of this e-mail or its attachments is forbidden. Although this > information has been compiled with great care, neither IMC > International Marketmakers Combination B.V. nor its subsidiaries shall > accept any responsibility for any errors, omissions or other > inaccuracies in this information or for the consequences thereof, nor > shall it be bound in any way by the contents of this e-mail or its > attachments. In the event of incomplete or incorrect transmission > please return the e-mail to the sender. > > > > > --__--__-- > > _______________________________________________ > iPodlinux-devel mailing list > iPo...@li... > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > > > End of iPodlinux-devel Digest |
From: Bernard L. <le...@bo...> - 2004-04-03 17:26:17
|
Hi all, I have put together a new release of the kernel and root filesystem based on the linux-2.4.24 version from CVS and current versions of podzilla and mp3example. This version of podzilla includes a very basic mechanism to play mp3 files with mp3example - simply navigate with the file browser to a directory containing a mp3 and select it. The mp3 will be played with mp3example (play/pause button to pause, menu button to exit, _no volume controls are available_). On exit podzilla will be restarted. This version also includes the hdparm command to suspend the hard drive when not in use. Enjoy! cheers, bern. |
From: Bernard L. <le...@bo...> - 2004-04-03 10:10:06
|
Hi all, I have just imported the first cut of a port of the linux 2.6 kernel tto the iPod. Most things seem to be working but there are still some problems with IDE & the framebuffer. There will be at least one more "release" of the 2.4 kernel for the iPod but then I will start working on this 2.6 port. The build this kernel you need a relatively up-to-date toolchain, the vanilla 2.6.4 kernel the linux.2.6.4-hsc1 patch [1] and the iPod linux-2.6 module. 1. extract the vanilla kernel 2. apply the -hsc1 patch <http://adam.kaist.ac.kr/~hschoe/> 3. copy updates from the linux-2.6 module in CVS Enjoy ;) Please note, the podzilla doesn't unmodified on this kernel at the moment... cheers, bern. |
From: Bernard L. <le...@bo...> - 2004-04-03 09:16:26
|
Perhaps you got the order of the images wrong and so Linux is the default and Apple the alternative (or visa-versa). You could try using the other keys. The other easy gotcha is the hold key ;) If nothing works just go to forced disk mode (by holding down fast forward and rewind) and redo the installation. MacIndian/Perreard Meryl <Mac...@fr...> said: > Somebody who installed ipodlinux yesterday has a ... problem ;-) > > When he reset his ipod to switch to Apple firmwar, the bootloader > doesn't proceed to the switch and boot on Linux. > Impossible to go back. > > idea? > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click > _______________________________________________ > iPodlinux-devel mailing list > iPo...@li... > https://lists.sourceforge.net/lists/listinfo/ipodlinux-devel > -- |
From: MacIndian/Perreard M. <Mac...@fr...> - 2004-04-03 09:04:28
|
Somebody who installed ipodlinux yesterday has a ... problem ;-) When he reset his ipod to switch to Apple firmwar, the bootloader doesn't proceed to the switch and boot on Linux. Impossible to go back. idea? |