Changeset bf25efb in mainline for kernel/arch/ia32/src/boot/cboot.c


Ignore:
Timestamp:
2009-03-01T19:35:58Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0d5a50c
Parents:
4b241f3
Message:

Rewrite rest of multiboot info parsing to C.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/src/boot/cboot.c

    r4b241f3 rbf25efb  
    5353        uint32_t i;
    5454
    55         flags = mi->flags;
     55        if (signature == MULTIBOOT_LOADER_MAGIC) {
     56                flags = mi->flags;
     57        } else {
     58                /* No multiboot info available. */
     59                flags = 0;
     60        }
    5661
    5762        /* Copy module information. */
Note: See TracChangeset for help on using the changeset viewer.