You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(8) |
Nov
(9) |
Dec
(3) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(12) |
Feb
(10) |
Mar
|
Apr
(5) |
May
(3) |
Jun
|
Jul
(5) |
Aug
(7) |
Sep
(15) |
Oct
(4) |
Nov
(3) |
Dec
(7) |
2003 |
Jan
(5) |
Feb
(30) |
Mar
(5) |
Apr
(13) |
May
(12) |
Jun
(11) |
Jul
(1) |
Aug
(7) |
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(7) |
2004 |
Jan
(4) |
Feb
(9) |
Mar
(16) |
Apr
(42) |
May
(5) |
Jun
(11) |
Jul
(3) |
Aug
(39) |
Sep
(5) |
Oct
(32) |
Nov
(27) |
Dec
|
2005 |
Jan
(11) |
Feb
(8) |
Mar
(22) |
Apr
(26) |
May
(9) |
Jun
(10) |
Jul
(7) |
Aug
(43) |
Sep
(23) |
Oct
(18) |
Nov
(15) |
Dec
(15) |
2006 |
Jan
(7) |
Feb
(16) |
Mar
(10) |
Apr
(1) |
May
(16) |
Jun
(8) |
Jul
(3) |
Aug
(35) |
Sep
(7) |
Oct
(4) |
Nov
(5) |
Dec
(1) |
2007 |
Jan
(2) |
Feb
(30) |
Mar
(6) |
Apr
(7) |
May
(5) |
Jun
|
Jul
(15) |
Aug
(12) |
Sep
(22) |
Oct
(48) |
Nov
(9) |
Dec
(7) |
2008 |
Jan
(3) |
Feb
(1) |
Mar
(1) |
Apr
|
May
(4) |
Jun
(1) |
Jul
(5) |
Aug
(4) |
Sep
(4) |
Oct
(2) |
Nov
(5) |
Dec
(1) |
2009 |
Jan
(3) |
Feb
|
Mar
|
Apr
(4) |
May
(2) |
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(3) |
Oct
(2) |
Nov
(2) |
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
From: Chris J. <cg...@gm...> - 2008-11-19 02:43:58
|
I'm finding it difficult to "place" the framebuffer project. What is/are its objective(s)? Is it meant to be an alternative to X? Is it just a generic low-level package that complements X in the event no specific driver for a given video chip is not available? Most people appear to think in a vague kind of way that the framebuffer is just a bunch of tricks that let you use a higher resolution on the linux console. This seems to make little sense in the light of all the activity on the fbdev development list where patches (both corrections & enhancements) are published on a daily basis. I just cannot imagine a number of high-end programmers spending their time providing enhancements for the linux console - especially when you consider how very few applications can actually run in that environment and usually with some feature loss as compared to running them in an xterm, for instance. There seems to be something much more important at stake than the linux console but after reading the few available docs and being subscribed to both fbdev lists for a number of years, I still don't get it. :-( Apologies if this post makes little sense to some/most.. I'm hitting a wall and I guess that I am just too ignorant to ask the right questions. Hopefully someone more knowledgeable will help reformulate and maybe come up with the question(s) I am incapable of asking. :-) Thanks! CJ |
From: Duan Z. <mag...@gm...> - 2008-10-06 10:58:11
|
Hi, I have project which will support 11"LCD with 1280x545 screen size in Linux system, In this project, we will use framebuffer device for X window system. So, for support 11"LCD, which modules should I need to modify? Should I need to write a framebuffer driver to support 11"LCD? Is there any source code to reference? Can somebody tell me how to start it? Many Thanks. Duan |
From: a a <ba...@ya...> - 2008-10-04 05:12:45
|
Hello all When we are in console of linux ( and not in X-Window) the console have screen saver ( that will blank the console after a period of time). How we can disable this screen saver ( of console frame buffer) ? Thanks Get your preferred Email name! Now you can @ymail.com and @rocketmail.com. http://mail.promotions.yahoo.com/newdomains/aa/ |
From: Krzysztof H. <krz...@po...> - 2008-09-04 19:19:18
|
On Thu, 4 Sep 2008 17:08:49 +0200 Juergen Beisert <jue...@kr...> wrote: > On Donnerstag, 4. September 2008, krz...@po... wrote: > > > On Mittwoch, 3. September 2008, Krzysztof Helt wrote: > > > > On Tue, 2 Sep 2008 13:24:51 +0200 > > > > > > > > Sascha Hauer <s....@pe...> wrote: > > > > > Signed-off-by: Sascha Hauer <s....@pe...> > > > > > --- > > > > > drivers/video/imxfb.c | 70 > > > > > +++++++++++++++++++++++------------------------- 1 files changed, 34 > > > > > insertions(+), 36 deletions(-) > > > > > > > > Acked-by: Krzysztof Helt <krz...@wp...> > > > > > > > > One offtopic comment: do you really want the FBINFO_READS_FAST set? > > > > > > > > It means that the driver prefer copyarea to imgblit function. It is > > > > > > Did you ever get the framework to use the copyarea function the driver > > > provides? I tried it several times and this function was never called. > > > Independent from any flags I set or clear. > > > The minimum is to set the flag FBINFO_HWACCEL_COPYAREA into fb_info->flags. If you do not announce the accelerated copyarea function it is not used (the imageblit is preferred). If you defined both flags FBINFO_HWACCEL_IMAGEBLIT and FBINFO_HWACCEL_COPYAREA you have to specify the FBINFO_READS_FAST to prefer the copyarea. As no of this flag is set in the imxfb driver the imageblit is used. > > > I did used the copyarea on some other drivers (tridentfb, pm2fb). > > How did you use them? > Simply, the console use them for scrolling. The tridentfb still uses the copyarea for scrolling on families other then Blade3d. > > The tdfxfb driver uses now copyarea function for console scrolling. > > Are you sure, this function will be called? Yes. I can recheck if you want, but there is a measurable speed difference if you define FBINFO_READS_FAST or not on the 3Dfx hardware. Please check this threads: http://marc.info/?l=linux-fbdev-devel&m=117852288316471&w=2 http://marc.info/?l=linux-fbdev-devel&m=117852288316471&w=2 and some threads around. Since then the copyarea is much faster. > I wrote two drivers for ARM and > x86 graphics hardware and provide a copyarea function for both of them. The > console framework ignores both. Only the fillrect and imageblit function is > used from the frambuffer console code. > The imageblit is preferred over copyarea is it is usually faster. The fillrect is always used. > In driver/video/console/fbcon.c I always fail in function fbcon_scroll(). > The "dir" switch/case never reaches one of the "switch (p->scrollmode)" > statements. > Please check the constants mentioned above and try again. Regards, Krzysztof ---------------------------------------------------------------------- Tylko u nas - swieza krew w rozsadnych cenach! >> http://link.interia.pl/f1eed |
From: Juergen B. <jue...@kr...> - 2008-09-04 15:09:06
|
On Donnerstag, 4. September 2008, krz...@po... wrote: > > On Mittwoch, 3. September 2008, Krzysztof Helt wrote: > > > On Tue, 2 Sep 2008 13:24:51 +0200 > > > > > > Sascha Hauer <s....@pe...> wrote: > > > > Signed-off-by: Sascha Hauer <s....@pe...> > > > > --- > > > > drivers/video/imxfb.c | 70 > > > > +++++++++++++++++++++++------------------------- 1 files changed, 34 > > > > insertions(+), 36 deletions(-) > > > > > > Acked-by: Krzysztof Helt <krz...@wp...> > > > > > > One offtopic comment: do you really want the FBINFO_READS_FAST set? > > > > > > It means that the driver prefer copyarea to imgblit function. It is > > > > Did you ever get the framework to use the copyarea function the driver > > provides? I tried it several times and this function was never called. > > Independent from any flags I set or clear. > > > > jbe > > I do not have atmel hardware to test. Its not architecture specific. > I did used the copyarea on some other drivers (tridentfb, pm2fb). How did you use them? > The tdfxfb driver uses now copyarea function for console scrolling. Are you sure, this function will be called? I wrote two drivers for ARM and x86 graphics hardware and provide a copyarea function for both of them. The console framework ignores both. Only the fillrect and imageblit function is used from the frambuffer console code. In driver/video/console/fbcon.c I always fail in function fbcon_scroll(). The "dir" switch/case never reaches one of the "switch (p->scrollmode)" statements. jbe |
From: <krz...@po...> - 2008-09-04 12:31:17
|
> On Mittwoch, 3. September 2008, Krzysztof Helt wrote: > > On Tue, 2 Sep 2008 13:24:51 +0200 > > > > Sascha Hauer <s....@pe...> wrote: > > > Signed-off-by: Sascha Hauer <s....@pe...> > > > --- > > > drivers/video/imxfb.c | 70 > > > +++++++++++++++++++++++------------------------- 1 files changed, 34 > > > insertions(+), 36 deletions(-) > > > > Acked-by: Krzysztof Helt <krz...@wp...> > > > > One offtopic comment: do you really want the FBINFO_READS_FAST set? > > > > It means that the driver prefer copyarea to imgblit function. It is > > Did you ever get the framework to use the copyarea function the driver > provides? I tried it several times and this function was never called. > Independent from any flags I set or clear. > > jbe > I do not have atmel hardware to test. I did used the copyarea on some other drivers (tridentfb, pm2fb). The tdfxfb driver uses now copyarea function for console scrolling. I will inspect out the atmel driver and give you some hints. Regards, Krzysztof > --------------------------------------------------------------- Nasilaja sie kradzieze. Mieszkancy osiedli zaniepokojeni. Prosimy o pomoc w tej sprawie >>> http://link.interia.pl/f1eef |
From: Juergen B. <jue...@kr...> - 2008-09-04 11:20:53
|
On Mittwoch, 3. September 2008, Krzysztof Helt wrote: > On Tue, 2 Sep 2008 13:24:51 +0200 > > Sascha Hauer <s....@pe...> wrote: > > Signed-off-by: Sascha Hauer <s....@pe...> > > --- > > drivers/video/imxfb.c | 70 > > +++++++++++++++++++++++------------------------- 1 files changed, 34 > > insertions(+), 36 deletions(-) > > Acked-by: Krzysztof Helt <krz...@wp...> > > One offtopic comment: do you really want the FBINFO_READS_FAST set? > > It means that the driver prefer copyarea to imgblit function. It is Did you ever get the framework to use the copyarea function the driver provides? I tried it several times and this function was never called. Independent from any flags I set or clear. jbe |
From: Arthur M. <art...@in...> - 2008-08-20 07:19:02
|
Arthur Marsh wrote, on 2008-08-20 16:23: > I'm running the Linux kernel 2.6.27-rc3. When trying to load cirrusfb.ko > I received the following dmesg output: > > [ 6185.202286] CLgenfb: Unknown memory size! > [ 6185.202286] RAM (1024 kB) at 0xe4000000, Cirrus Logic chipset on PCI bus > [ 6185.202286] cirrusfb: Driver for Cirrus Logic based graphic boards, > v2.0-pre2 > [ 6185.206301] cirrusfb: Warning: Unknown board type > [ 6185.206301] cirrusfb: This board has 1048576 bytes of DRAM memory > [ 6185.206301] cirrusfb: Warning: Unknown board type > [ 6185.210294] cirrusfb: This board has 1048576 bytes of DRAM memory > [ 6185.210294] Console: switching to colour frame buffer device 80x30 > [ 6257.515628] cirrusfb: Warning: Unknown board type > [ 6257.519638] cirrusfb: This board has 1048576 bytes of DRAM memory > > This board is identified as: > > 01:00.0 VGA compatible controller: Cirrus Logic GD 5465 [Laguna] (rev 03) > Subsystem: Cirrus Logic Device 0000 > Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- > ParErr- Stepping- SERR- FastB2B- DisINTx- > Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium > >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- > Latency: 64 (4000ns min, 4000ns max) > Interrupt: pin A routed to IRQ 11 > Region 0: Memory at e4000000 (32-bit, non-prefetchable) [size=32M] > Region 1: Memory at e7000000 (32-bit, non-prefetchable) [size=64K] > [virtual] Expansion ROM at 20000000 [disabled] [size=32K] > Capabilities: [80] AGP version 1.0 > Status: RQ=1 Iso- ArqSz=0 Cal=0 SBA- ITACoh- GART64- > HTrans- 64bit- FW- AGP3- Rate=<none> > Command: RQ=1 ArqSz=0 Cal=0 SBA- AGP- GART64- 64bit- > FW- Rate=<none> > Kernel driver in use: cirrusfb > Kernel modules: cirrusfb > > I've tried enabling the 15-16 MB memory hole in the BIOS, but I'm still > not getting anything visible when I switch away from vt7. > > Any suggestions? (I'd like to run a radeon 9200 or 9600 but have yet to > find one). > A few more pieces of information: Xorg reports: X.org VideoRAM: 4096 kByte The motherboard is an Intel 440LX, and the kernel is using the Debian config options, with 686 architecture and "low latency desktop" selected. Arthur. |
From: Arthur M. <art...@in...> - 2008-08-20 07:05:07
|
I'm running the Linux kernel 2.6.27-rc3. When trying to load cirrusfb.ko I received the following dmesg output: [ 6185.202286] CLgenfb: Unknown memory size! [ 6185.202286] RAM (1024 kB) at 0xe4000000, Cirrus Logic chipset on PCI bus [ 6185.202286] cirrusfb: Driver for Cirrus Logic based graphic boards, v2.0-pre2 [ 6185.206301] cirrusfb: Warning: Unknown board type [ 6185.206301] cirrusfb: This board has 1048576 bytes of DRAM memory [ 6185.206301] cirrusfb: Warning: Unknown board type [ 6185.210294] cirrusfb: This board has 1048576 bytes of DRAM memory [ 6185.210294] Console: switching to colour frame buffer device 80x30 [ 6257.515628] cirrusfb: Warning: Unknown board type [ 6257.519638] cirrusfb: This board has 1048576 bytes of DRAM memory This board is identified as: 01:00.0 VGA compatible controller: Cirrus Logic GD 5465 [Laguna] (rev 03) Subsystem: Cirrus Logic Device 0000 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx- Latency: 64 (4000ns min, 4000ns max) Interrupt: pin A routed to IRQ 11 Region 0: Memory at e4000000 (32-bit, non-prefetchable) [size=32M] Region 1: Memory at e7000000 (32-bit, non-prefetchable) [size=64K] [virtual] Expansion ROM at 20000000 [disabled] [size=32K] Capabilities: [80] AGP version 1.0 Status: RQ=1 Iso- ArqSz=0 Cal=0 SBA- ITACoh- GART64- HTrans- 64bit- FW- AGP3- Rate=<none> Command: RQ=1 ArqSz=0 Cal=0 SBA- AGP- GART64- 64bit- FW- Rate=<none> Kernel driver in use: cirrusfb Kernel modules: cirrusfb I've tried enabling the 15-16 MB memory hole in the BIOS, but I'm still not getting anything visible when I switch away from vt7. Any suggestions? (I'd like to run a radeon 9200 or 9600 but have yet to find one). |
From: zhang w. <zw...@vi...> - 2008-08-17 04:09:31
|
I have counted a problem when i mmap the /dev/fb0 and memset it to 0( the fb driver use deferred_io and when i do not use deferred_io it works well) .This bug also showed int linux2.6.26 and linux2.6.25. does this bug solved? function fb_deferred_io_fault called<3>function fb_deferred_io_mkwrite called<3>function fb_deferred_io_fault called<3>function fb_deferred_io_mkwrite called<3>function fb_deferred_io_fault called<3>function fb_deferred_io_mkwrite called<2>kernel BUG at lib/radix-tree.c:474! Unable to handle kernel NULL pointer dereference at virtual address 00000000 pgd = c3ef8000 [00000000] *pgd=0bd25031, *pte=00000000, *ppte=00000000 Internal error: Oops: 817 [#2] Modules linked in: etrackfb_new sony_prs_505 CPU: 0 Tainted: G D W (2.6.26-rc9-00056-g99b0915-dirty #1) PC is at __bug+0x20/0x2c LR is at log_wait+0x0/0x8 pc : [<c002118c>] lr : [<c024f1f8>] psr: 20000093 sp : c3ed7d9c ip : c3ed7ce0 fp : c3ed7da8 r10: 00000002 r9 : 00000000 r8 : 40137000 r7 : 00000000 r6 : c3811294 r5 : 00000000 r4 : 00000000 r3 : 00000000 r2 : c024f214 r1 : 0001233d r0 : 00000027 Flags: nzCv IRQs off FIQs on Mode SVC_32 ISA ARM Segment user Control: c000717f Table: 0bef8000 DAC: 00000015 Process framebuff.ko (pid: 215, stack limit = 0xc3ed6260) Stack: (0xc3ed7d9c to 0xc3ed8000) 7d80: c3ed7dd8 7da0: c3ed7dac c01069d4 c002117c c3ed7db8 00000000 c0310b40 c3811290 00000000 7dc0: 40137000 c3d2c900 00000000 c3ed7df4 c3ed7ddc c00a639c c010692c c0310b40 7de0: 00000001 c3d1339c c3ed7e04 c3ed7df8 c00a65f8 c00a6248 c3ed7e1c c3ed7e08 7e00: c00660d8 c00a6554 c0310b40 00000001 c3ed7e34 c3ed7e20 c0066ba4 c006609c 7e20: 0bd5a0ff c0310b40 c3ed7e7c c3ed7e38 c006d684 c0066b9c c3ef9000 00000001 7e40: 00000001 00000001 00000002 40137000 c0310b40 c3ef8000 00000000 c3d20f00 7e60: c3d1339c 40137000 00000800 00001000 c3ed7ecc c3ed7e80 c006eb64 c006d318 7e80: 00000002 00000001 00000000 c02ffe60 c3d2c900 c3ed7eb4 000004dc c3ef9000 7ea0: c004c368 ffffffff c3d1339c c3d20f00 c3d2c938 c3d2c900 c3ed7fb0 40137000 7ec0: c3ed7f04 c3ed7ed0 c0022dc0 c006e8b8 c02ffe60 c3ef8000 00000817 ffffffff 7ee0: c024e630 00000817 c3ed7fb0 40137000 00000000 4012f000 c3ed7fac c3ed7f08 7f00: c001d1dc c0022ce8 00000000 000000fb c3d2c900 c3d30680 00000224 c3ef9000 7f20: 00076000 ffffffff 00000200 c3d136e4 c3ed7f4c c3ed7f40 c004f998 c0107a20 7f40: c3ed7f84 c3ed7f50 c0022e50 c004f998 00075300 c3ed7f70 00000000 ffffffff 7f60: 00001000 000086c0 00000001 00008520 00000000 4012f000 c3ed7f9c c3ed7f88 7f80: c0022f98 c0022ce8 ffffffff ffffffff 000086b4 000086c0 00000001 00008520 7fa0: 00000000 c3ed7fb0 c001d9c0 c001d1b0 40135000 00000000 000732f8 40137000 7fc0: beb2bed4 000086b4 000086c0 00000001 00008520 00000000 4012f000 beb2bea8 7fe0: 40089810 beb2bd6c 00008674 40089838 20000010 ffffffff ffffffff ffffffff Backtrace: [<c002116c>] (__bug+0x0/0x2c) from [<c01069d4>] (radix_tree_tag_set+0xb8/0xfc) [<c010691c>] (radix_tree_tag_set+0x0/0xfc) from [<c00a639c>] (__set_page_dirty+0x164/0x198) [<c00a6238>] (__set_page_dirty+0x0/0x198) from [<c00a65f8>] (__set_page_dirty_buffers+0xb4/0xc4) r6:c3d1339c r5:00000001 r4:c0310b40 [<c00a6544>] (__set_page_dirty_buffers+0x0/0xc4) from [<c00660d8>] (set_page_dirty+0x4c/0xd0) [<c006608c>] (set_page_dirty+0x0/0xd0) from [<c0066ba4>] (set_page_dirty_balance+0x18/0x5c) r5:00000001 r4:c0310b40 [<c0066b8c>] (set_page_dirty_balance+0x0/0x5c) from [<c006d684>] (__do_fault+0x37c/0x3a4) r5:c0310b40 r4:0bd5a0ff [<c006d308>] (__do_fault+0x0/0x3a4) from [<c006eb64>] (handle_mm_fault+0x2bc/0x5f0) [<c006e8a8>] (handle_mm_fault+0x0/0x5f0) from [<c0022dc0>] (do_page_fault+0xe8/0x224) [<c0022cd8>] (do_page_fault+0x0/0x224) from [<c001d1dc>] (do_DataAbort+0x3c/0xa0) [<c001d1a0>] (do_DataAbort+0x0/0xa0) from [<c001d9c0>] (ret_from_exception+0x0/0x10) Exception stack(0xc3ed7fb0 to 0xc3ed7ff8) 7fa0: 40135000 00000000 000732f8 40137000 7fc0: beb2bed4 000086b4 000086c0 00000001 00008520 00000000 4012f000 beb2bea8 7fe0: 40089810 beb2bd6c 00008674 40089838 20000010 ffffffff r8:00008520 r7:00000001 r6:000086c0 r5:000086b4 r4:ffffffff Code: e1a01000 e59f000c eb006243 e3a03000 (e5833000) ---[ end trace 4cc49dda9c86eac6 ]--- Segmentation fault |
From: Geert U. <ge...@li...> - 2008-08-01 07:19:14
|
On Thu, 31 Jul 2008, Khaled Ben Amor wrote: > [root@Multimedia Linux]# make > KERNELDIR=/home/bakhaled/Documents/linux-2.6.17.14_stm22_0037/ > make -C /home/bakhaled/Documents/linux-2.6.17.14_stm22_0037/ > M="/home/bakhaled/kernelmodules/Linux/../Linux/kbuild" ARCH=sh > CROSS_COMPILE="sh4-linux-" modules > make[1]: entrant dans le rrtoire > /home/bakhaled/Documents/linux-2.6.17.14_stm22_0037 > > WARNING: Symbol version dump > /home/bakhaled/Documents/linux-2.6.17.14_stm22_0037/Module.symvers > is missing; modules will have no dependencies and modversions. > > CC [M] > /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.o > cc1plus: attention : l'option de la ligne de commande "-Wno-pointer-sign" > est valide pour C/ObjC mais pas pour C++ May be unrelated to the actual problem, but Linux kernel drivers cannot be C++. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@li... In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds |
From: Khaled B. A. <kha...@gm...> - 2008-07-31 12:47:12
|
[root@Multimedia Linux]# make KERNELDIR=/home/bakhaled/Documents/linux-2.6.17.14_stm22_0037/ make -C /home/bakhaled/Documents/linux-2.6.17.14_stm22_0037/ M="/home/bakhaled/kernelmodules/Linux/../Linux/kbuild" ARCH=sh CROSS_COMPILE="sh4-linux-" modules make[1]: entrant dans le répertoire « /home/bakhaled/Documents/linux-2.6.17.14_stm22_0037 » WARNING: Symbol version dump /home/bakhaled/Documents/linux-2.6.17.14_stm22_0037/Module.symvers is missing; modules will have no dependencies and modversions. CC [M] /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.o cc1plus: attention : l'option de la ligne de commande "-Wno-pointer-sign" est valide pour C/ObjC mais pas pour C++ /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:12:32: erreur: Generic/basictypes.h : Aucun fichier ou répertoire de ce type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:13:25: erreur: Generic/IOS.h : Aucun fichier ou répertoire de ce type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:14:28: erreur: Generic/IDebug.h : Aucun fichier ou répertoire de ce type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:16:38: erreur: Generic/stmdisplayoutput.h : Aucun fichier ou répertoire de ce type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:17:36: erreur: Generic/STDisplayPlane.h : Aucun fichier ou répertoire de ce type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:19:25: erreur: Generic/GAL.h : Aucun fichier ou répertoire de ce type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:20:28: erreur: Generic/Output.h : Aucun fichier ou répertoire de ce type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:21:34: erreur: Generic/DisplayPlane.h : Aucun fichier ou répertoire de ce type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:22:35: erreur: Generic/DisplayDevice.h : Aucun fichier ou répertoire de ce type /home/bakhaled/kernelmodules/Linux/../Linux/video/stmfb.h:106: erreur: 'SURF_FMT' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/video/stmfb.h:107: erreur: 'SURF_FMT' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:26: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:27: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:28: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:29: erreur: 'SURF_FMT' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:30: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:32: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:33: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:34: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:36: erreur: 'stm_scan_type_t' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:38: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:39: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:40: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:41: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:43: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:44: erreur: ISO C++ forbids declaration of 'stm_mode_line_t' with no type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:44: erreur: expected ';' before '*' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:47: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:60: erreur: 'stm_field_t' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:66: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:67: erreur: 'UCHAR' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:68: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:71: erreur: expected initializer before '*' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:72: erreur: expected initializer before '*' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:73: erreur: expected initializer before '*' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:76: erreur: expected ',' or '...' before '*' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:76: erreur: ISO C++ forbids declaration of 'stm_mode_line_t' with no type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:81: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:82: erreur: 'stm_output_control_t' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:82: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:83: erreur: 'stm_output_control_t' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:83: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:85: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:86: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:87: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:88: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:89: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:91: erreur: 'stm_display_status_t' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:94: erreur: 'GDP_IDS' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:96: erreur: 'PLANE_CAPS' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:97: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:104: erreur: 'SURF_FMT' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:109: erreur: 'ULONG' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:109: erreur: 'ULONG' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:110: erreur: 'ULONG' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:110: erreur: 'ULONG' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:111: erreur: 'ULONG' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:111: erreur: 'SURF_FMT' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:111: erreur: initializer liste d'expressions traitée comme une expression composée /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:60: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:62: erreur: expected initializer before '*' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbInit()': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:70: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:73: erreur: 'g_pIDebug' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:76: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:76: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:81: erreur: 'devfbDevice' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:81: erreur: 'AnonymousCreateDevice' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:83: erreur: 'DEBUGF2' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:88: erreur: 'devfbDevice' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:90: erreur: 'DEBUGF2' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:91: erreur: type '<type error>' argument given to 'delete', expected pointer /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:98: erreur: 'DEBUGF2' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbFinish()': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:107: erreur: 'ASSERTF' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:109: erreur: 'devfbDevice' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:112: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:114: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:118: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:119: erreur: 'g_pIDebug' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'void* DevfbGetDevice()': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:128: erreur: 'devfbDevice' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:135: erreur: 'GDP_IDS' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'void* DevfbGetPlane(void*, int)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:137: attention : left-hand operand of comma n'a pas d'effet /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:137: attention : right-hand operand of comma n'a pas d'effet /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:137: erreur: 'DEBUGF2' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:140: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:140: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:143: erreur: 'CDisplayDevice' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:143: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:143: erreur: expected `)' before 'devptr' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:145: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:145: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbReleasePlane(void*, void*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:152: erreur: 'CDisplayPlane' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:152: erreur: 'pDP' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:152: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:152: erreur: expected `;' before 'pPlane' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:153: erreur: 'CDisplayDevice' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:153: erreur: 'pDev' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:153: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:153: erreur: expected `;' before 'devptr' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:155: attention : left-hand operand of comma n'a pas d'effet /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:155: attention : right-hand operand of comma n'a pas d'effet /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:155: erreur: 'DEBUGF2' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:156: erreur: 'ASSERTF' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:158: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:158: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:163: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:163: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:169: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbPausePlane(void*, int)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:171: erreur: 'ASSERTF' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:173: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:173: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:176: erreur: 'CDisplayPlane' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:176: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:176: erreur: expected `)' before 'pPlane' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:178: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:178: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbResumePlane(void*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:186: erreur: 'ASSERTF' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:188: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:188: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:191: erreur: 'CDisplayPlane' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:191: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:191: erreur: expected `)' before 'pPlane' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:193: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:193: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbFlushPlane(void*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:201: erreur: 'ASSERTF' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:203: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:203: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:206: erreur: 'CDisplayPlane' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:206: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:206: erreur: expected `)' before 'pPlane' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:208: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:208: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbAttachOutputToPlane(void*, void*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:216: erreur: 'CDisplayPlane' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:216: erreur: 'pDP' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:216: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:216: erreur: expected `;' before 'pPlane' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:219: attention : left-hand operand of comma n'a pas d'effet /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:219: attention : right-hand operand of comma n'a pas d'effet /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:219: erreur: 'DEBUGF2' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:220: erreur: 'ASSERTF' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:222: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:222: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:225: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:225: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:227: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:227: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbDetachOutputFromPlane(void*, void*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:235: erreur: 'CDisplayPlane' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:235: erreur: 'pDP' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:235: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:235: erreur: expected `;' before 'pPlane' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:236: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:236: erreur: 'pOut' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:236: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:236: erreur: expected `;' before 'pOutput' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:238: attention : left-hand operand of comma n'a pas d'effet /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:238: attention : right-hand operand of comma n'a pas d'effet /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:238: erreur: 'DEBUGF2' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:239: erreur: 'ASSERTF' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:241: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:241: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:246: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:246: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:252: erreur: 'SURF_FMT' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbGetPlaneFormats(void*, int**)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:254: erreur: 'ASSERTF' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:257: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:257: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:260: erreur: 'CDisplayPlane' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:260: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:260: erreur: expected `)' before 'pPlane' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:262: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:262: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:268: erreur: 'PLANE_CAPS' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbGetPlaneCaps(void*, int*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:270: erreur: 'ASSERTF' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:272: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:272: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:275: erreur: 'CDisplayPlane' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:275: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:275: erreur: expected `)' before 'pPlane' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:277: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:277: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbWriteBuffer(void*, void*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:287: erreur: 'ASSERTF' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:289: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:289: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:292: erreur: 'CDisplayPlane' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:292: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:292: erreur: expected `)' before 'pOvl' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:294: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:294: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:303: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:319: erreur: 'UCHAR' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'void* DevfbGetOutput(void*, int)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:321: erreur: 'CDisplayDevice' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:321: erreur: 'pDev' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:321: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:321: erreur: expected `;' before 'devptr' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:324: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:324: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:329: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:329: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:335: erreur: 'ULONG' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:351: erreur: expected initializer before '*' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:367: erreur: expected initializer before '*' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:383: erreur: expected initializer before '*' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:399: erreur: expected ',' or '...' before '*' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:399: erreur: ISO C++ forbids declaration of 'stm_mode_line_t' with no type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbStartOutput(void*, int)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:401: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:401: erreur: 'pOutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:401: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:401: erreur: expected `;' before 'outPtr' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:404: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:404: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:407: erreur: 'pModeLine' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:407: erreur: 'ulTVStandard' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:409: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:409: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbStopOutput(void*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:417: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:417: erreur: 'pOutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:417: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:417: erreur: expected `;' before 'outPtr' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:420: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:420: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:425: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:425: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbSuspendOutput(void*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:433: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:433: erreur: 'pOutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:433: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:433: erreur: expected `;' before 'outPtr' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:435: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:435: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:440: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:440: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbResumeOutput(void*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:448: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:448: erreur: 'pOutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:448: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:448: erreur: expected `;' before 'outPtr' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:450: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:450: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:455: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:455: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:461: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbOutputSupportedControls(void*, int*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:463: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:463: erreur: 'pOut' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:463: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:463: erreur: expected `;' before 'pOutput' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:465: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:465: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:470: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:470: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:476: erreur: 'stm_output_control_t' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:476: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbOutputSetControl(void*, int, int)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:478: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:478: erreur: 'pOut' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:478: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:478: erreur: expected `;' before 'pOutput' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:480: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:480: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:485: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:485: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:491: erreur: 'stm_output_control_t' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:491: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbOutputGetControl(void*, int, int*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:493: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:493: erreur: 'pOut' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:493: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:493: erreur: expected `;' before 'pOutput' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:495: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:495: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:500: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:500: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:506: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbOutputSetFormat(void*, int)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:508: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:508: erreur: 'pOut' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:508: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:508: erreur: expected `;' before 'pOutput' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:511: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:511: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:516: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:516: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:522: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbOutputGetFormat(void*, int*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:524: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:524: erreur: 'pOut' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:524: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:524: erreur: expected `;' before 'pOutput' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:526: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:526: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:531: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:531: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:537: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbOutputSetInputSource(void*, int)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:539: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:539: erreur: 'pOut' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:539: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:539: erreur: expected `;' before 'pOutput' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:542: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:542: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:547: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:547: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:553: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbOutputGetInputSource(void*, int*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:555: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:555: erreur: 'pOut' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:555: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:555: erreur: expected `;' before 'pOutput' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:557: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:557: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:562: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:562: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:568: erreur: 'ULONG' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbOutputGetCurrentTVStandard(void*, int*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:570: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:570: erreur: 'pOut' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:570: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:570: erreur: expected `;' before 'pOutput' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:572: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:572: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:577: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:577: erreur: 'devfbMutex' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:583: erreur: 'stm_display_status_t' has not been declared /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'int DevfbOtuputGetDisplayStatus(void*, int*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:585: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:585: erreur: 'pOut' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:585: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:585: erreur: expected `;' before 'pOutput' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:599: erreur: redefinition of 'void* DevfbCreateSurface' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.h:109: erreur: 'void* DevfbCreateSurface' previously defined here /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:599: erreur: 'ULONG' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:599: erreur: 'ULONG' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:600: erreur: 'ULONG' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:600: erreur: 'ULONG' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:601: erreur: 'ULONG' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:601: erreur: 'SURF_FMT' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'void DevfbFreeSurface(void*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:617: erreur: 'CGALSurf' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:617: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:617: erreur: expected `;' before 'surface' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: At global scope: /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:624: erreur: 'stm_field_t' does not name a type /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'void DevfbHandleBlitterInterrupt(int, void*, pt_regs*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:640: erreur: 'CDisplayDevice' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:640: erreur: 'devptr' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:640: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:640: erreur: expected `;' before 'pDev' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:642: erreur: 'ASSERTF' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'void DevfbHandleHDMIInterrupt(void*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:649: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:649: erreur: 'output' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:649: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:649: erreur: expected `;' before 'pOut' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:651: erreur: 'ASSERTF' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'void DevfbUpdateDisplay(void*, void*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:661: erreur: 'CDisplayDevice' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:661: erreur: 'devptr' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:661: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:661: erreur: expected `;' before 'pDev' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:662: erreur: 'COutput' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:662: erreur: 'output' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:662: erreur: expected primary-expression before ')' token /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:662: erreur: expected `;' before 'pOut' /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:664: erreur: 'ASSERTF' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'void* operator new(unsigned int)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:677: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'void operator delete(void*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:686: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'void* operator new [](unsigned int)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:695: erreur: 'g_pIOS' was not declared in this scope /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp: In function 'void operator delete [](void*)': /home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.cpp:704: erreur: 'g_pIOS' was not declared in this scope make[2]: *** [/home/bakhaled/kernelmodules/Linux/../Linux/kbuild/../../Linux/video/devfb.o] Erreur 1 make[1]: *** [_module_/home/bakhaled/kernelmodules/Linux/../Linux/kbuild] Erreur 2 make[1]: quittant le répertoire « /home/bakhaled/Documents/linux-2.6.17.14_stm22_0037 » make: *** [modules] Erreur 2 > > First of all, you'd start posting a log of the compilation process > containing the exact error messages... > > MfG, JBG > > -- > Jan-Benedict Glaw jb...@lu... +49-172-7608481 > Signature of: The real problem with C++ for kernel modules > is: > the second : the language just sucks. > -- Linus Torvalds > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.6 (GNU/Linux) > > iD8DBQFIka0vHb1edYOZ4bsRAiqRAJ9Es0v+0bcgV4hg7GvAMJvZTPDAygCfYBF6 > FXoz0cHpD9/tU1427iz3iQ8= > =AXTS > -----END PGP SIGNATURE----- > > -- amicalement khaled |
From: Jan-Benedict G. <jb...@lu...> - 2008-07-31 12:17:00
|
On Thu, 2008-07-31 09:54:25 +0200, Khaled Ben Amor <kha...@gm...> wrote: > Hi every body! > I use STMicroelectronics product (set top box with STLinux 2.2) and I want > to install the framebuffer driver. I followed instruction in STLinux.com to > build necessary kernel modules cfbXXXX.ko. But I invoke the makefile I get > errors in the txt file. > Has any one an idea what can I do? First of all, you'd start posting a log of the compilation process containing the exact error messages... MfG, JBG -- Jan-Benedict Glaw jb...@lu... +49-172-7608481 Signature of: The real problem with C++ for kernel modules is: the second : the language just sucks. -- Linus Torvalds |
From: Khaled B. A. <kha...@gm...> - 2008-07-31 07:54:27
|
Hi every body! I use STMicroelectronics product (set top box with STLinux 2.2) and I want to install the framebuffer driver. I followed instruction in STLinux.com to build necessary kernel modules cfbXXXX.ko. But I invoke the makefile I get errors in the txt file. Has any one an idea what can I do? -- amicalement khaled |
From: Gianluca <gia...@ep...> - 2008-07-29 15:21:11
|
Hello list, I know this question will be a little off-topic, but I think this list can help me in the right way. Our customer is asking an embedded solution with a LCD display 10.4" up to 640x480-18bits to play Xvid, DivX, mpeg4/h264 video stream. Actually we have an embedded system equipped with samsung s3c2442@300Mhz (64Mb SDRAM / 128Mb Flash) and it plays quite good 320x200 divx movies with pcm audio with mplayer using FBDev. It DOES NOT HAVE an FPU, so all decoding is done in software and it takes about 80% of cpu time! CPU is running at 300Mhz, Memory Bus at 100Mhz and external bus is running at 50Mhz. Now, one of our customers is asking a video-player to run a 25fps 640x480 video stream *with* an overlay option, just to display some characters on top of this display. Is it correct we need a ~16Mb/sec of cpu to memory bandwith? ((640x480 px times 2 (16bit)) times 25 (fps) ) We would like to re-use our existing hardware knowledge, so it is preferred to be linked against a samsung SoC processor thru an external bus expansion. Do you know some hardware manufacturers (linux driver compatible) that deliver such power? Best regards, -- Gianluca Renzi |
From: a a <ba...@ya...> - 2008-06-08 15:27:52
|
Hello all I have a problem in programming with frame buffer device as follows: i use the following code in my program for setting the color palettes: if ( 0> ioctl( fb, FBIOPUTCMAP, &p_cmap)) perror( "" ) ; but it does not work. What is wrong ? and how can i set the palettes of color ? Thanks Send instant messages to your online friends http://uk.messenger.yahoo.com |
From: Stephen K. <sr...@sr...> - 2008-05-23 22:43:12
|
> These ioctls control only TV output - MATROXFB_S_*TVO*CTRL. If you > want VGA gamma correction, do it in software - Matrox G400/450/550 is > 8bit only, so it is not very interesting to push this task to > hardware if you are using 24/32bpp mode. Thanks very much for clearing this up. I guess doing the correction in software is easy enough with 3x 8-bit look-up tables (if this is what you mean by '8bit only'?) But of course it's less than ideal to have to modify applications like this. Luckily the apps I care about most (fbxine and mplayer) already support software gamma correction, and the CPU overhead isn't too great, so no need to install an X server just yet. :-) Thanks again. Stephen |
From: Petr V. <van...@vc...> - 2008-05-20 10:27:00
|
Stephen Kell wrote: > I'm trying to set gamma correction on the primary VGA output of my > Matrox G400 dual-head, using matroxfb with kernel 2.6.24. > > Using matroxset, the ioctl completes successfully, but there is no > effect. > > stephen@alonzo:~$ strace matroxset -f /dev/fb0 -o 0 -c 0x980910 18 2>&1 | grep ioctl > ioctl(3, MATROXFB_G_TVOCTRL or VIDIOC_G_CTRL, 0xbfaec7d4) = 0 > ioctl(3, MATROXFB_S_TVOCTRL or VIDIOC_S_CTRL, 0xbfaec7d4) = 0 > > I've tried other controls (contrast, brightness etc.), with a range of > arguments, and none has any visible effect. > > Looking in matroxfb_base.c, it looks like the implementation of > VIDIOC_S_CTRL is hardwired to use output 1. However, if I try with > CRTC1 duplicated to output 1 (using matroxset -f /dev/fb0 -o 1 128), it > still shows no effect. > > Is this a bug, or am I missing something? Thanks for any help. These ioctls control only TV output - MATROXFB_S_*TVO*CTRL. If you want VGA gamma correction, do it in software - Matrox G400/450/550 is 8bit only, so it is not very interesting to push this task to hardware if you are using 24/32bpp mode. Petr |
From: Stephen K. <sr...@sr...> - 2008-05-18 20:58:59
|
I'm trying to set gamma correction on the primary VGA output of my Matrox G400 dual-head, using matroxfb with kernel 2.6.24. Using matroxset, the ioctl completes successfully, but there is no effect. stephen@alonzo:~$ strace matroxset -f /dev/fb0 -o 0 -c 0x980910 18 2>&1 | grep ioctl ioctl(3, MATROXFB_G_TVOCTRL or VIDIOC_G_CTRL, 0xbfaec7d4) = 0 ioctl(3, MATROXFB_S_TVOCTRL or VIDIOC_S_CTRL, 0xbfaec7d4) = 0 I've tried other controls (contrast, brightness etc.), with a range of arguments, and none has any visible effect. Looking in matroxfb_base.c, it looks like the implementation of VIDIOC_S_CTRL is hardwired to use output 1. However, if I try with CRTC1 duplicated to output 1 (using matroxset -f /dev/fb0 -o 1 128), it still shows no effect. Is this a bug, or am I missing something? Thanks for any help. Stephen |
From: Witold F. <wi...@po...> - 2008-05-03 12:51:24
|
Hi, aty18fb doesn't work on 2.6.25. It didn't work on 2.6.24.5, either. It worked on 2.6.24.3. aty128fb is compiled as a module. At http://republika.pl/rkd/dump_config.tar.bz2 there are my config and dump.png. The screen doesn't look exactly like this, but similar, especially top part of the screen. How can I make it work? -- Witek |
From: James L. <ja...@ak...> - 2008-03-21 23:53:43
|
Look for ezfb-10.00 here: http://freshmeat.net/ Released 03-21-2008 If you follow their links to my site, I get more manna or chi or something. I just submitted the new release, so it won't appear until they review it. Well, here it is! This is the full version of LaserBoy in C++ source code! It compiles and runs on just about any Linux machine running a frame buffer enabled kernel. That would include a session of Knoppix running in a VirtualPC on a Windows Machine! LaserBoy is a full featured laser vector art workstation application capable of reading, drawing, generating, animating, manipulating, writing, etc... ILDA, DXF, Bitmap, palette, C++, and WAVE files. Most importantly, LaserBoy generates standard multi-channel wave files, which, when played from an appropriate sound device (in any OS) will produce the complex signals necessary to directly drive a standard RGB ILDA laser projection system. It is a hardware independent, industry standard file format, 24-bit color, open source software solution for laser projection. I plan to continue to add to this project, as time permits. The next big step is to port it to SDL (http://www.libsdl.org/) so that it may run an just about any OS. If you are interested in this project, please feel free to contact me directly. Contact information is on my website. James Lehman VP / CTO Extra Stimulus Inc. |
From: Antonio N. <an...@ie...> - 2008-02-16 23:52:09
|
Hi all, as a user of a fb driver I would like to write an application which scales an image from its original size to the screen size. To do so I'd like to make use of the hw acceleration capabilities of my card. At the moment I can mmap the hw engine getting access to the registers, but unfortunately I don't know the behaviour of the basic hw operations. I've been googling a lot but I'm not able to find the appropiate document. I would appreciate if someone could give a hint in this sense. Does anyone know any good ebook or howto? What I need is a general document. By the way, I'm using viafb from viaarena and the card is a VIA CN700. Thanks a lot! Antonio |
From: James L. <ja...@ak...> - 2008-01-06 21:02:17
|
If you get this: http://freshmeat.net/projects/ezfb/ You can do a "grab" of the screen. As far as I know, Knoppix is always 16 bit color. EZFB will give you the nearest thing as a 24 bit bitmap. James. :o) ----- Original Message ----- From: "Peter Toft" <pt...@li...> To: <Lin...@li...> Sent: Sunday, January 06, 2008 3:55 PM Subject: [Linux-fbdev-users] cat /dev/fb > file; convert? > Hi there > > If I dump the Linux framebuffer from e.g. a Knoppix CD, running 1024x768 > 32 bit; cat /dev/fb > framebuffer_output > Then I get http://petertoft.dk/framebuffer_output > The file size is as expected, however what is the easiest way to convert > such a raw image to e.g. png/jpeg or alike. I would guess that such Linux > utilities exist already... > > Best > > -- > Peter Toft, Ph.D. [pt...@li...] http://petertoft.dk > Følg min Linux-blog på http://www.version2.dk/blogs/petertoft > ---------------------------------------------------------------------------- ---- > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ ---------------------------------------------------------------------------- ---- > _______________________________________________ > Linux-fbdev-users mailing list > Lin...@li... > https://lists.sourceforge.net/lists/listinfo/linux-fbdev-users > |
From: Peter T. <pt...@li...> - 2008-01-06 20:55:54
|
Hi there If I dump the Linux framebuffer from e.g. a Knoppix CD, running 1024x768 32 bit; cat /dev/fb > framebuffer_output Then I get http://petertoft.dk/framebuffer_output The file size is as expected, however what is the easiest way to convert such a raw image to e.g. png/jpeg or alike. I would guess that such Linux utilities exist already... Best -- Peter Toft, Ph.D. [pt...@li...] http://petertoft.dk Følg min Linux-blog på http://www.version2.dk/blogs/petertoft |
From: Peter T. <pt...@li...> - 2008-01-03 22:36:27
|
Hi all Can anyone help me on setting up the Linux X fbdev on a Compulab x270? There is options for the kernel boot e.g. : bootos "root=/dev/nand monitor=1 bpp=8" however the scan frequency ends up as 62 Hz - where I like to see 60 Hz. (sorry about posting to the -devel list yesterday - the question belongs to this list) Best -- Peter Toft, Ph.D. [pt...@li...] http://petertoft.dk Følg min Linux-blog på http://www.version2.dk/blogs/petertoft |