Changeset 8060a24c in mainline
- Timestamp:
- 2006-06-10T20:31:55Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e5dc7b8
- Parents:
- 0182a665
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/interrupt.c
r0182a665 r8060a24c 186 186 static void ipc_int(int n, istate_t *istate) 187 187 { 188 ipc_irq_send_notif(n-IVT_IRQBASE); 188 189 trap_virtual_eoi(); 189 ipc_irq_send_notif(n-IVT_IRQBASE);190 190 } 191 191 … … 196 196 if (irq == IRQ_CLK) 197 197 return; 198 trap_virtual_enable_irqs(1 << irq); 198 199 exc_register(IVT_IRQBASE+irq, "ipc_int", ipc_int); 199 200 } -
genarch/src/fb/fb.c
r0182a665 r8060a24c 371 371 columns = x / COL_WIDTH; 372 372 373 sysinfo_set_item_val("fb", NULL, true); 374 sysinfo_set_item_val("fb.kind", NULL, 1); 375 sysinfo_set_item_val("fb.width", NULL, xres); 376 sysinfo_set_item_val("fb.height", NULL, yres); 377 sysinfo_set_item_val("fb.bpp", NULL, bpp); 378 sysinfo_set_item_val("fb.scanline", NULL, scan); 379 sysinfo_set_item_val("fb.address.physical", NULL, addr); 380 373 381 /* Allocate double buffer */ 374 382 int totsize = scanline * yres; … … 406 414 stdout = &framebuffer; 407 415 408 sysinfo_set_item_val("fb", NULL, true); 409 sysinfo_set_item_val("fb.kind", NULL, 1); 410 sysinfo_set_item_val("fb.width", NULL, xres); 411 sysinfo_set_item_val("fb.height", NULL, yres); 412 sysinfo_set_item_val("fb.bpp", NULL, bpp); 413 sysinfo_set_item_val("fb.scanline", NULL, scan); 414 sysinfo_set_item_val("fb.address.physical", NULL, addr); 415 416 } 416 }
Note:
See TracChangeset
for help on using the changeset viewer.