Changeset b4fa652 in mainline for kernel/arch
- Timestamp:
- 2006-08-04T08:21:30Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b006a2c8
- Parents:
- d7e3fa66
- Location:
- kernel/arch
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/drivers/vesa.c
rd7e3fa66 rb4fa652 68 68 void vesa_init(void) 69 69 { 70 fb_init(vesa_ph_addr, vesa_width, vesa_height, vesa_bpp, vesa_scanline );70 fb_init(vesa_ph_addr, vesa_width, vesa_height, vesa_bpp, vesa_scanline, false); 71 71 } 72 72 -
kernel/arch/mips32/src/mips32.c
rd7e3fa66 rb4fa652 128 128 { 129 129 #ifdef CONFIG_FB 130 fb_init(0x12000000, 640, 480, 24, 1920 ); // gxemul framebuffer130 fb_init(0x12000000, 640, 480, 24, 1920, false); // gxemul framebuffer 131 131 #endif 132 132 sysinfo_set_item_val("machine." STRING(MACHINE),NULL,1); -
kernel/arch/ppc32/src/ppc32.c
rd7e3fa66 rb4fa652 71 71 { 72 72 if (config.cpu_active == 1) { 73 fb_init(bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, bootinfo.screen.bpp, bootinfo.screen.scanline );73 fb_init(bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, bootinfo.screen.bpp, bootinfo.screen.scanline, false); 74 74 75 75 /* Initialize PIC */ -
kernel/arch/ppc64/src/ppc64.c
rd7e3fa66 rb4fa652 27 27 */ 28 28 29 29 /** @addtogroup ppc64 30 30 * @{ 31 31 */ … … 69 69 { 70 70 if (config.cpu_active == 1) { 71 fb_init(bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, bootinfo.screen.bpp, bootinfo.screen.scanline );71 fb_init(bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, bootinfo.screen.bpp, bootinfo.screen.scanline, false); 72 72 73 73 /* Merge all zones to 1 big zone */ … … 111 111 } 112 112 113 113 /** @} 114 114 */ 115 -
kernel/arch/sparc64/src/console.c
rd7e3fa66 rb4fa652 59 59 60 60 fb_init(bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, 61 bootinfo.screen.bpp, bootinfo.screen.scanline );61 bootinfo.screen.bpp, bootinfo.screen.scanline, true); 62 62 } 63 63
Note:
See TracChangeset
for help on using the changeset viewer.