Changeset a35b458 in mainline for kernel/arch/ia32/src/ia32.c
- Timestamp:
- 2018-03-02T20:10:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f1380b7
- Parents:
- 3061bc1
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:38:31)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:10:49)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/ia32.c
r3061bc1 ra35b458 92 92 multiboot_info_parse(signature, (multiboot_info_t *) info); 93 93 multiboot2_info_parse(signature, (multiboot2_info_t *) info); 94 94 95 95 #ifdef CONFIG_SMP 96 96 /* Copy AP bootstrap routines below 1 MB. */ … … 107 107 interrupt_init(); 108 108 bios_init(); 109 109 110 110 /* PIC */ 111 111 i8259_init(); … … 120 120 /* Initialize IRQ routing */ 121 121 irq_init(IRQ_COUNT, IRQ_COUNT); 122 122 123 123 /* hard clock */ 124 124 i8254_init(); 125 125 126 126 #if (defined(CONFIG_FB) || defined(CONFIG_EGA)) 127 127 bool bfb = false; 128 128 #endif 129 129 130 130 #ifdef CONFIG_FB 131 131 bfb = bfb_init(); 132 132 #endif 133 133 134 134 #ifdef CONFIG_EGA 135 135 if (!bfb) { … … 139 139 } 140 140 #endif 141 141 142 142 /* Merge all memory zones to 1 big zone */ 143 143 zone_merge_all(); … … 220 220 } 221 221 #endif 222 222 223 223 if (irqs_info != NULL) 224 224 sysinfo_set_item_val(irqs_info, NULL, true);
Note:
See TracChangeset
for help on using the changeset viewer.