Changeset dd80fc6 in mainline for arch/ia32/src/pm.c


Ignore:
Timestamp:
2005-09-03T22:26:31Z (20 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5eb1379
Parents:
5260478
Message:

GRUB basic booting (IA-32)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/pm.c

    r5260478 rdd80fc6  
    7171
    7272/* gdtr is changed by kmp before next CPU is initialized */
    73 struct ptr_16_32 bsp_bootstrap_gdtr __attribute__ ((section ("K_DATA_START"))) = { .limit = sizeof(gdt), .base = KA2PA((__address) gdt - BOOT_OFFSET) };
    74 struct ptr_16_32 ap_bootstrap_gdtr __attribute__ ((section ("K_DATA_START"))) = { .limit = sizeof(gdt), .base = KA2PA((__address) gdt) };
     73struct ptr_16_32 real_bootstrap_gdtr __attribute__ ((section ("K_DATA_START"))) = { .limit = sizeof(gdt), .base = KA2PA((__address) gdt - BOOT_OFFSET) };
     74struct ptr_16_32 protected_bootstrap_gdtr = { .limit = sizeof(gdt), .base = KA2PA((__address) gdt) };
    7575struct ptr_16_32 gdtr = { .limit = sizeof(gdt), .base = (__address) gdt };
    7676
Note: See TracChangeset for help on using the changeset viewer.