Changes in kernel/genarch/src/multiboot/multiboot2.c [c8cbd39:3009164] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/multiboot/multiboot2.c
rc8cbd39 r3009164 41 41 42 42 #define MULTIBOOT2_TAG_ALIGN 8 43 44 static void multiboot2_cmdline(const multiboot2_cmdline_t *module) 45 { 46 multiboot_cmdline(module->string); 47 } 43 48 44 49 static void multiboot2_module(const multiboot2_module_t *module) … … 117 122 while (tag->type != MULTIBOOT2_TAG_TERMINATOR) { 118 123 switch (tag->type) { 124 case MULTIBOOT2_TAG_CMDLINE: 125 multiboot2_cmdline(&tag->cmdline); 126 break; 119 127 case MULTIBOOT2_TAG_MODULE: 120 128 multiboot2_module(&tag->module);
Note:
See TracChangeset
for help on using the changeset viewer.