From: Masta-G <gba...@at...> - 2003-04-20 11:02:44
|
Will there be a gdrom driver for LinuxDC, or is a cable/bba still = required? And is it possible to write a driver for the 56k modem and port some = browser like mozilla to linux so we can browse the internet? That would be really handy for people who dont own a cable/bba. We could = use the modem to communicate with the pc maybe. |
From: Adrian M. <ad...@mc...> - 2003-04-20 11:20:22
|
On Sunday 20 April 2003 11:59, Masta-G wrote: > Will there be a gdrom driver for LinuxDC, or is a cable/bba still requi= red? There has been a GD Rom driver for about two years. But you don't need it= to=20 boot your DC anyway. > And is it possible to write a driver for the 56k modem and port some A modem driver is perfectly possible if someone wants to write it. > browser like mozilla to linux so we can browse the internet? That would= be These require X and it's really asking a bit much to expect to run a full= y=20 featured browser and X Windows in just 16 Megs of memory! Lynx has been=20 ported and works if you want a text only browser. Past attempts to port=20 Konq/E (the embedded version of Konqueror) failed - but I haven't tried f= or a=20 while. > really handy for people who dont own a cable/bba. We could use the mode= m to > communicate with the pc maybe. |
From: VINCENT <ope...@fr...> - 2003-04-20 12:32:21
|
On Sunday 20 April 2003 13:20, Adrian McMenamin wrote: > These require X and it's really asking a bit much to expect to run a fully > featured browser and X Windows in just 16 Megs of memory! Lynx has been > ported and works if you want a text only browser. Past attempts to port > Konq/E (the embedded version of Konqueror) failed - but I haven't tried f= or > a while. =46or graphical web browser look these screenshots : http://www710.univ-lyon1.fr/~c-vinc02/downloads/sc_google.png http://www710.univ-lyon1.fr/~c-vinc02/downloads/sc_links.png This is Links2.1-pre7=20 (http://atrey.karlin.mff.cuni.cz/%7Eclock/twibright/links), compiled as=20 static with framebuffer, png, tiff, jpeg, javascript and gpm support. It ru= ns=20 perfectly on DCLinux-010605 . As you can see, the background color is badly displayed... But images are=20 perfectly displayed !!! C=E9dric PS : Sorry for the last mail !!! I clicked on the wrong button ;-) |
From: Adrian M. <ad...@mc...> - 2003-04-20 12:42:47
|
On Sunday 20 April 2003 13:00, VINCENT C=E9dric wrote: > On Sunday 20 April 2003 13:20, Adrian McMenamin wrote: > > These require X and it's really asking a bit much to expect to run a > > fully featured browser and X Windows in just 16 Megs of memory! Lynx = has > > been ported and works if you want a text only browser. Past attempts = to > > port Konq/E (the embedded version of Konqueror) failed - but I haven'= t > > tried for a while. > > For graphical web browser look these screenshots : > http://www710.univ-lyon1.fr/~c-vinc02/downloads/sc_google.png > http://www710.univ-lyon1.fr/~c-vinc02/downloads/sc_links.png > > This is Links2.1-pre7 > (http://atrey.karlin.mff.cuni.cz/%7Eclock/twibright/links), compiled as > static with framebuffer, png, tiff, jpeg, javascript and gpm support. I= t > runs perfectly on DCLinux-010605 . > As you can see, the background color is badly displayed... But images a= re > perfectly displayed !!! > Brilliant! Well, I think I shall have to compile that straight away and p= ost=20 up a binary for everybody else :-> > C=E9dric > > PS : Sorry for the last mail !!! I clicked on the wrong button ;-) > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Linuxdc-dev mailing list > Lin...@li... > https://lists.sourceforge.net/lists/listinfo/linuxdc-dev |
From: p2 <p2...@mi...> - 2003-04-20 12:43:07
|
On Sun, Apr 20, 2003 at 02:00:10PM +0200, VINCENT C?dric wrote: > On Sunday 20 April 2003 13:20, Adrian McMenamin wrote: > > > These require X and it's really asking a bit much to expect to run a fully > > featured browser and X Windows in just 16 Megs of memory! Lynx has been > > ported and works if you want a text only browser. Past attempts to port > > Konq/E (the embedded version of Konqueror) failed - but I haven't tried for > > a while. > > For graphical web browser look these screenshots : > http://www710.univ-lyon1.fr/~c-vinc02/downloads/sc_google.png > http://www710.univ-lyon1.fr/~c-vinc02/downloads/sc_links.png > > This is Links2.1-pre7 > (http://atrey.karlin.mff.cuni.cz/%7Eclock/twibright/links), compiled as > static with framebuffer, png, tiff, jpeg, javascript and gpm support. It runs > perfectly on DCLinux-010605 . > As you can see, the background color is badly displayed... But images are > perfectly displayed !!! > The bad background color might be due to byte accesses to the framebuffer. The DC framebuffer hw only allows 16 or 32 bit accesses iirc. Good luck ! p2. |
From: VINCENT <ope...@fr...> - 2003-04-20 13:01:34
|
On Sunday 20 April 2003 14:42, p2 wrote: > The bad background color might be due to byte accesses to the framebuffer. > The DC framebuffer hw only allows 16 or 32 bit accesses iirc. Thank you very much ! But I'm not sure to understand... : I launch 'fbset -depth 16' before launching Links2.1-pre7... so I'm on 16=20 bits... What is iirc ?!? Why are pictures perfectly displayed and not the background ? C=E9dric |
From: p2 <p2...@mi...> - 2003-04-20 13:12:26
|
On Sun, Apr 20, 2003 at 02:29:24PM +0200, VINCENT C?dric wrote: > On Sunday 20 April 2003 14:42, p2 wrote: > > The bad background color might be due to byte accesses to the framebuffer. > > The DC framebuffer hw only allows 16 or 32 bit accesses iirc. > > Thank you very much ! > > But I'm not sure to understand... : > I launch 'fbset -depth 16' before launching Links2.1-pre7... so I'm on 16 > bits... Yes. The DC fb is configured to 16bit. The problem is how you access the framebuffer. You should use a 16 or 32bit access, so you should either use a int * or a short * in C to write something to the display, never use a char *. > What is iirc ?!? if I remember correctly. > Why are pictures perfectly displayed and not the background ? > I guess the code for displaying the background is different from the code displaying the pictures. I don't know the links internals. Thanks, p2. |
From: NunO f. <nm...@ne...> - 2003-04-20 15:31:41
|
Hello about modem driver, there is a preliminary driver for Kallistos, a very nice embebedd os, where is a link to it http://www.boob.co.uk/files/modem/dcmodem11.zip. Is not finished but it works. The port to linux is easy (well more or less :) Nuno ----- Original Message ----- From: "p2" <p2...@mi...> To: <ope...@fr...> Cc: <lin...@li...> Sent: Sunday, April 20, 2003 2:12 PM Subject: Re: [linuxdc-dev] GDROM, modem + internet > On Sun, Apr 20, 2003 at 02:29:24PM +0200, VINCENT C?dric wrote: > > On Sunday 20 April 2003 14:42, p2 wrote: > > > The bad background color might be due to byte accesses to the framebuffer. > > > The DC framebuffer hw only allows 16 or 32 bit accesses iirc. > > > > Thank you very much ! > > > > But I'm not sure to understand... : > > I launch 'fbset -depth 16' before launching Links2.1-pre7... so I'm on 16 > > bits... > > Yes. The DC fb is configured to 16bit. The problem is how you access the > framebuffer. You should use a 16 or 32bit access, so you should either use > a int * or a short * in C to write something to the display, never use a char *. > > > What is iirc ?!? > > if I remember correctly. > > > Why are pictures perfectly displayed and not the background ? > > > > I guess the code for displaying the background is different from the code > displaying the pictures. I don't know the links internals. > > Thanks, > > p2. > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Linuxdc-dev mailing list > Lin...@li... > https://lists.sourceforge.net/lists/listinfo/linuxdc-dev > |