Changeset c8dcdf54 in rtems
- Timestamp:
- 05/09/18 20:22:04 (6 years ago)
- Branches:
- 5, master
- Children:
- c4f5cc54
- Parents:
- 85602e0d
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
bsps/sparc64/include/arch/arch.h
r85602e0d rc8dcdf54 38 38 #define KERN_sparc64_ARCH_H_ 39 39 40 #include <bspopts.h> 41 40 42 #if defined (SUN4U) 41 43 #include <arch/sun4u/arch.h> 42 44 #elif defined (SUN4V) 43 45 #include <arch/sun4v/arch.h> 46 #else 47 #error "No SUN model defined" 44 48 #endif 45 49 -
bsps/sparc64/include/arch/mm/frame.h
r85602e0d rc8dcdf54 36 36 #define KERN_sparc64_FRAME_H_ 37 37 38 #include <bspopts.h> 39 38 40 #if defined (SUN4U) 39 41 #include <arch/mm/sun4u/frame.h> 40 42 #elif defined (SUN4V) 41 43 #include <arch/mm/sun4v/frame.h> 44 #else 45 #error "No SUN model defined" 42 46 #endif 43 47 -
bsps/sparc64/include/arch/mm/mmu.h
r85602e0d rc8dcdf54 36 36 #define KERN_sparc64_MMU_H_ 37 37 38 #include <bspopts.h> 39 38 40 #if defined (SUN4U) 39 41 #include <arch/mm/sun4u/mmu.h> 40 42 #elif defined (SUN4V) 41 43 #include <arch/mm/sun4v/mmu.h> 44 #else 45 #error "No SUN model defined" 42 46 #endif 43 47 -
bsps/sparc64/include/arch/mm/tlb.h
r85602e0d rc8dcdf54 36 36 #define KERN_sparc64_TLB_H_ 37 37 38 #include <bspopts.h> 38 39 39 40 #if defined (SUN4U) … … 41 42 #elif defined (SUN4V) 42 43 #include <arch/mm/sun4v/tlb.h> 44 #else 45 #error "No SUN model defined" 43 46 #endif 44 47 -
bsps/sparc64/include/arch/mm/tte.h
r85602e0d rc8dcdf54 36 36 #define KERN_sparc64_TTE_H_ 37 37 38 #include <bspopts.h> 39 38 40 #if defined (SUN4U) 39 41 #include <arch/mm/sun4u/tte.h> 40 42 #elif defined (SUN4V) 41 43 #include <arch/mm/sun4v/tte.h> 44 #else 45 #error "No SUN model defined" 42 46 #endif 43 47 -
bsps/sparc64/niagara/config/niagara.cfg
r85602e0d rc8dcdf54 8 8 # This contains the compiler options necessary to select the CPU model 9 9 # and (hopefully) optimize for it. 10 CPU_CFLAGS = -mcpu=niagara -DSUN4V10 CPU_CFLAGS = -mcpu=niagara 11 11 12 12 # optimize flag: typically -g -O2 -
bsps/sparc64/usiii/config/usiii.cfg
r85602e0d rc8dcdf54 8 8 # This contains the compiler options necessary to select the CPU model 9 9 # and (hopefully) optimize for it. 10 CPU_CFLAGS = -mcpu=ultrasparc3 -DUS3 -DSUN4U10 CPU_CFLAGS = -mcpu=ultrasparc3 11 11 12 12 # optimize flag: typically -g -O2 -
c/src/lib/libbsp/sparc64/niagara/configure.ac
r85602e0d rc8dcdf54 11 11 RTEMS_BSP_CONFIGURE 12 12 13 RTEMS_BSPOPTS_SET([SUN4V],[niagara],[1]) 14 RTEMS_BSPOPTS_SET([SUN4V],[*],[]) 15 RTEMS_BSPOPTS_HELP([SUN4V], 16 [If defined, enable SUN model optons for the Niagara model.]) 13 17 14 18 RTEMS_BSP_CLEANUP_OPTIONS -
c/src/lib/libbsp/sparc64/usiii/configure.ac
r85602e0d rc8dcdf54 11 11 RTEMS_BSP_CONFIGURE 12 12 13 14 13 RTEMS_BSPOPTS_SET([SIMSPARC_FAST_IDLE],[*],[]) 15 14 RTEMS_BSPOPTS_HELP([SIMSPARC_FAST_IDLE], … … 18 17 the wall time required to execute the RTEMS test suites.]) 19 18 19 RTEMS_BSPOPTS_SET([US3],[usiii],[1]) 20 RTEMS_BSPOPTS_SET([US3],[*],[]) 21 RTEMS_BSPOPTS_HELP([US3], 22 [If defined, enable UltraSPARC optons for the USIII BSP.]) 23 24 RTEMS_BSPOPTS_SET([SUN4U],[usiii],[1]) 25 RTEMS_BSPOPTS_SET([SUN4U],[*],[]) 26 RTEMS_BSPOPTS_HELP([SUN4U], 27 [If defined, enable SUN model optons for the USIII BSP.]) 20 28 21 29 RTEMS_BSP_CLEANUP_OPTIONS
Note: See TracChangeset
for help on using the changeset viewer.