Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 1836 → Rev 1837

/trunk/kernel/arch/sparc64/src/console.c
58,7 → 58,7
kbd_init();
fb_init(bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height,
bootinfo.screen.bpp, bootinfo.screen.scanline);
bootinfo.screen.bpp, bootinfo.screen.scanline, true);
}
 
/** Kernel thread for polling keyboard.
/trunk/kernel/arch/ppc32/src/ppc32.c
70,7 → 70,7
void arch_post_mm_init(void)
{
if (config.cpu_active == 1) {
fb_init(bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, bootinfo.screen.bpp, bootinfo.screen.scanline);
fb_init(bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, bootinfo.screen.bpp, bootinfo.screen.scanline, false);
/* Initialize PIC */
pic_init(bootinfo.keyboard.addr, PAGE_SIZE);
/trunk/kernel/arch/ppc64/src/ppc64.c
26,7 → 26,7
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
/** @addtogroup ppc64
/** @addtogroup ppc64
* @{
*/
/** @file
68,7 → 68,7
void arch_post_mm_init(void)
{
if (config.cpu_active == 1) {
fb_init(bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, bootinfo.screen.bpp, bootinfo.screen.scanline);
fb_init(bootinfo.screen.addr, bootinfo.screen.width, bootinfo.screen.height, bootinfo.screen.bpp, bootinfo.screen.scanline, false);
/* Merge all zones to 1 big zone */
zone_merge_all();
110,6 → 110,5
{
}
 
/** @}
/** @}
*/
 
/trunk/kernel/arch/mips32/src/mips32.c
127,7 → 127,7
void arch_post_mm_init(void)
{
#ifdef CONFIG_FB
fb_init(0x12000000, 640, 480, 24, 1920); // gxemul framebuffer
fb_init(0x12000000, 640, 480, 24, 1920, false); // gxemul framebuffer
#endif
sysinfo_set_item_val("machine." STRING(MACHINE),NULL,1);
}
/trunk/kernel/arch/ia32/src/drivers/vesa.c
67,7 → 67,7
 
void vesa_init(void)
{
fb_init(vesa_ph_addr, vesa_width, vesa_height, vesa_bpp, vesa_scanline);
fb_init(vesa_ph_addr, vesa_width, vesa_height, vesa_bpp, vesa_scanline, false);
}
 
#endif