Changeset ab67810 in rtems
- Timestamp:
- 08/06/02 20:24:47 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- f3d95192
- Parents:
- f8ac3ae3
- Location:
- c/src/lib/libbsp/or32/orp
- Files:
-
- 1 added
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/or32/orp/ChangeLog
rf8ac3ae3 rab67810 1 2002-08-06 Joel Sherrill <joel@OARcorp.com> 2 3 * bsp_specs, configure.ac, startup/bspstart.c: Update and fix 4 minor things so this BSP compiles and almost completely links. 5 * startup/Makefile.am: New file. 6 1 7 2002-08-06 Joel Sherrill <joel@OARcorp.com> 2 8 -
c/src/lib/libbsp/or32/orp/bsp_specs
rf8ac3ae3 rab67810 1 1 %rename cpp old_cpp 2 2 %rename lib old_lib 3 %rename endfile old_endfile 4 %rename startfile old_startfile 5 %rename link old_link 3 6 4 7 *cpp: … … 6 9 7 10 *lib: 8 %{!qrtems: %(old_lib)} \9 %{ qrtems: --start-group %{!qrtems_debug: -lrtemsall } %{qrtems_debug: -lrtemsall_g} \10 11 11 %{!qrtems: %(old_lib)} %{qrtems: --start-group \ 12 %{!qrtems_debug: -lrtemsbsp -lrtemscpu} %{qrtems_debug: -lrtemsbsp_g -lrtemscpu_g} \ 13 -lc -lgcc --end-group \ 14 %{!qnolinkcmds: -T linkcmds%s}} 12 15 16 *startfile: 17 %{!qrtems: %(old_startfile)} %{qrtems: \ 18 %{!qrtems_debug: start.o%s} \ 19 %{qrtems_debug: start_g.o%s}} 20 21 *link: 22 %{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e _start} 23 -
c/src/lib/libbsp/or32/orp/configure.ac
rf8ac3ae3 rab67810 4 4 5 5 AC_PREREQ(2.52) 6 AC_INIT([rtems-c-src-lib-libbsp- arm-armulator],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])6 AC_INIT([rtems-c-src-lib-libbsp-or32-or32sim],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com]) 7 7 AC_CONFIG_SRCDIR([bsp_specs]) 8 8 RTEMS_TOP(../../../../../..) … … 16 16 RTEMS_CANONICALIZE_TOOLS 17 17 18 # From newlib19 # Select which debug protocol is being used.20 # ARM_RDP_MONITOR selects the Demon monitor.21 # ARM_RDI_MONITOR selects the Angel monitor.22 # If neither are defined, then hard coded defaults will be used23 # to create the program's environment.24 25 RTEMS_BSPOPTS_SET([ARM_RDI_MONITOR],[*],[1])26 RTEMS_BSPOPTS_HELP([ARM_RDI_MONITOR],27 [If defined enable Angel monitor support])28 29 RTEMS_BSPOPTS_SET([ARM_RDP_MONITOR],[*],[])30 RTEMS_BSPOPTS_HELP([ARM_RDP_MONITOR],31 [If defined enable Demon monitor support])32 33 18 # Explicitly list all Makefiles here 34 19 AC_CONFIG_FILES([Makefile -
c/src/lib/libbsp/or32/orp/startup/bspstart.c
rf8ac3ae3 rab67810 20 20 #include <rtems/libio.h> 21 21 22 #include < libcsupport.h>22 #include <rtems/libcsupport.h> 23 23 24 24 #include <string.h> … … 35 35 36 36 rtems_cpu_table Cpu_table; 37 38 char *rtems_progname;39 37 40 38 /* … … 118 116 119 117 bsp_cleanup(); 120 121 return 0;122 118 }
Note: See TracChangeset
for help on using the changeset viewer.