- Timestamp:
- 2018-10-01T18:36:42Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5cef315
- Parents:
- 1938b381
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-09-29 16:13:55)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-10-01 18:36:42)
- Location:
- boot
- Files:
-
- 1 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/src/main.c
r1938b381 r3f7fe9e 35 35 36 36 #include <arch/main.h> 37 #include <arch/types.h> 37 38 #include <arch/asm.h> 38 39 #include <arch/mm.h> -
boot/arch/arm32/src/mm.c
r1938b381 r3f7fe9e 38 38 #include <arch/mm.h> 39 39 #include <arch/cp15.h> 40 #include <arch/types.h> 40 41 41 42 #ifdef PROCESSOR_ARCH_armv7_a -
boot/arch/mips32/src/main.c
r1938b381 r3f7fe9e 30 30 #include <arch/arch.h> 31 31 #include <arch/asm.h> 32 #include <arch/types.h> 32 33 #include <halt.h> 33 34 #include <printf.h> -
boot/arch/ppc32/include/arch/main.h
r1938b381 r3f7fe9e 33 33 #include <balloc.h> 34 34 #include <genarch/ofw_tree.h> 35 #include <arch/types.h> 35 36 36 37 typedef struct { -
boot/arch/ppc32/src/main.c
r1938b381 r3f7fe9e 30 30 #include <arch/arch.h> 31 31 #include <arch/asm.h> 32 #include <arch/types.h> 32 33 #include <genarch/ofw.h> 33 34 #include <genarch/ofw_tree.h> -
boot/arch/riscv64/src/main.c
r1938b381 r3f7fe9e 32 32 #include <arch/ucb.h> 33 33 #include <arch/mm.h> 34 #include <arch/types.h> 34 35 #include <version.h> 35 36 #include <stddef.h> … … 64 65 bootinfo.memmap.zones[0].size = PHYSMEM_SIZE; 65 66 66 printf("\nMemory statistics (total % lluMB, starting at %p)\n\n",67 printf("\nMemory statistics (total %" PRIu64 " MB, starting at %p)\n\n", 67 68 bootinfo.memmap.total >> 20, (void *) bootinfo.physmem_start); 68 69 printf(" %p: boot info structure\n", &bootinfo); -
boot/arch/sparc64/include/arch/main.h
r1938b381 r3f7fe9e 33 33 #include <balloc.h> 34 34 #include <genarch/ofw_tree.h> 35 #include <arch/types.h> 35 36 36 37 typedef struct { -
boot/genarch/include/genarch/ofw.h
r1938b381 r3f7fe9e 33 33 #include <stddef.h> 34 34 #include <stdint.h> 35 #include <_bits/native.h> 35 36 36 37 #define MEMMAP_MAX_RECORDS 32
Note:
See TracChangeset
for help on using the changeset viewer.