mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-24 07:46:42 +00:00
Build pci_drv for framebuffer test / fix warning
This commit is contained in:
parent
2283536b27
commit
97e4470da6
@ -2,7 +2,7 @@
|
||||
# Build
|
||||
#
|
||||
|
||||
build { core init test/framebuffer drivers/framebuffer drivers/timer }
|
||||
build { core init test/framebuffer drivers/framebuffer drivers/pci drivers/timer }
|
||||
|
||||
create_boot_directory
|
||||
|
||||
|
@ -35,14 +35,11 @@ int main()
|
||||
Framebuffer::Mode const fb_mode = fb.mode();
|
||||
|
||||
/* write pixeldata to framebuffer */
|
||||
void * fb_base = env()->rm_session()->attach(fb_ds_cap);
|
||||
unsigned j;
|
||||
unsigned const fb_size = (unsigned)(mode.width()*mode.height())/2;
|
||||
for(unsigned i = 0; i < fb_size; i++)
|
||||
{
|
||||
*(((unsigned volatile *)fb_base) + i) = j;
|
||||
j++;
|
||||
}
|
||||
void *fb_base = env()->rm_session()->attach(fb_ds_cap);
|
||||
unsigned const fb_size = (unsigned)(mode.width()*mode.height())/2;
|
||||
for (unsigned i = 0; i < fb_size; i++)
|
||||
*(((unsigned volatile *)fb_base) + i) = i;
|
||||
|
||||
fb.refresh(0, 0, fb_mode.width(), fb_mode.height());
|
||||
printf("--- end ---\n");
|
||||
while(1);
|
||||
|
Loading…
Reference in New Issue
Block a user