Re: [e-users] Really don't know how to start with

2013-05-02 Thread Gustavo Sverzut Barbieri
On Wed, May 1, 2013 at 8:30 PM, Carsten Haitzler ras...@rasterman.comwrote: On Thu, 2 May 2013 01:35:47 +0800 hYde hyde@gmail.com said: Hi: After your detailed explanation, I guess Enlightenment is just what I need. In BIOS environment we have jpg, bmp and png decoder lib already,

Re: [e-users] Really don't know how to start with

2013-05-02 Thread hYde
Hi, Digged into configure.ac I found out I could just flip the switches on / off to customized my porting, but somehow still rough, have to fine tune it in c code On Fri, May 3, 2013 at 1:01 AM, Gustavo Sverzut Barbieri barbi...@profusion.mobi wrote: On Wed, May 1, 2013 at 8:30 PM, Carsten

Re: [e-users] Really don't know how to start with

2013-05-02 Thread The Rasterman
On Thu, 2 May 2013 14:01:20 -0300 Gustavo Sverzut Barbieri barbi...@profusion.mobi said: On Wed, May 1, 2013 at 8:30 PM, Carsten Haitzler ras...@rasterman.comwrote: On Thu, 2 May 2013 01:35:47 +0800 hYde hyde@gmail.com said: Hi: After your detailed explanation, I guess

Re: [e-users] Really don't know how to start with

2013-05-01 Thread Cedric BAIL
Hello, On Tue, Apr 30, 2013 at 9:48 PM, hYde hyde@gmail.com wrote: that's why I explicitly removed Edje. Edje pulls too much, and will not aggregate that much value for the BIOS case (show menu and similar). Of course it would be nice to have a complete environment with Elementary and

Re: [e-users] Really don't know how to start with

2013-05-01 Thread The Rasterman
On Tue, 30 Apr 2013 09:31:43 -0300 Gustavo Sverzut Barbieri barbi...@profusion.mobi said: Hi, On Tue, Apr 30, 2013 at 8:57 AM, Carsten Haitzler ras...@rasterman.comwrote: On Tue, 30 Apr 2013 18:03:21 +0800 hYde hyde@gmail.com said: Since my BIOS has only about 8MB of space, I

Re: [e-users] Really don't know how to start with

2013-05-01 Thread hYde
wow... Looks like I need to dig in more to study more stuff :( Is it possible to reduce code size to about 400~700KB after all this? On Wed, May 1, 2013 at 5:56 PM, Carsten Haitzler ras...@rasterman.comwrote: On Tue, 30 Apr 2013 09:31:43 -0300 Gustavo Sverzut Barbieri

Re: [e-users] Really don't know how to start with

2013-05-01 Thread The Rasterman
On Wed, 1 May 2013 22:59:43 +0800 hYde hyde@gmail.com said: wow... Looks like I need to dig in more to study more stuff :( Is it possible to reduce code size to about 400~700KB after all this? compressed or uncompressed? evas minus all dependencies and zero modules in current dev is

Re: [e-users] Really don't know how to start with

2013-05-01 Thread Alan McKinnon
On 01/05/2013 18:00, Carsten Haitzler (The Rasterman) wrote: On Wed, 1 May 2013 22:59:43 +0800 hYde hyde@gmail.com said: wow... Looks like I need to dig in more to study more stuff :( Is it possible to reduce code size to about 400~700KB after all this? [snip awesome technical stuff]

Re: [e-users] Really don't know how to start with

2013-05-01 Thread hYde
Hi: After your detailed explanation, I guess Enlightenment is just what I need. In BIOS environment we have jpg, bmp and png decoder lib already, and picture format we use is just these, so I think I could strip these out. We only need one font, and I've developed a freetype font library, so this

Re: [e-users] Really don't know how to start with

2013-05-01 Thread Gustavo Sverzut Barbieri
On Wed, May 1, 2013 at 2:35 PM, hYde hyde@gmail.com wrote: Hi: After your detailed explanation, I guess Enlightenment is just what I need. In BIOS environment we have jpg, bmp and png decoder lib already, and picture format we use is just these, so I think I could strip these out. We

Re: [e-users] Really don't know how to start with

2013-05-01 Thread The Rasterman
On Thu, 2 May 2013 01:35:47 +0800 hYde hyde@gmail.com said: Hi: After your detailed explanation, I guess Enlightenment is just what I need. In BIOS environment we have jpg, bmp and png decoder lib already, and picture format we use is just these, so I think I could strip these out. We

Re: [e-users] Really don't know how to start with

2013-04-30 Thread hYde
Since my BIOS has only about 8MB of space, I take Evas + Edje. May I ask what is pre-merge? And what really confuses me is I'm not porting it on any OS, just an environment with framebuffer support, so any OS based config would not work on my base, still working on stripping the code and figure

Re: [e-users] Really don't know how to start with

2013-04-30 Thread The Rasterman
On Tue, 30 Apr 2013 18:03:21 +0800 hYde hyde@gmail.com said: Since my BIOS has only about 8MB of space, I take Evas + Edje. you'll need ecore, eet and eina too then. (well some of ecore). May I ask what is pre-merge? efl 1.7.x ... from efl 1.8 we have a single build tree and we have

Re: [e-users] Really don't know how to start with

2013-04-30 Thread Gustavo Sverzut Barbieri
Hi, On Tue, Apr 30, 2013 at 8:57 AM, Carsten Haitzler ras...@rasterman.comwrote: On Tue, 30 Apr 2013 18:03:21 +0800 hYde hyde@gmail.com said: Since my BIOS has only about 8MB of space, I take Evas + Edje. you'll need ecore, eet and eina too then. (well some of ecore). that's why I

Re: [e-users] Really don't know how to start with

2013-04-30 Thread hYde
Hi, that's why I explicitly removed Edje. Edje pulls too much, and will not aggregate that much value for the BIOS case (show menu and similar). Of course it would be nice to have a complete environment with Elementary and all, but I don't think it's doable without LOTS of effort, so stick with

Re: [e-users] Really don't know how to start with

2013-04-30 Thread Gustavo Sverzut Barbieri
Hi Hyde, thanks for clarifying, comments below: On Tue, Apr 30, 2013 at 9:48 AM, hYde hyde@gmail.com wrote: Hi, that's why I explicitly removed Edje. Edje pulls too much, and will not aggregate that much value for the BIOS case (show menu and similar). Of course it would be nice to

Re: [e-users] Really don't know how to start with

2013-04-30 Thread hYde
Hi, I've read and followed every page which described how to build enlightenment using MinGW + Windows, MinGW / AutoConf / Pkg-config are all up-and-ready but it still refuses to work, still finding the answer why :( I will listen to you, start it all over just stick to evas, and make it work,

Re: [e-users] Really don't know how to start with

2013-04-29 Thread Gustavo Sverzut Barbieri
Hi, this is quite of a hard task and I'd request you to evaluate the requirements before digging much. How does coreboot behaves? How much space do you have? Having it to compile should be the simplest task, but then you need to implement the OS layers EFL expects in Ecore: main loop (timers,