2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>

* aclocal/check-custom-bsp.m4: Let _RTEMS_CHECK_CUSTOM_BSP look for
	*.cfg into c/src/lib/libbsp/<cpu>/<bsp_family>/make/custom.
This commit is contained in:
Ralf Corsepius
2009-10-15 03:50:38 +00:00
parent 614821e576
commit bc7353d5f2
4 changed files with 15 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/check-custom-bsp.m4: Let _RTEMS_CHECK_CUSTOM_BSP look for
*.cfg into c/src/lib/libbsp/<cpu>/<bsp_family>/make/custom.
2009-10-14 Ralf Corsepius <ralf.corsepius@rtems.org> 2009-10-14 Ralf Corsepius <ralf.corsepius@rtems.org>
* aclocal/canonical-target-name.m4, aclocal/enable-posix.m4: * aclocal/canonical-target-name.m4, aclocal/enable-posix.m4:

View File

@@ -5,7 +5,8 @@ AC_REQUIRE([RTEMS_CANONICAL_TARGET_CPU])dnl sets RTEMS_CPU, target
AC_REQUIRE([RTEMS_TOP])dnl sets RTEMS_TOPdir AC_REQUIRE([RTEMS_TOP])dnl sets RTEMS_TOPdir
$2= $2=
AC_MSG_CHECKING([for $1]) AC_MSG_CHECKING([for $1])
for i in "${srcdir}/${RTEMS_TOPdir}/bspkit/${RTEMS_CPU}"/*/cfg/"$1" \ for i in "${srcdir}/$RTEMS_TOPdir/c/src/lib/libbsp/$RTEMS_CPU"/*/make/custom/"$1" \
"${srcdir}/${RTEMS_TOPdir}/bspkit/${RTEMS_CPU}"/*/cfg/"$1" \
"${srcdir}/${RTEMS_TOPdir}/make/custom/$1"; "${srcdir}/${RTEMS_TOPdir}/make/custom/$1";
do do
AS_IF([test -r $i],[ AS_IF([test -r $i],[

View File

@@ -1,3 +1,8 @@
2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/check-custom-bsp.m4: Let _RTEMS_CHECK_CUSTOM_BSP look for
*.cfg into c/src/lib/libbsp/<cpu>/<bsp_family>/make/custom.
2009-10-14 Ralf Corsépius <ralf.corsepius@rtems.org> 2009-10-14 Ralf Corsépius <ralf.corsepius@rtems.org>
* aclocal/canonical-target-name.m4, aclocal/check-networking.m4, * aclocal/canonical-target-name.m4, aclocal/check-networking.m4,

View File

@@ -1,7 +1,9 @@
dnl $Id$ dnl $Id$
AC_DEFUN([_RTEMS_CHECK_CUSTOM_BSP],[ AC_DEFUN([_RTEMS_CHECK_CUSTOM_BSP],[
for i in "${srcdir}/${RTEMS_TOPdir}/bspkit/${RTEMS_CPU}"/*/cfg/$1.cfg \ $2=
for i in \
"${srcdir}/${RTEMS_TOPdir}/c/src/lib/libbsp/${RTEMS_CPU}"/*/make/custom/$1.cfg \
"${srcdir}/${RTEMS_TOPdir}/make/custom/"$1.cfg; "${srcdir}/${RTEMS_TOPdir}/make/custom/"$1.cfg;
do do
AC_MSG_CHECKING([for $i]) AC_MSG_CHECKING([for $i])