All of lore.kernel.org
 help / color / mirror / Atom feed
* fbv neutered
@ 2009-08-19 15:48 Ulf Samuelsson
  2009-08-19 16:09 ` Leon Woestenberg
  2009-08-20  3:31 ` Denys Dmytriyenko
  0 siblings, 2 replies; 6+ messages in thread
From: Ulf Samuelsson @ 2009-08-19 15:48 UTC (permalink / raw)
  To: openembedded-devel

I added "fbv" "frame buffer viewer" to the file system,
and happily tried to watch my Mustang rental car.

-- fbv did not recognize the file format.

Generated a nice bmp file and tried this...

--  fbv did not recognize the file format.

I then checked the recipe:


---------------------------------
	CC="${CC}" ./configure --without-libungif --without-bmp \
		--without-libjpeg
---------------------------------

Beats me why someone would want to have it built this way.

Is there another application one should use?


-- 
Best Regards
Ulf Samuelsson




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: fbv neutered
  2009-08-19 15:48 fbv neutered Ulf Samuelsson
@ 2009-08-19 16:09 ` Leon Woestenberg
  2009-08-20  3:31 ` Denys Dmytriyenko
  1 sibling, 0 replies; 6+ messages in thread
From: Leon Woestenberg @ 2009-08-19 16:09 UTC (permalink / raw)
  To: openembedded-devel

Hello Ulf,

On Wed, Aug 19, 2009 at 5:48 PM, Ulf Samuelsson<ulf.samuelsson@atmel.com> wrote:
> I added "fbv" "frame buffer viewer" to the file system,
> and happily tried to watch my Mustang rental car.
>
> -- fbv did not recognize the file format.
>
Tried --enable-mustang? :-)

> ---------------------------------
>        CC="${CC}" ./configure --without-libungif --without-bmp \
>                --without-libjpeg
> ---------------------------------
>
> Beats me why someone would want to have it built this way.
>
Minimalistic, yeah baby!  Probably PNG support is there.

> Is there another application one should use?
>
Use an overlay, tweak the recipe to your needs.

Regards,
-- 
Leon



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: fbv neutered
  2009-08-19 15:48 fbv neutered Ulf Samuelsson
  2009-08-19 16:09 ` Leon Woestenberg
@ 2009-08-20  3:31 ` Denys Dmytriyenko
  2009-08-20  4:23   ` Tom Rini
  1 sibling, 1 reply; 6+ messages in thread
From: Denys Dmytriyenko @ 2009-08-20  3:31 UTC (permalink / raw)
  To: openembedded-devel

On Wed, Aug 19, 2009 at 05:48:07PM +0200, Ulf Samuelsson wrote:
> I added "fbv" "frame buffer viewer" to the file system,
> and happily tried to watch my Mustang rental car.
> 
> -- fbv did not recognize the file format.
> 
> Generated a nice bmp file and tried this...
> 
> --  fbv did not recognize the file format.
> 
> I then checked the recipe:
> 
> 
> ---------------------------------
> 	CC="${CC}" ./configure --without-libungif --without-bmp \
> 		--without-libjpeg
> ---------------------------------
> 
> Beats me why someone would want to have it built this way.
> 
> Is there another application one should use?

Try fbida - worked for me just fine

-- 
Denys



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: fbv neutered
  2009-08-20  3:31 ` Denys Dmytriyenko
