Module: xenomai-2.5
Branch: master
Commit: 5f8bf8560e27e6c7876f2cd2686748912b567ba4
URL:    
http://git.xenomai.org/?p=xenomai-2.5.git;a=commit;h=5f8bf8560e27e6c7876f2cd2686748912b567ba4

Author: Gilles Chanteperdrix <gilles.chanteperd...@xenomai.org>
Date:   Wed Oct 20 04:57:58 2010 +0200

build: bootstrap

---

 config/version                |    2 +-
 configure                     |   20 ++++++++++----------
 include/asm-arm/bits/timer.h  |    2 +-
 include/asm-x86/wrappers_64.h |    4 ++++
 include/nucleus/version.h     |    2 +-
 5 files changed, 17 insertions(+), 13 deletions(-)

diff --git a/config/version b/config/version
index a783672..e3ba625 100644
--- a/config/version
+++ b/config/version
@@ -1 +1 @@
-2.5.5.1
+2.5.5.2
diff --git a/configure b/configure
index 7b28e79..3b9ea25 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.65 for Xenomai 2.5.5.1.
+# Generated by GNU Autoconf 2.65 for Xenomai 2.5.5.2.
 #
 # Report bugs to <xenomai-h...@gna.org>.
 #
@@ -701,8 +701,8 @@ MAKEFLAGS=
 # Identity of this package.
 PACKAGE_NAME='Xenomai'
 PACKAGE_TARNAME='xenomai'
-PACKAGE_VERSION='2.5.5.1'
-PACKAGE_STRING='Xenomai 2.5.5.1'
+PACKAGE_VERSION='2.5.5.2'
+PACKAGE_STRING='Xenomai 2.5.5.2'
 PACKAGE_BUGREPORT='xenomai-h...@gna.org'
 PACKAGE_URL=''
 
@@ -1505,7 +1505,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures Xenomai 2.5.5.1 to adapt to many kinds of systems.
+\`configure' configures Xenomai 2.5.5.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1576,7 +1576,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of Xenomai 2.5.5.1:";;
+     short | recursive ) echo "Configuration of Xenomai 2.5.5.2:";;
    esac
   cat <<\_ACEOF
 
@@ -1742,7 +1742,7 @@ fi
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-Xenomai configure 2.5.5.1
+Xenomai configure 2.5.5.2
 generated by GNU Autoconf 2.65
 
 Copyright (C) 2009 Free Software Foundation, Inc.
@@ -2113,7 +2113,7 @@ cat >config.log <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by Xenomai $as_me 2.5.5.1, which was
+It was created by Xenomai $as_me 2.5.5.2, which was
 generated by GNU Autoconf 2.65.  Invocation command line was
 
   $ $0 $@
@@ -4639,7 +4639,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE='xenomai'
- VERSION='2.5.5.1'
+ VERSION='2.5.5.2'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -13489,7 +13489,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by Xenomai $as_me 2.5.5.1, which was
+This file was extended by Xenomai $as_me 2.5.5.2, which was
 generated by GNU Autoconf 2.65.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -13559,7 +13559,7 @@ _ACEOF
 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; 
s/[\\""\`\$]/\\\\&/g'`"
 ac_cs_version="\\
-Xenomai config.status 2.5.5.1
+Xenomai config.status 2.5.5.2
 configured by $0, generated by GNU Autoconf 2.65,
   with options \\"\$ac_cs_config\\"
 
diff --git a/include/asm-arm/bits/timer.h b/include/asm-arm/bits/timer.h
index 2f44edc..6c25ec4 100644
--- a/include/asm-arm/bits/timer.h
+++ b/include/asm-arm/bits/timer.h
@@ -34,7 +34,7 @@ extern rthal_u32frac_t rthal_tsc_to_timer;
 static inline void xnarch_program_timer_shot(unsigned long delay)
 {
        rthal_timer_program_shot(rthal_nodiv_imuldiv_ceil(delay,
-                                                         rthal_tsc_to_timer));
+                                                       rthal_tsc_to_timer));
 }
 
 static inline int xnarch_send_timer_ipi(xnarch_cpumask_t mask)
diff --git a/include/asm-x86/wrappers_64.h b/include/asm-x86/wrappers_64.h
index a61f6ba..0d04b9c 100644
--- a/include/asm-x86/wrappers_64.h
+++ b/include/asm-x86/wrappers_64.h
@@ -78,4 +78,8 @@ typedef union thread_xstate x86_fpustate;
 #define x86_fpustate_ptr(t) ((t)->fpu.state)
 #endif
 
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,34)
+#define per_cpu_var(var) (var)
+#endif /* Linux >= 2.6.34 */
+
 #endif /* _XENO_ASM_X86_WRAPPERS_64_H */
diff --git a/include/nucleus/version.h b/include/nucleus/version.h
index 9790164..83e9104 100644
--- a/include/nucleus/version.h
+++ b/include/nucleus/version.h
@@ -28,6 +28,6 @@
 
 #define XENO_VERSION_NAME      "Ghosts"
 
-#define XENO_VERSION_STRING    "2.5.5.1"
+#define XENO_VERSION_STRING    "2.5.5.2"
 
 #endif /* _XENO_NUCLEUS_VERSION_H */


_______________________________________________
Xenomai-git mailing list
Xenomai-git@gna.org
https://mail.gna.org/listinfo/xenomai-git

Reply via email to