Changeset de1712e in mainline
- Timestamp:
- 2017-06-04T19:47:46Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d735e2e
- Parents:
- aaae6d9
- Files:
-
- 36 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/arm32/include/mm.h
raaae6d9 rde1712e 43 43 #define BOOT_arm32__MM_H 44 44 45 #include < typedefs.h>45 #include <stddef.h> 46 46 47 47 /** Describe "section" page table entry (one-level paging with 1 MB sized pages). */ -
boot/arch/arm32/src/mm.c
raaae6d9 rde1712e 34 34 */ 35 35 36 #include < typedefs.h>36 #include <stddef.h> 37 37 #include <arch/asm.h> 38 38 #include <arch/mm.h> -
boot/arch/arm32/src/putchar.c
raaae6d9 rde1712e 36 36 */ 37 37 38 #include < typedefs.h>38 #include <stddef.h> 39 39 #include <arch/main.h> 40 40 #include <putchar.h> -
boot/arch/ia64/include/pal.h
raaae6d9 rde1712e 31 31 32 32 #include <arch/types.h> 33 #include < typedefs.h>33 #include <stddef.h> 34 34 35 35 /* -
boot/arch/ia64/include/sal.h
raaae6d9 rde1712e 31 31 32 32 #include <arch/types.h> 33 #include < typedefs.h>33 #include <stddef.h> 34 34 35 35 /* -
boot/arch/ia64/src/putchar.c
raaae6d9 rde1712e 27 27 */ 28 28 29 #include < typedefs.h>29 #include <stddef.h> 30 30 #include <arch/arch.h> 31 31 #include <putchar.h> -
boot/arch/ia64/src/ski.c
raaae6d9 rde1712e 28 28 29 29 #include <arch/ski.h> 30 #include < typedefs.h>30 #include <stddef.h> 31 31 32 32 #define SKI_INIT_CONSOLE 20 -
boot/arch/mips32/src/putchar.c
raaae6d9 rde1712e 27 27 */ 28 28 29 #include < typedefs.h>29 #include <stddef.h> 30 30 #include <arch/arch.h> 31 31 #include <putchar.h> -
boot/arch/ppc32/include/asm.h
raaae6d9 rde1712e 30 30 #define BOOT_ppc32_ASM_H_ 31 31 32 #include < typedefs.h>32 #include <stddef.h> 33 33 #include <arch/main.h> 34 34 -
boot/arch/ppc32/include/main.h
raaae6d9 rde1712e 30 30 #define BOOT_ppc32_MAIN_H_ 31 31 32 #include < typedefs.h>32 #include <stddef.h> 33 33 #include <balloc.h> 34 34 #include <genarch/ofw_tree.h> -
boot/arch/ppc32/src/ofw.c
raaae6d9 rde1712e 28 28 29 29 #include <genarch/ofw.h> 30 #include < typedefs.h>30 #include <stddef.h> 31 31 #include <putchar.h> 32 32 #include <str.h> -
boot/arch/riscv64/include/asm.h
raaae6d9 rde1712e 30 30 #define BOOT_riscv64_ASM_H_ 31 31 32 #include < typedefs.h>32 #include <stddef.h> 33 33 34 34 extern void jump_to_kernel(void *, uintptr_t) -
boot/arch/riscv64/include/ucb.h
raaae6d9 rde1712e 36 36 */ 37 37 38 #include < typedefs.h>38 #include <stddef.h> 39 39 40 40 #define CSR_MTOHOST 0x780 -
boot/arch/riscv64/src/main.c
raaae6d9 rde1712e 31 31 #include <arch/asm.h> 32 32 #include <version.h> 33 #include < typedefs.h>33 #include <stddef.h> 34 34 #include <printf.h> 35 35 #include <macros.h> -
boot/arch/riscv64/src/putchar.c
raaae6d9 rde1712e 27 27 */ 28 28 29 #include < typedefs.h>29 #include <stddef.h> 30 30 #include <arch/arch.h> 31 31 #include <putchar.h> -
boot/arch/sparc64/include/asm.h
raaae6d9 rde1712e 31 31 #define BOOT_sparc64_ASM_H_ 32 32 33 #include < typedefs.h>33 #include <stddef.h> 34 34 35 35 extern void jump_to_kernel(uintptr_t physmem_start, bootinfo_t *bootinfo, -
boot/arch/sparc64/include/main.h
raaae6d9 rde1712e 30 30 #define BOOT_sparc64_MAIN_H_ 31 31 32 #include < typedefs.h>32 #include <stddef.h> 33 33 #include <balloc.h> 34 34 #include <genarch/ofw_tree.h> -
boot/arch/sparc64/include/ofw.h
raaae6d9 rde1712e 30 30 #define BOOT_sparc64_OFW_H_ 31 31 32 #include < typedefs.h>32 #include <stddef.h> 33 33 34 34 #define OFW_ADDRESS_CELLS 2 -
boot/arch/sparc64/src/ofw.c
raaae6d9 rde1712e 36 36 #include <arch/ofw.h> 37 37 #include <genarch/ofw.h> 38 #include < typedefs.h>38 #include <stddef.h> 39 39 #include <printf.h> 40 40 #include <halt.h> -
boot/genarch/include/ofw.h
raaae6d9 rde1712e 30 30 #define BOOT_OFW_H_ 31 31 32 #include < typedefs.h>32 #include <stddef.h> 33 33 #include <stdarg.h> 34 34 -
boot/genarch/include/ofw_tree.h
raaae6d9 rde1712e 30 30 #define BOOT_OFW_TREE_H_ 31 31 32 #include < typedefs.h>32 #include <stddef.h> 33 33 #include <genarch/ofw.h> 34 34 -
boot/genarch/src/efi.c
raaae6d9 rde1712e 29 29 #include <genarch/efi.h> 30 30 #include <arch/types.h> 31 #include < typedefs.h>31 #include <stddef.h> 32 32 33 33 void *efi_vendor_table_find(efi_system_table_t *st, efi_guid_t guid) -
boot/genarch/src/multiplication.c
raaae6d9 rde1712e 33 33 34 34 #include <genarch/multiplication.h> 35 #include < typedefs.h>35 #include <stddef.h> 36 36 37 37 /** Set 1 to return INT64_MAX or INT64_MIN on overflow */ -
boot/genarch/src/ofw.c
raaae6d9 rde1712e 31 31 #include <genarch/ofw.h> 32 32 #include <printf.h> 33 #include < typedefs.h>33 #include <stddef.h> 34 34 #include <str.h> 35 35 #include <align.h> -
boot/genarch/src/ofw_tree.c
raaae6d9 rde1712e 30 30 #include <genarch/ofw.h> 31 31 #include <arch/ofw.h> 32 #include < typedefs.h>32 #include <stddef.h> 33 33 #include <str.h> 34 34 #include <balloc.h> -
boot/generic/include/balloc.h
raaae6d9 rde1712e 30 30 #define BOOT_BALLOC_H_ 31 31 32 #include < typedefs.h>32 #include <stddef.h> 33 33 34 34 typedef struct { -
boot/generic/include/inflate.h
raaae6d9 rde1712e 30 30 #define BOOT_INFLATE_H_ 31 31 32 #include < typedefs.h>32 #include <stddef.h> 33 33 34 34 extern int inflate(void *, size_t, void *, size_t); -
boot/generic/include/memstr.h
raaae6d9 rde1712e 33 33 #define BOOT_MEMSTR_H_ 34 34 35 #include < typedefs.h>35 #include <stddef.h> 36 36 37 37 extern void *memcpy(void *, const void *, size_t) -
boot/generic/include/printf.h
raaae6d9 rde1712e 33 33 #define BOOT_PRINT_H_ 34 34 35 #include < typedefs.h>35 #include <stddef.h> 36 36 #include <stdarg.h> 37 37 #include <printf_verify.h> -
boot/generic/include/printf_core.h
raaae6d9 rde1712e 33 33 #define BOOT_PRINTF_CORE_H_ 34 34 35 #include < typedefs.h>35 #include <stddef.h> 36 36 #include <stdarg.h> 37 37 -
boot/generic/include/stddef.h
raaae6d9 rde1712e 30 30 */ 31 31 32 #ifndef BOOT_ TYPEDEFS_H_33 #define BOOT_ TYPEDEFS_H_32 #ifndef BOOT_STDDEF_H_ 33 #define BOOT_STDDEF_H_ 34 34 35 35 #include <stdint.h> -
boot/generic/include/str.h
raaae6d9 rde1712e 33 33 #define BOOT_STR_H_ 34 34 35 #include < typedefs.h>35 #include <stddef.h> 36 36 37 37 /**< Common Unicode characters */ -
boot/generic/src/balloc.c
raaae6d9 rde1712e 28 28 29 29 #include <balloc.h> 30 #include < typedefs.h>30 #include <stddef.h> 31 31 #include <align.h> 32 32 -
boot/generic/src/inflate.c
raaae6d9 rde1712e 65 65 */ 66 66 67 #include < typedefs.h>67 #include <stddef.h> 68 68 #include <errno.h> 69 69 #include <memstr.h> -
boot/generic/src/memstr.c
raaae6d9 rde1712e 28 28 29 29 #include <memstr.h> 30 #include < typedefs.h>30 #include <stddef.h> 31 31 32 32 /** Move memory block without overlapping. -
boot/generic/src/vprintf.c
raaae6d9 rde1712e 30 30 */ 31 31 32 #include < typedefs.h>32 #include <stddef.h> 33 33 #include <printf.h> 34 34 #include <printf_core.h> -
tools/pack.py
raaae6d9 rde1712e 159 159 header.write("#ifndef BOOT_COMPONENTS_H_\n") 160 160 header.write("#define BOOT_COMPONENTS_H_\n\n") 161 header.write("#include < typedefs.h>\n\n")161 header.write("#include <stddef.h>\n\n") 162 162 header.write("#define COMPONENTS %d\n\n" % cnt) 163 163 header.write("typedef struct {\n") … … 180 180 data.write(' * Generated by: tools/pack.py *\n') 181 181 data.write(' ***************************************/\n\n') 182 data.write("#include < typedefs.h>\n")182 data.write("#include <stddef.h>\n") 183 183 data.write("#include <arch/%s.h>\n\n" % COMPONENTS) 184 184 data.write("component_t components[] = {\n")
Note:
See TracChangeset
for help on using the changeset viewer.