- Timestamp:
- 2019-06-05T06:37:17Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f3f4149
- Parents:
- 77918b0
- Location:
- kernel/arch/mips32
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/mips32/include/arch/arch.h
r77918b0 rdabaa83 42 42 #define CPUMAP_MAX_RECORDS 32 43 43 #define BOOTINFO_TASK_NAME_BUFLEN 32 44 #define BOOTINFO_BOOTARGS_BUFLEN 256 44 45 45 46 extern size_t cpu_count; … … 66 67 uint32_t cpumap; 67 68 taskmap_t taskmap; 69 char bootargs[BOOTINFO_BOOTARGS_BUFLEN]; 68 70 } bootinfo_t; 69 71 -
kernel/arch/mips32/src/mach/malta/malta.c
r77918b0 rdabaa83 46 46 #include <sysinfo/sysinfo.h> 47 47 #include <log.h> 48 #include <str.h>49 48 50 49 static void malta_init(void); … … 116 115 NULL, NULL, tty_out_ptr); 117 116 #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));121 117 } 122 118 -
kernel/arch/mips32/src/mips32.c
r77918b0 rdabaa83 107 107 #endif 108 108 109 str_cpy(bargs, CONFIG_BOOT_ARGUMENTS_BUFLEN, bootinfo->bootargs); 110 109 111 /* Initialize machine_ops pointer. */ 110 112 machine_ops_init();
Note:
See TracChangeset
for help on using the changeset viewer.