Changeset f5642664 in rtems
- Timestamp:
- 08/02/02 00:08:01 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 8378eae
- Parents:
- 65a41d61
- Location:
- make
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
make/ChangeLog
r65a41d61 rf5642664 1 1 2002-08-01 Joel Sherrill <joel@OARcorp.com> 2 2 3 * custom/mvme136.cfg: Per PR260 removed make-target-options. 3 * eth_comm.cfg, mbx821_001.cfg, mbx860_002.cfg, mbx860_005b.cfg, 4 mbx8xx.cfg, mpc8260ads.cfg: Per PR260 removed make-target-options. 5 6 2002-08-01 Joel Sherrill <joel@OARcorp.com> 7 8 * custom/mvme136.cfg: Remove make-target-options. 4 9 5 10 2002-07-30 Joel Sherrill <joel@OARcorp.com> -
make/custom/eth_comm.cfg
r65a41d61 rf5642664 9 9 RTEMS_CPU=powerpc 10 10 RTEMS_CPU_MODEL=mpc8xx 11 CPU_TYPE=86011 8XX_CPU_TYPE=860 12 12 13 13 # This is the actual bsp directory used during the build process. … … 28 28 # and (hopefully) optimize for it. 29 29 # 30 CPU_CFLAGS = -mcpu=$( CPU_TYPE) -Dmpc$(CPU_TYPE) \30 CPU_CFLAGS = -mcpu=$(8XX_CPU_TYPE) -Dmpc$(8XX_CPU_TYPE) \ 31 31 -DPPC_ABI=PPC_ABI_EABI -DPPC_ASM=PPC_ASM_ELF 32 32 -
make/custom/mbx821_001.cfg
r65a41d61 rf5642664 9 9 10 10 RTEMS_MBX_MODEL=mbx821_001 11 8XX_CPU_TYPE=821 11 12 12 13 include $(RTEMS_ROOT)/make/custom/mbx8xx.cfg -
make/custom/mbx860_002.cfg
r65a41d61 rf5642664 9 9 10 10 RTEMS_MBX_MODEL=mbx860_002 11 8XX_CPU_TYPE=860 11 12 12 13 include $(RTEMS_ROOT)/make/custom/mbx8xx.cfg -
make/custom/mbx860_005b.cfg
r65a41d61 rf5642664 9 9 10 10 RTEMS_MBX_MODEL=mbx860_005b 11 8XX_CPU_TYPE=860 11 12 12 13 # The 860_005b has 16M ram : org = 0x0, l = 16M … … 16 17 17 18 include $(RTEMS_ROOT)/make/custom/mbx8xx.cfg 18 define make-target-options19 @echo "#ifdef mpc$(CPU_TYPE)" >>$@20 @echo "#undef mpc$(CPU_TYPE)" >>$@21 @echo "#endif" >>$@22 @echo "#define mpc$(CPU_TYPE) 1" >>$@23 @echo >>$@24 endef -
make/custom/mbx8xx.cfg
r65a41d61 rf5642664 11 11 12 12 RTEMS_CPU=powerpc 13 RTEMS_CPU_MODEL=mpc 8xx13 RTEMS_CPU_MODEL=mpc$(8XX_CPU_TYPE) 14 14 15 15 # This is the actual bsp directory used during the build process. 16 16 RTEMS_BSP_FAMILY=mbx8xx 17 18 # The value assigned to RTEMS_CPU, RTEMS_CPU_MODEL and RTEMS_BSP get19 # #defined in targopts.h. Source code can switch on these values with #ifdef20 # to select what code to compile for a specific CPU family member and specific21 # board. The RTEMS_CPU_MODEL is also used as the name of the libcpu directory,22 # while the RTEMS_BSP_FAMILY is used as the name of the libbsp directory.23 # For the MBX860 and MBX821, the boards and processors are sufficiently24 # similar that the ports are unified and use RTEMS_CPU_MODEL=mpc8xx and25 # RTEMS_BSP_FAMILY=mbx8xx. Because there are minor differences in the CPUs26 # and the boards, it is necessary to specify them fully during the build.27 # Do a "make RTEMS_BSP=<your_board> <target>" See below for a list of valid28 # values for <your_board>.29 30 ifeq ($(findstring mbx821,$(RTEMS_MBX_MODEL)),mbx821)31 CPU_TYPE=82132 else33 ifeq ($(findstring mbx860,$(RTEMS_MBX_MODEL)),mbx860)34 CPU_TYPE=86035 else36 RTEMS_BSP = mbx860_00237 RTEMS_MBX_MODEL = mbx860_00238 TARGET_ARCH=o-mbx860_00239 CPU_TYPE=86040 endif # mbx86041 endif # mbx82142 17 43 18 # This section makes the target dependent options file. … … 69 44 # and (hopefully) optimize for it. 70 45 # 71 CPU_CFLAGS = -mcpu=$( CPU_TYPE) -Dmpc$(CPU_TYPE) -D$(RTEMS_MBX_MODEL)46 CPU_CFLAGS = -mcpu=$(8XX_CPU_TYPE) -Dmpc$(8XX_CPU_TYPE) -D$(RTEMS_MBX_MODEL) 72 47 73 48 CFLAGS_DEBUG_V += -ggdb -
make/custom/mpc8260ads.cfg
r65a41d61 rf5642664 9 9 RTEMS_CPU=powerpc 10 10 RTEMS_CPU_MODEL=mpc8260 11 CPU_TYPE=826011 8XX_CPU_TYPE=8260 12 12 13 13 # This is the actual bsp directory used during the build process. … … 26 26 # and (hopefully) optimize for it. 27 27 # 28 # CPU_CFLAGS = -mcpu=$( CPU_TYPE) -mstrict-align28 # CPU_CFLAGS = -mcpu=$(8XX_CPU_TYPE) -mstrict-align 29 29 CPU_CFLAGS = -mcpu=603e -mstrict-align -Dmpc8260 \ 30 30 -DPPC_ABI=PPC_ABI_EABI -DPPC_ASM=PPC_ASM_ELF
Note: See TracChangeset
for help on using the changeset viewer.