Changes in / [c40f385:38650da] in mainline


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.grub

    rc40f385 r38650da  
    8989                        echo "  $(MULTIBOOT_CMD) /boot/$$module" >> $(BOOT_CONFIG) ; \
    9090                else \
    91                         echo "  $(MODULE_CMD) /boot/$$module /boot/$$module" >> $(BOOT_CONFIG) ; \
     91                        echo "  $(MODULE_CMD) /boot/$$module" >> $(BOOT_CONFIG) ; \
    9292                fi \
    9393        done
  • kernel/generic/src/main/main.c

    rc40f385 r38650da  
    262262         * Create the first thread.
    263263         */
    264         thread_t *kinit_thread =
    265             thread_create(kinit, NULL, kernel, 0, "kinit", true);
     264        thread_t *kinit_thread
     265                = thread_create(kinit, NULL, kernel, 0, "kinit", true);
    266266        if (!kinit_thread)
    267267                panic("Cannot create kinit thread.");
Note: See TracChangeset for help on using the changeset viewer.