@ 2009-08-20  4:23   ` Tom Rini
  2009-08-20  4:55     ` Denys Dmytriyenko
  2009-08-20 14:24     ` Ulf Samuelsson
  0 siblings, 2 replies; 6+ messages in thread
From: Tom Rini @ 2009-08-20  4:23 UTC (permalink / raw)
  To: openembedded-devel

On Wed, Aug 19, 2009 at 11:31:57PM -0400, Denys Dmytriyenko wrote:

> On Wed, Aug 19, 2009 at 05:48:07PM +0200, Ulf Samuelsson wrote:
> > I added "fbv" "frame buffer viewer" to the file system,
> > and happily tried to watch my Mustang rental car.
> > 
> > -- fbv did not recognize the file format.
> > 
> > Generated a nice bmp file and tried this...
> > 
> > --  fbv did not recognize the file format.
> > 
> > I then checked the recipe:
> > 
> > 
> > ---------------------------------
> > 	CC="${CC}" ./configure --without-libungif --without-bmp \
> > 		--without-libjpeg
> > ---------------------------------
> > 
> > Beats me why someone would want to have it built this way.

Yes, I pushed it that way as I only needed it as a png viewer (we needed
a simple "can we display graphics?" test program) and someone on IRC
also only needed PNGs, I guess.

Of course, it'd be pretty easy to add ungif/bmp/jpeg to the dependancies
list and recompile if you wanted more support.

> > Is there another application one should use?
> 
> Try fbida - worked for me just fine

It didn't when I tried, way way back when.  It also wanted way more
stuff :)

-- 
Tom Rini



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: fbv neutered
  2009-08-20  4:23   ` Tom Rini
@ 2009-08-20  4:55     ` Denys Dmytriyenko
  2009-08-20 14:24     ` Ulf Samuelsson
  1 sibling, 0 replies; 6+ messages in thread
From: Denys Dmytriyenko @ 2009-08-20  4:55 UTC (permalink / raw)
  To: openembedded-devel

On Wed, Aug 19, 2009 at 09:23:25PM -0700, Tom Rini wrote:
> On Wed, Aug 19, 2009 at 11:31:57PM -0400, Denys Dmytriyenko wrote:
> 
> > > Is there another application one should use?
> > 
> > Try fbida - worked for me just fine
> 
> It didn't when I tried, way way back when.  It also wanted way more
> stuff :)

The dependency list seems reasonable to me, although it would be great if 
font stuff was optional :)

As of trying it way-way back, I fixed it last November, as it was not even 
building for me back then:

http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=8bef7e6006811ad7e84a8a6d9433f754b15e2ae4

-- 
Denys



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: fbv neutered
  2009-08-20  4:23   ` Tom Rini
  2009-08-20  4:55     ` Denys Dmytriyenko
@ 2009-08-20 14:24     ` Ulf Samuelsson
  1 sibling, 0 replies; 6+ messages in thread
From: Ulf Samuelsson @ 2009-08-20 14:24 UTC (permalink / raw)
  To: openembedded-devel

Tom Rini skrev:
> On Wed, Aug 19, 2009 at 11:31:57PM -0400, Denys Dmytriyenko wrote:
> 
>> On Wed, Aug 19, 2009 at 05:48:07PM +0200, Ulf Samuelsson wrote:
>>> I added "fbv" "frame buffer viewer" to the file system,
>>> and happily tried to watch my Mustang rental car.
>>>
>>> -- fbv did not recognize the file format.
>>>
>>> Generated a nice bmp file and tried this...
>>>
>>> --  fbv did not recognize the file format.
>>>
>>> I then checked the recipe:
>>>
>>>
>>> ---------------------------------
>>> 	CC="${CC}" ./configure --without-libungif --without-bmp \
>>> 		--without-libjpeg
>>> ---------------------------------
>>>
>>> Beats me why someone would want to have it built this way.
> 
> Yes, I pushed it that way as I only needed it as a png viewer (we needed
> a simple "can we display graphics?" test program) and someone on IRC
> also only needed PNGs, I guess.
> 
> Of course, it'd be pretty easy to add ungif/bmp/jpeg to the dependancies
> list and recompile if you wanted more support.
> 

Anyone mind if I make it the default?
ungif breaks, so I might skip this for simplicity right now.


>>> Is there another application one should use?
>> Try fbida - worked for me just fine
> 
> It didn't when I tried, way way back when.  It also wanted way more
> stuff :)
> 


-- 
Best Regards
Ulf Samuelsson




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-08-20 14:41 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-19 15:48 fbv neutered Ulf Samuelsson
2009-08-19 16:09 ` Leon Woestenberg
2009-08-20  3:31 ` Denys Dmytriyenko
2009-08-20  4:23   ` Tom Rini
2009-08-20  4:55     ` Denys Dmytriyenko
2009-08-20 14:24     ` Ulf Samuelsson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.