Renaming all BSP specific startXXX directories to use the same name (start).

This commit is contained in:
Joel Sherrill
1999-11-19 16:40:40 +00:00
parent 9c0385aaa9
commit d2a05e767b
25 changed files with 44 additions and 44 deletions

View File

@@ -20,7 +20,7 @@ INSTALL_CHANGE = @INSTALL_CHANGE@
# wrapup is the one that actually builds and installs the library # wrapup is the one that actually builds and installs the library
# from the individual .rel files built in other directories # from the individual .rel files built in other directories
SUB_DIRS = include start332 startup clock console spurious timer wrapup SUB_DIRS = include start startup clock console spurious timer wrapup
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \ cd $(top_builddir) \

View File

@@ -15,8 +15,8 @@
*startfile: *startfile:
%{!qrtems: %(old_startfile)} %{qrtems: \ %{!qrtems: %(old_startfile)} %{qrtems: \
%{!qrtems_debug: start332.o%s} \ %{!qrtems_debug: start.o%s} \
%{qrtems_debug: start332_g.o%s}} %{qrtems_debug: start_g.o%s}}
*link: *link:
%{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start} %{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start}

View File

@@ -6,17 +6,17 @@
srcdir = @srcdir@ srcdir = @srcdir@
top_srcdir = @top_srcdir@ top_srcdir = @top_srcdir@
top_builddir = ../../.. top_builddir = ../../..
subdir = m68k/efi332/start332 subdir = m68k/efi332/start
RTEMS_ROOT = @RTEMS_ROOT@ RTEMS_ROOT = @RTEMS_ROOT@
PROJECT_ROOT = @PROJECT_ROOT@ PROJECT_ROOT = @PROJECT_ROOT@
VPATH = @srcdir@ VPATH = @srcdir@
PGM = ${ARCH}/start332.o PGM = ${ARCH}/start.o
# C source names, if any, go here -- minus the .c # C source names, if any, go here -- minus the .c
C_PIECES = start332 C_PIECES = start
C_FILES = $(C_PIECES:%=%.c) C_FILES = $(C_PIECES:%=%.c)
C_O_FILES = $(C_PIECES:%=${ARCH}/%.o) C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)

View File

@@ -53,11 +53,11 @@ void dumby_start() {
/* see section(s) 4.8 */ /* see section(s) 4.8 */
/* end include in ram_init.S */ /* end include in ram_init.S */
*SYNCR = (unsigned short int) *SYNCR = (unsigned short int)
( SAM(EFI_W,15,W) | SAM(0x0,14,X) | SAM(EFI_Y,8,Y) | STSIM ); ( SAM(EFI_W,15,VCO) | SAM(0x0,14,PRESCALE) | SAM(EFI_Y,8,COUNTER) | STSIM );
while (! (*SYNCR & SLOCK)); /* protect from clock overshoot */ while (! (*SYNCR & SLOCK)); /* protect from clock overshoot */
/* include in ram_init.S */ /* include in ram_init.S */
*SYNCR = (unsigned short int) *SYNCR = (unsigned short int)
( SAM(EFI_W,15,W) | SAM(EFI_X,14,X) | SAM(EFI_Y,8,Y) | STSIM ); ( SAM(EFI_W,15,VCO) | SAM(EFI_X,14,PRESCALE) | SAM(EFI_Y,8,COUNTER) | STSIM );
/* System Protection Control Register */ /* System Protection Control Register */
/* !!! can only write to once after reset !!! */ /* !!! can only write to once after reset !!! */

View File

@@ -20,7 +20,7 @@ INSTALL_CHANGE = @INSTALL_CHANGE@
# wrapup is the one that actually builds and installs the library # wrapup is the one that actually builds and installs the library
# from the individual .rel files built in other directories # from the individual .rel files built in other directories
SUB_DIRS = include start68k startup clock console spurious timer wrapup SUB_DIRS = include start startup clock console spurious timer wrapup
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \ cd $(top_builddir) \

View File

@@ -15,8 +15,8 @@
*startfile: *startfile:
%{!qrtems: %(old_startfile)} %{qrtems: \ %{!qrtems: %(old_startfile)} %{qrtems: \
%{!qrtems_debug: start68k.o%s} \ %{!qrtems_debug: start.o%s} \
%{qrtems_debug: start68k_g.o%s}} %{qrtems_debug: start_g.o%s}}
*link: *link:
%{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start} %{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start}

View File

@@ -6,17 +6,17 @@
srcdir = @srcdir@ srcdir = @srcdir@
top_srcdir = @top_srcdir@ top_srcdir = @top_srcdir@
top_builddir = ../../.. top_builddir = ../../..
subdir = m68k/efi68k/start68k subdir = m68k/efi68k/start
RTEMS_ROOT = @RTEMS_ROOT@ RTEMS_ROOT = @RTEMS_ROOT@
PROJECT_ROOT = @PROJECT_ROOT@ PROJECT_ROOT = @PROJECT_ROOT@
VPATH = @srcdir@ VPATH = @srcdir@
PGM = ${ARCH}/start68k.o PGM = ${ARCH}/start.o
# C source names, if any, go here -- minus the .c # C source names, if any, go here -- minus the .c
C_PIECES = start68k C_PIECES = start
C_FILES = $(C_PIECES:%=%.c) C_FILES = $(C_PIECES:%=%.c)
C_O_FILES = $(C_PIECES:%=${ARCH}/%.o) C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)

View File

@@ -24,7 +24,7 @@ all: $(SRCS)
# wrapup is the one that actually builds and installs the library # wrapup is the one that actually builds and installs the library
# from the individual .rel files built in other directories # from the individual .rel files built in other directories
SUB_DIRS = include start302 startup clock console timer wrapup SUB_DIRS = include start startup clock console timer wrapup
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \ cd $(top_builddir) \

View File

@@ -15,8 +15,8 @@
*startfile: *startfile:
%{!qrtems: %(old_startfile)} %{qrtems: \ %{!qrtems: %(old_startfile)} %{qrtems: \
%{!qrtems_debug: start302.o%s} \ %{!qrtems_debug: start.o%s} \
%{qrtems_debug: start302_g.o%s}} %{qrtems_debug: start_g.o%s}}
*link: *link:
%{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start} %{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start}

View File

@@ -13,7 +13,7 @@ PROJECT_ROOT = @PROJECT_ROOT@
VPATH = @srcdir@ VPATH = @srcdir@
PGMS = ${ARCH}/start302.o PGM = ${ARCH}/start.o
# C source names, if any, go here -- minus the .c # C source names, if any, go here -- minus the .c
C_PIECES = C_PIECES =
@@ -23,7 +23,7 @@ C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
H_FILES = H_FILES =
# Assembly source names, if any, go here -- minus the .S # Assembly source names, if any, go here -- minus the .S
S_PIECES = start302 S_PIECES = start
S_FILES = $(S_PIECES:%=%.S) S_FILES = $(S_PIECES:%=%.S)
S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o) S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)

View File

@@ -24,7 +24,7 @@ all: $(SRCS)
# wrapup is the one that actually builds and installs the library # wrapup is the one that actually builds and installs the library
# from the individual .rel files built in other directories # from the individual .rel files built in other directories
SUB_DIRS = include start340 startup clock console timer wrapup SUB_DIRS = include start startup clock console timer wrapup
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \ cd $(top_builddir) \

View File

@@ -15,8 +15,8 @@
*startfile: *startfile:
%{!qrtems: %(old_startfile)} %{qrtems: \ %{!qrtems: %(old_startfile)} %{qrtems: \
%{!qrtems_debug: start340.o%s} \ %{!qrtems_debug: start.o%s} \
%{qrtems_debug: start340_g.o%s}} %{qrtems_debug: start_g.o%s}}
*link: *link:
%{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start} %{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start}

View File

@@ -13,7 +13,7 @@ PROJECT_ROOT = @PROJECT_ROOT@
VPATH = @srcdir@ VPATH = @srcdir@
PGMS = ${ARCH}/start340.o PGM = ${ARCH}/start.o
# C source names, if any, go here -- minus the .c # C source names, if any, go here -- minus the .c
C_PIECES = C_PIECES =
@@ -23,7 +23,7 @@ C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
H_FILES = H_FILES =
# Assembly source names, if any, go here -- minus the .S # Assembly source names, if any, go here -- minus the .S
S_PIECES = start340 S_PIECES = start
S_FILES = $(S_PIECES:%=%.S) S_FILES = $(S_PIECES:%=%.S)
S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o) S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)

View File

@@ -28,7 +28,7 @@ all: $(SRCS)
# wrapup is the one that actually builds and installs the library # wrapup is the one that actually builds and installs the library
# from the individual .rel files built in other directories # from the individual .rel files built in other directories
SUB_DIRS = include start360 startup clock console timer $(NETWORKING_DRIVER) \ SUB_DIRS = include start startup clock console timer $(NETWORKING_DRIVER) \
wrapup wrapup
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status

View File

@@ -15,8 +15,8 @@
*startfile: *startfile:
%{!qrtems: %(old_startfile)} %{qrtems: \ %{!qrtems: %(old_startfile)} %{qrtems: \
%{!qrtems_debug: start360.o%s} \ %{!qrtems_debug: start.o%s} \
%{qrtems_debug: start360_g.o%s}} %{qrtems_debug: start_g.o%s}}
*link: *link:
%{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start} %{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start}

View File

@@ -13,7 +13,7 @@ PROJECT_ROOT = @PROJECT_ROOT@
VPATH = @srcdir@ VPATH = @srcdir@
PGMS = ${ARCH}/start360.o PGM = ${ARCH}/start.o
# C source names, if any, go here -- minus the .c # C source names, if any, go here -- minus the .c
C_PIECES = C_PIECES =
@@ -23,7 +23,7 @@ C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
H_FILES = H_FILES =
# Assembly source names, if any, go here -- minus the .S # Assembly source names, if any, go here -- minus the .S
S_PIECES = start360 S_PIECES = start
S_FILES = $(S_PIECES:%=%.S) S_FILES = $(S_PIECES:%=%.S)
S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o) S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)

