Changeset 80e24f1f in rtems
- Timestamp:
- 06/15/00 22:22:00 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- fc6eaee
- Parents:
- d1716c98
- Files:
-
- 1 added
- 7 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/i960/rxgen960/Makefile.am
rd1716c98 r80e24f1f 8 8 # wrapup is the one that actually builds and installs the library 9 9 # from the individual .rel files built in other directories 10 SUBDIRS = include start up clock console shmsupp timer wrapup10 SUBDIRS = include start startup clock console shmsupp timer wrapup 11 11 12 12 include $(top_srcdir)/../../bsp.am -
c/src/lib/libbsp/i960/rxgen960/bsp_specs
rd1716c98 r80e24f1f 16 16 *startfile: 17 17 %{!qrtems: %(old_startfile)} \ 18 %{qrtems: %{qrtems_debug: start_g.o%s} %{!qrtems_debug: start.o%s}18 %{qrtems: %{qrtems_debug: rxgen_romld_g.o%s} %{!qrtems_debug: rxgen_romld.o%s}} 19 19 20 20 *link: -
c/src/lib/libbsp/i960/rxgen960/configure.in
rd1716c98 r80e24f1f 33 33 include/Makefile 34 34 shmsupp/Makefile 35 start/Makefile 35 36 startup/Makefile 36 37 timer/Makefile -
c/src/lib/libbsp/i960/rxgen960/start/rxgen_romld.S
rd1716c98 r80e24f1f 8 8 9 9 .globl _romStart 10 .globl start 10 11 .globl _start 11 12 .globl _romFaultStart 12 13 .globl _led_array 13 14 .text 15 start: /* JRS */ 16 _start: /* JRS */ 14 17 SYM(romStart ): 15 18 SYM(_romStart ): … … 122 125 .byte 0xb 123 126 .byte 0xc 127 128 129 /* just to compile and link application XXX JOEL */ 130 .globl _faultStart 131 .globl _faultEnd 132 .globl _faultCheckSum 133 .globl _faultBuffer 134 .globl _svrStackPtr 135 .globl _console_pmr_getc 136 .globl _console_pmr_kbhit 137 .globl _console_pmr_init 138 .globl _console_pmr_putc 139 .globl _DBGConsole_make_sync 140 .globl _codeRamStart 141 .globl _codeRomStart 142 .globl _codeRamEnd 143 .globl _codeRomEnd 144 .globl _bssStart 145 .globl _bssEnd 146 .globl _bssStart_1 147 .globl _bssEnd_1 148 .globl _intStackPtr 149 150 _faultStart: 151 _faultEnd: 152 _faultCheckSum: 153 _faultBuffer: 154 _svrStackPtr: 155 _console_pmr_getc: 156 _console_pmr_kbhit: 157 _console_pmr_init: 158 _console_pmr_putc: 159 _DBGConsole_make_sync: 160 _codeRamStart: 161 _codeRomStart: 162 _codeRamEnd: 163 _codeRomEnd: 164 _bssStart: 165 _bssEnd: 166 _bssStart_1: 167 _bssEnd_1: 168 _intStackPtr: 169 -
c/src/lib/libbsp/i960/rxgen960/startup/Makefile.am
rd1716c98 r80e24f1f 11 11 #C_PIECES = bspclean bsplibc bsppost bspstart bootcard main sbrk setvec \ 12 12 # gnatinstallhandler 13 C_FILES = bspstart.c cntrltbl.c exit.c fault.c flttbl.c frmstr.c intrtbl.c \ 14 kkprintf.c nmi.c nulsystbl.c prcb.c rom_cntrltbl.c rom_ibr.c rom_prcb.c \ 15 sctns.c setvec.c systbl.c 13 C_FILES = bspclean.c bsplibc.c bsppost.c bspstart.c bootcard.c cntrltbl.c \ 14 exit.c fault.c flttbl.c frmstr.c intrtbl.c kkprintf.c main.c nmi.c \ 15 nulsystbl.c prcb.c rom_cntrltbl.c rom_ibr.c rom_prcb.c sbrk.c sctns.c \ 16 setvec.c systbl.c 16 17 17 18 H_FILES = asmfault.h asmstub.h cntrltbl.h fault.h faultret.h flttbl.h \ … … 19 20 prcb.h rom_ibr.h rommon.h sctns.h systbl.h time.h types.h 20 21 21 S_FILES = asmfault.S asmstub.S ihandler.S rxgen_romld.S22 S_FILES = asmfault.S asmstub.S ihandler.S 22 23 23 24 OBJS = $(C_FILES:%.c=$(ARCH)/%.o) $(S_FILES:%.S=$(ARCH)/%.o) -
c/src/lib/libbsp/i960/rxgen960/startup/exit.c
rd1716c98 r80e24f1f 25 25 #include "bsp.h" 26 26 27 #if 0 27 28 void _exit( ) 28 29 { … … 37 38 */ 38 39 } 40 #endif -
c/src/lib/libbsp/i960/rxgen960/startup/kkprintf.c
rd1716c98 r80e24f1f 57 57 } 58 58 } 59 60 61 /* we have got an error during build for 'isatty()' wo/ good reason62 we temporarily use this fix....63 */64 isatty(int fd)65 {66 return 1;67 }68 -
make/custom/rxgen960.cfg
rd1716c98 r80e24f1f 66 66 $(LINK_OBJS) $(LINK_LIBS) 67 67 $(NM) -g -n $@ > $(basename $@).num 68 $(OBJCOPY) - oformatbinary $@ $(basename $@).bin68 $(OBJCOPY) -O binary $@ $(basename $@).bin 69 69 $(SIZE) $@ 70 70 endef … … 73 73 # Miscellaneous additions go here 74 74 75 START_BASE= 76 START_FILE=
Note: See TracChangeset
for help on using the changeset viewer.