2008-08-12 Joel Sherrill <joel.sherrill@oarcorp.com>

* Makefile.am, preinstall.am: Add dummy linkcmds so autoconf tests work
	on installed BSP.
	* startup/linkcmds: New file.
This commit is contained in:
Joel Sherrill
2008-08-12 21:43:03 +00:00
parent 61bd749415
commit ec5916d7ae
4 changed files with 30 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2008-08-12 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, preinstall.am: Add dummy linkcmds so autoconf tests work
on installed BSP.
* startup/linkcmds: New file.
2008-08-08 Sebastian Huber <sebastian.huber@embedded-brains.de> 2008-08-08 Sebastian Huber <sebastian.huber@embedded-brains.de>
* startup/bspstart.c: Fixed calculation of bsp_click_per_usec. * startup/bspstart.c: Fixed calculation of bsp_click_per_usec.

View File

@@ -35,7 +35,8 @@ rtems_crti.$(OBJEXT): ../../powerpc/shared/start/rtems_crti.S
$(CPPASCOMPILE) -o $@ -c $< $(CPPASCOMPILE) -o $@ -c $<
project_lib_DATA += rtems_crti.$(OBJEXT) project_lib_DATA += rtems_crti.$(OBJEXT)
dist_project_lib_DATA += startup/linkcmds.base \ dist_project_lib_DATA += startup/linkcmds \
startup/linkcmds.base \
startup/linkcmds.mpc8313erdb \ startup/linkcmds.mpc8313erdb \
startup/linkcmds.mpc8349eamds \ startup/linkcmds.mpc8349eamds \
startup/linkcmds.hsc_cm01 startup/linkcmds.hsc_cm01

View File

@@ -70,6 +70,10 @@ $(PROJECT_LIB)/rtems_crti.$(OBJEXT): rtems_crti.$(OBJEXT) $(PROJECT_LIB)/$(dirst
$(INSTALL_DATA) $< $(PROJECT_LIB)/rtems_crti.$(OBJEXT) $(INSTALL_DATA) $< $(PROJECT_LIB)/rtems_crti.$(OBJEXT)
TMPINSTALL_FILES += $(PROJECT_LIB)/rtems_crti.$(OBJEXT) TMPINSTALL_FILES += $(PROJECT_LIB)/rtems_crti.$(OBJEXT)
$(PROJECT_LIB)/linkcmds: startup/linkcmds $(PROJECT_LIB)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_LIB)/linkcmds
PREINSTALL_FILES += $(PROJECT_LIB)/linkcmds
$(PROJECT_LIB)/linkcmds.base: startup/linkcmds.base $(PROJECT_LIB)/$(dirstamp) $(PROJECT_LIB)/linkcmds.base: startup/linkcmds.base $(PROJECT_LIB)/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_LIB)/linkcmds.base $(INSTALL_DATA) $< $(PROJECT_LIB)/linkcmds.base
PREINSTALL_FILES += $(PROJECT_LIB)/linkcmds.base PREINSTALL_FILES += $(PROJECT_LIB)/linkcmds.base

View File

@@ -0,0 +1,18 @@
/**
* @file
*
* Default linker script -- copy of linkcmds.mpc8313erdb
* for MPC8313E Reference Design Board.
*
* This exists simply for consistency so autoconf tests will
* be able to compile against this BSP.
*/
MEMORY {
RAM : ORIGIN = 0x0, LENGTH = 128M
ROM : ORIGIN = 0xfe000000, LENGTH = 8M
MPC83XX_REGS : ORIGIN = 0xe0000000, LENGTH = 256k
NIRVANA : ORIGIN = 0x0, LENGTH = 0
}
INCLUDE linkcmds.base