Changeset 457 for trunk/boot/tsar_mips32
- Timestamp:
- Aug 2, 2018, 11:47:13 AM (6 years ago)
- Location:
- trunk/boot/tsar_mips32
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/boot/tsar_mips32/Makefile
r439 r457 59 59 boot_utils.h \ 60 60 boot_config.h \ 61 $(HAL_ARCH)/core/hal_ types.h \61 $(HAL_ARCH)/core/hal_kernel_types.h \ 62 62 ../../hard_config.h 63 63 $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $< … … 68 68 boot_utils.h \ 69 69 boot_config.h \ 70 $(HAL_ARCH)/core/hal_ types.h \70 $(HAL_ARCH)/core/hal_kernel_types.h \ 71 71 ../../hard_config.h 72 72 $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $< … … 77 77 boot_utils.h \ 78 78 boot_config.h \ 79 $(HAL_ARCH)/core/hal_ types.h \79 $(HAL_ARCH)/core/hal_kernel_types.h \ 80 80 ../../hard_config.h 81 81 $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $< … … 86 86 boot_utils.h \ 87 87 boot_config.h \ 88 $(HAL_ARCH)/core/hal_ types.h \88 $(HAL_ARCH)/core/hal_kernel_types.h \ 89 89 ../../hard_config.h 90 90 $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $< … … 97 97 boot_utils.h \ 98 98 boot_config.h \ 99 $(HAL_ARCH)/core/hal_ types.h \99 $(HAL_ARCH)/core/hal_kernel_types.h \ 100 100 ../../hard_config.h 101 101 $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $< … … 107 107 boot_utils.h \ 108 108 boot_tty_driver.h \ 109 $(HAL_ARCH)/core/hal_ types.h \109 $(HAL_ARCH)/core/hal_kernel_types.h \ 110 110 ../../hard_config.h 111 111 $(CC) $(BOOT_INCLUDE) $(CFLAGS) -c -o $@ $< … … 122 122 boot_mmc_driver.h \ 123 123 boot_config.h \ 124 $(HAL_ARCH)/core/hal_ types.h \124 $(HAL_ARCH)/core/hal_kernel_types.h \ 125 125 ../../hard_config.h 126 126 $(CC) $(BOOT_INCLUDE) $(CFLAGS) $(MACROS) -c -o $@ $< -
trunk/boot/tsar_mips32/boot.c
r439 r457 70 70 71 71 #include <elf-types.h> 72 #include <hal_ types.h>72 #include <hal_kernel_types.h> 73 73 74 74 #include <kernel_config.h> -
trunk/boot/tsar_mips32/boot_bdv_driver.h
r439 r457 19 19 #define BOOT_BDV_DRIVER_H 20 20 21 #include <hal_ types.h>21 #include <hal_kernel_types.h> 22 22 23 23 /**************************************************************************** -
trunk/boot/tsar_mips32/boot_fat32.h
r439 r457 318 318 ****************************************************************************/ 319 319 320 #include <hal_ types.h>320 #include <hal_kernel_types.h> 321 321 322 322 typedef struct fat_desc_s -
trunk/boot/tsar_mips32/boot_hba_driver.h
r439 r457 27 27 #define BOOT_HBA_DRIVER_H 28 28 29 #include <hal_ types.h>29 #include <hal_kernel_types.h> 30 30 31 31 /**************************************************************************** -
trunk/boot/tsar_mips32/boot_mmc_driver.h
r439 r457 13 13 #define _GIET_MMC_DRIVERS_H_ 14 14 15 #include <hal_ types.h>15 #include <hal_kernel_types.h> 16 16 17 17 /////////////////////////////////////////////////////////////////////////////////// -
trunk/boot/tsar_mips32/boot_tty_driver.c
r439 r457 24 24 #include <boot_config.h> 25 25 #include <boot_tty_driver.h> 26 #include <hal_ types.h>26 #include <hal_kernel_types.h> 27 27 #include <boot_utils.h> 28 28 -
trunk/boot/tsar_mips32/boot_tty_driver.h
r439 r457 33 33 #define BOOT_TTY_DRIVER_H 34 34 35 #include <hal_ types.h>35 #include <hal_kernel_types.h> 36 36 37 37 /**************************************************************************** -
trunk/boot/tsar_mips32/boot_utils.c
r439 r457 25 25 26 26 #include <boot_tty_driver.h> 27 #include <hal_ types.h>27 #include <hal_kernel_types.h> 28 28 #include <boot_utils.h> 29 29 -
trunk/boot/tsar_mips32/boot_utils.h
r439 r457 41 41 #define _BOOT_UTILS_H 42 42 43 #include <hal_ types.h>43 #include <hal_kernel_types.h> 44 44 #include <hard_config.h> 45 45
Note: See TracChangeset
for help on using the changeset viewer.