Changeset 42744880 in mainline for arch/sparc64
- Timestamp:
- 2006-02-08T22:29:20Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 85dc2e7
- Parents:
- 89298e3
- Location:
- arch/sparc64
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/sparc64/_link.ld.in
r89298e3 r42744880 27 27 *(.sbss); 28 28 hardcoded_ktext_size = .; 29 LONG(ktext_end - ktext_start);29 QUAD(ktext_end - ktext_start); 30 30 hardcoded_kdata_size = .; 31 LONG(kdata_end - kdata_start);31 QUAD(kdata_end - kdata_start); 32 32 hardcoded_load_address = .; 33 33 QUAD(0x4000); -
arch/sparc64/src/mm/frame.c
r89298e3 r42744880 30 30 #include <mm/frame.h> 31 31 #include <config.h> 32 #include <align.h> 32 33 33 34 void frame_arch_init(void) 34 35 { 35 zone_create(0, config.memory_size >> FRAME_WIDTH, 1, 0);36 zone_create(0, config.memory_size >> FRAME_WIDTH, ADDR2PFN(ALIGN_UP(config.base + config.kernel_size + CONFIG_STACK_SIZE, FRAME_SIZE)), 0); 36 37 37 38 /*
Note:
See TracChangeset
for help on using the changeset viewer.