[PATCH] Fix wrong command hint in case of error

2018-12-02 Thread kaidoho
---
 aclocal/enable-rtemsbsp.m4 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/aclocal/enable-rtemsbsp.m4 b/aclocal/enable-rtemsbsp.m4
index 91ab607751..f0b391bbb8 100644
--- a/aclocal/enable-rtemsbsp.m4
+++ b/aclocal/enable-rtemsbsp.m4
@@ -38,7 +38,7 @@ AC_ARG_ENABLE(rtemsbsp,
  ${cfg_arch}* )
;;
  * )
-   AC_MSG_ERROR([BSP '$bsp' architecture does not match the 
--target architecture, run 'rtems-bsp' (in the top of the source tree) for a 
valid BSP list])
+   AC_MSG_ERROR([BSP '$bsp' architecture does not match the 
--target architecture, run 'rtems-bsps' (in the top of the source tree) for a 
valid BSP list])
;;
esac
found=yes
@@ -46,7 +46,7 @@ AC_ARG_ENABLE(rtemsbsp,
  fi
done
if test $found = no; then
- AC_MSG_ERROR([BSP '$bsp' not found, run 'rtems-bsp' (in the top of 
the source tree) for a valid BSP list])
+ AC_MSG_ERROR([BSP '$bsp' not found, run 'rtems-bsps' (in the top of 
the source tree) for a valid BSP list])
fi
  done
  ;;
-- 
2.16.2.windows.1

___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel


[PATCH] Fix typo in configure switch

2018-12-09 Thread kaidoho
---
 eclipse/rtems.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclipse/rtems.rst b/eclipse/rtems.rst
index ff3c421..a82f319 100644
--- a/eclipse/rtems.rst
+++ b/eclipse/rtems.rst
@@ -215,7 +215,7 @@ directory (--prefix)** to the RTEMS Kernel prefix of
 
 We disable networking to use the external LibBSD package and set the BSP to
 ``pc686``. Select the **Advanced** and in the **Additional command-line
-options** enter ``--disable-networking`` and ``--enable-rtemsbsps=pc686``. You
+options** enter ``--disable-networking`` and ``--enable-rtemsbsp=pc686``. You
 can add extra options you may need:
 
 .. figure:: ../images/eclipse/eclipse-rtems-git-prop-at-add-opts.png
-- 
2.17.1

___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel


[PATCH] Fix: File without suffix duplicates expm1.c

2018-12-17 Thread kaidoho
File expm1.c contains the latest licence header, source code is same.
---
 testsuites/psxtests/psxhdrs/math/expm1. | 38 -
 1 file changed, 38 deletions(-)
 delete mode 100644 testsuites/psxtests/psxhdrs/math/expm1.

diff --git a/testsuites/psxtests/psxhdrs/math/expm1. 
b/testsuites/psxtests/psxhdrs/math/expm1.
deleted file mode 100644
index bef42e1373..00
--- a/testsuites/psxtests/psxhdrs/math/expm1.
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- *  @file
- *  @brief exp() API Conformance Test
- */
-
- /*
-  *  COPYRIGHT (c) 2018.
-  *  Shashvat Jain
-  *
-  *  Permission to use, copy, modify, and/or distribute this software
-  *  for any purpose with or without fee is hereby granted.
-  *
-  *  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
-  *  WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
-  *  WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
-  *  BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
-  *  OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
-  *  WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
-  *  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS 
SOFTWARE.
-  */
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include 
-
-int test( void );
-
-int test( void )
-{
-  double x = 0 ;
-  double result ;
-
-  result = expm1(x) ;
-
-  return (result);
-}
-- 
2.16.2.windows.1

___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel


[PATCH] FIXED: wrong configure switch for stm32f4 BSP

2019-01-13 Thread kaidoho
---
 c/src/lib/libbsp/arm/stm32f4/configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/c/src/lib/libbsp/arm/stm32f4/configure.ac 
b/c/src/lib/libbsp/arm/stm32f4/configure.ac
index 7b621aa6d4..00ca0b73ae 100644
--- a/c/src/lib/libbsp/arm/stm32f4/configure.ac
+++ b/c/src/lib/libbsp/arm/stm32f4/configure.ac
@@ -32,7 +32,7 @@ RTEMS_BSPOPTS_SET([STM32F4_PCLK1],[stm32f1*],[800])
 RTEMS_BSPOPTS_SET([STM32F4_PCLK1],[*],[1600])
 RTEMS_BSPOPTS_HELP([STM32F4_PCLK1],[PCLK1 frequency in Hz])
 
-RTEMS_BSPOPTS_SET([STM32F4_PCLK1],[stm32f1*],[800])
+RTEMS_BSPOPTS_SET([STM32F4_PCLK2],[stm32f1*],[800])
 RTEMS_BSPOPTS_SET([STM32F4_PCLK2],[*],[1600])
 RTEMS_BSPOPTS_HELP([STM32F4_PCLK2],[PCLK2 frequency in Hz])
 
-- 
2.20.1.windows.1

___
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel