Changeset 69c31abc in mainline
- Timestamp:
- 2019-04-06T13:06:40Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 46e886f
- Parents:
- 3d0fd0d
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/mips32/Makefile.inc
r3d0fd0d r69c31abc 54 54 RD_DRVS_ESSENTIAL += \ 55 55 platform/malta \ 56 intctl/i8259 \ 56 57 block/ata_bd \ 57 58 bus/pci/pciintel \ 58 59 bus/isa \ 59 60 char/i8042 \ 61 char/ns8250 \ 60 62 hid/ps2mouse \ 61 63 hid/xtkbd -
kernel/arch/mips32/src/mach/malta/malta.c
r3d0fd0d r69c31abc 44 44 #include <stdbool.h> 45 45 #include <byteorder.h> 46 #include <sysinfo/sysinfo.h> 46 47 #include <log.h> 48 #include <str.h> 47 49 48 50 static void malta_init(void); … … 100 102 101 103 i8259_init((i8259_t *) PIC0_BASE, (i8259_t *) PIC1_BASE, 0); 104 sysinfo_set_item_val("i8259", NULL, true); 102 105 103 106 int_handler[INT_HW0] = malta_isa_irq_handler; … … 113 116 NULL, NULL, tty_out_ptr); 114 117 #endif 118 119 const char *args = "console=devices/\\hw\\pci0\\00:0a.0\\com1\\a"; 120 str_ncpy(bargs, CONFIG_BOOT_ARGUMENTS_BUFLEN, args, str_length(args)); 115 121 } 116 122
Note:
See TracChangeset
for help on using the changeset viewer.