Changeset 7a99507 in mainline for boot/arch/arm32
- Timestamp:
- 2017-06-04T21:11:35Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9780584
- Parents:
- d735e2e
- Location:
- boot/arch/arm32
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/include/mm.h
rd735e2e r7a99507 42 42 #ifndef BOOT_arm32__MM_H 43 43 #define BOOT_arm32__MM_H 44 45 #include <stddef.h>46 44 47 45 /** Describe "section" page table entry (one-level paging with 1 MB sized pages). */ -
boot/arch/arm32/include/types.h
rd735e2e r7a99507 37 37 #define BOOT_arm32_TYPES_H 38 38 39 #include <arch/common.h> 40 39 41 #define TASKMAP_MAX_RECORDS 32 40 42 #define BOOTINFO_TASK_NAME_BUFLEN 32 -
boot/arch/arm32/src/mm.c
rd735e2e r7a99507 34 34 */ 35 35 36 #include <std def.h>36 #include <stdint.h> 37 37 #include <arch/asm.h> 38 38 #include <arch/mm.h> -
boot/arch/arm32/src/putchar.c
rd735e2e r7a99507 36 36 */ 37 37 38 #include <stddef.h>39 38 #include <arch/main.h> 40 39 #include <putchar.h> 40 #include <stddef.h> 41 #include <stdint.h> 41 42 #include <str.h> 42 43
Note:
See TracChangeset
for help on using the changeset viewer.