View File

@@ -24,7 +24,7 @@ all: $(SRCS)
# wrapup is the one that actually builds and installs the library # wrapup is the one that actually builds and installs the library
# from the individual .rel files built in other directories # from the individual .rel files built in other directories
SUB_DIRS = include start302 startup clock console timer wrapup SUB_DIRS = include start startup clock console timer wrapup
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \ cd $(top_builddir) \

View File

@@ -15,8 +15,8 @@
*startfile: *startfile:
%{!qrtems: %(old_startfile)} %{qrtems: \ %{!qrtems: %(old_startfile)} %{qrtems: \
%{!qrtems_debug: start302.o%s} \ %{!qrtems_debug: start.o%s} \
%{qrtems_debug: start302_g.o%s}} %{qrtems_debug: start_g.o%s}}
*link: *link:
%{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start} %{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start}

View File

@@ -13,7 +13,7 @@ PROJECT_ROOT = @PROJECT_ROOT@
VPATH = @srcdir@ VPATH = @srcdir@
PGM = ${ARCH}/start302.o PGM = ${ARCH}/start.o
RESET_S_PIECES_yes_V = debugreset RESET_S_PIECES_yes_V = debugreset
RESET_S_PIECES_no_V = reset RESET_S_PIECES_no_V = reset

View File

@@ -15,8 +15,8 @@
*startfile: *startfile:
%{!qrtems: %(old_startfile)} %{qrtems: \ %{!qrtems: %(old_startfile)} %{qrtems: \
%{!qrtems_debug: idt_csu.o%s} \ %{!qrtems_debug: start.o%s} \
%{qrtems_debug: idt_csu_g.o%s}} %{qrtems_debug: start_g.o%s}}
*link: *link:
%{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start} %{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start}

View File

@@ -24,7 +24,7 @@ all: $(SRCS)
# wrapup is the one that actually builds and installs the library # wrapup is the one that actually builds and installs the library
# from the individual .rel files built in other directories # from the individual .rel files built in other directories
SUB_DIRS = include startup console liblnk wrapup SUB_DIRS = include start startup console liblnk wrapup
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \ cd $(top_builddir) \

View File

@@ -15,8 +15,8 @@
*startfile: *startfile:
%{!qrtems: %(old_startfile)} %{qrtems: \ %{!qrtems: %(old_startfile)} %{qrtems: \
%{!qrtems_debug: idt_csu.o%s} \ %{!qrtems_debug: start.o%s} \
%{qrtems_debug: idt_csu_g.o%s}} %{qrtems_debug: start_g.o%s}}
*link: *link:
%{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start} %{!qrtems: %(old_link)} %{qrtems: -dc -dp -N -e start}

View File

@@ -29,7 +29,7 @@ MP_DRIVERS = $(MP_DRIVERS_$(HAS_MP)_V)
# wrapup is the one that actually builds and installs the library # wrapup is the one that actually builds and installs the library
# from the individual .rel files built in other directories # from the individual .rel files built in other directories
SUB_DIRS = include clock console startup startsim $(MP_DRIVERS) timer \ SUB_DIRS = include start clock console startup $(MP_DRIVERS) timer \
vectors wrapup tools vectors wrapup tools
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status

View File

@@ -15,8 +15,8 @@
*startfile: *startfile:
%{!qrtems: %(old_startfile)} %{qrtems: ecrti%O%s \ %{!qrtems: %(old_startfile)} %{qrtems: ecrti%O%s \
%{!qrtems_debug: startsim.o%s} \ %{!qrtems_debug: start.o%s} \
%{qrtems_debug: startsim_g.o%s}} %{qrtems_debug: start_g.o%s}}
*endfile: *endfile:
%{!qrtems: %(old_endfile)} %{qrtems: ecrtn%O%s} %{!qrtems: %(old_endfile)} %{qrtems: ecrtn%O%s}

View File

@@ -6,14 +6,14 @@
srcdir = @srcdir@ srcdir = @srcdir@
top_srcdir = @top_srcdir@ top_srcdir = @top_srcdir@
top_builddir = ../../.. top_builddir = ../../..
subdir = powerpc/psim/startsim subdir = powerpc/psim/start
RTEMS_ROOT = @RTEMS_ROOT@ RTEMS_ROOT = @RTEMS_ROOT@
PROJECT_ROOT = @PROJECT_ROOT@ PROJECT_ROOT = @PROJECT_ROOT@
VPATH = @srcdir@ VPATH = @srcdir@
PGMS = ${ARCH}/startsim.o PGM = ${ARCH}/start.o
# C source names, if any, go here -- minus the .c # C source names, if any, go here -- minus the .c
C_PIECES = C_PIECES =
@@ -23,7 +23,7 @@ C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
H_FILES = H_FILES =
# Assembly source names, if any, go here -- minus the .S # Assembly source names, if any, go here -- minus the .S
S_PIECES = startsim S_PIECES = start
S_FILES = $(S_PIECES:%=%.S) S_FILES = $(S_PIECES:%=%.S)
S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o) S_O_FILES = $(S_FILES:%.S=${ARCH}/%.o)