Changeset a55f97f in mainline
- Timestamp:
- 2005-07-21T14:27:13Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f5e3d1da
- Parents:
- f7a13b9
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/Makefile.inc
rf7a13b9 ra55f97f 39 39 arch/cpu/cpu.c \ 40 40 arch/mm/frame.c \ 41 arch/mm/memory_init.c \ 41 42 arch/mm/page.c \ 42 43 arch/mm/tlb.c \ -
arch/ia32/src/mm/frame.c
rf7a13b9 ra55f97f 49 49 50 50 for (i=e820counter;i>0;i--) { 51 // printf("E820 base: %Q size: %Q type: %L \n",e820table[i-1].base_address,e820table[i-1].size,e820table[i-1].type);51 // printf("E820 base: %Q size: %Q type: %L \n",e820table[i-1].base_address,e820table[i-1].size,e820table[i-1].type); 52 52 if (e820table[i-1].type!=MEMMAP_MEMORY_AVAILABLE) { 53 53 frame_region_not_free(e820table[i-1].base_address,e820table[i-1].size); -
src/main/main.c
rf7a13b9 ra55f97f 48 48 #include <smp/smp.h> 49 49 50 #include <arch/mm/memory_init.h> 50 51 #include <mm/frame.h> 51 52 #include <mm/page.h> … … 99 100 100 101 config.base = hardcoded_load_address; 101 config.memory_size = CONFIG_MEMORY_SIZE;102 config.memory_size = get_memory_size(); 102 103 config.kernel_size = hardcoded_ktext_size + hardcoded_kdata_size + CONFIG_HEAP_SIZE + CONFIG_STACK_SIZE; 103 104
Note:
See TracChangeset
for help on using the changeset viewer.