]> rtime.felk.cvut.cz Git - orte.git/log
orte.git
9 years agoIgnore _check directories sojka/refactor
Michal Sojka [Sat, 21 Mar 2015 22:57:31 +0000 (23:57 +0100)]
Ignore _check directories

9 years agoAdd simple test
Michal Sojka [Sat, 21 Mar 2015 22:07:58 +0000 (23:07 +0100)]
Add simple test

9 years agoORTEDomainCreate: Make domain the first parameter
Michal Sojka [Sat, 21 Mar 2015 18:13:52 +0000 (19:13 +0100)]
ORTEDomainCreate: Make domain the first parameter

9 years agoshape: Get rid of compiler warning
Michal Sojka [Sun, 15 Mar 2015 10:18:28 +0000 (11:18 +0100)]
shape: Get rid of compiler warning

9 years agoUse NTPTIME_INITIALIZER at other places
Michal Sojka [Sun, 15 Mar 2015 10:04:04 +0000 (11:04 +0100)]
Use NTPTIME_INITIALIZER at other places

Again, the goal is to make the code more readable.

9 years agoORTEDomain: Use initializers to initialize parameters
Michal Sojka [Sun, 15 Mar 2015 09:40:54 +0000 (10:40 +0100)]
ORTEDomain: Use initializers to initialize parameters

The code is more readable this way.

9 years agoImprove Emacs coding style settings
Michal Sojka [Sun, 15 Mar 2015 09:00:43 +0000 (10:00 +0100)]
Improve Emacs coding style settings

Do not indent declarations inside 'extern "C"' blocks.

9 years agoORTEDomainCreate: Refactor initialization of readers and writers
Michal Sojka [Wed, 11 Mar 2015 22:47:22 +0000 (23:47 +0100)]
ORTEDomainCreate: Refactor initialization of readers and writers

9 years agoORTEDomainCreate: Refactor creation of manager objects
Michal Sojka [Wed, 11 Mar 2015 22:20:37 +0000 (23:20 +0100)]
ORTEDomainCreate: Refactor creation of manager objects

9 years agoAdd comment
Michal Sojka [Wed, 11 Mar 2015 22:35:57 +0000 (23:35 +0100)]
Add comment

9 years agoRemove redundant statement
Michal Sojka [Wed, 11 Mar 2015 22:31:59 +0000 (23:31 +0100)]
Remove redundant statement

9 years agoORTEDomainCreate: Refactor application object creation
Michal Sojka [Wed, 11 Mar 2015 21:27:29 +0000 (22:27 +0100)]
ORTEDomainCreate: Refactor application object creation

9 years agoORTEDomainCreate: Refactor error handling
Michal Sojka [Wed, 11 Mar 2015 21:00:00 +0000 (22:00 +0100)]
ORTEDomainCreate: Refactor error handling

9 years agoORTEDomainCreate: Refactor socket binding
Michal Sojka [Wed, 11 Mar 2015 20:52:03 +0000 (21:52 +0100)]
ORTEDomainCreate: Refactor socket binding

9 years agoORTEDomainCreate: More refactoring
Michal Sojka [Wed, 11 Mar 2015 20:19:59 +0000 (21:19 +0100)]
ORTEDomainCreate: More refactoring

9 years agoORTEDomain: Refactor objectEntry initialization
Michal Sojka [Wed, 11 Mar 2015 19:58:58 +0000 (20:58 +0100)]
ORTEDomain: Refactor objectEntry initialization

9 years agoRemove set but not used variables
Michal Sojka [Wed, 11 Mar 2015 19:51:30 +0000 (20:51 +0100)]
Remove set but not used variables

This removes compiler warnings.

9 years agoORTEDomain: Refactor initialization of task properties
Michal Sojka [Wed, 11 Mar 2015 19:50:51 +0000 (20:50 +0100)]
ORTEDomain: Refactor initialization of task properties

9 years agoORTEDomain: Refactor generateLocalGUID
Michal Sojka [Wed, 11 Mar 2015 19:15:21 +0000 (20:15 +0100)]
ORTEDomain: Refactor generateLocalGUID

9 years agoFix typo in a comment
Michal Sojka [Wed, 11 Mar 2015 18:30:36 +0000 (19:30 +0100)]
Fix typo in a comment

9 years agoRemove extra 'x' from a debug message
Michal Sojka [Wed, 11 Mar 2015 18:11:20 +0000 (19:11 +0100)]
Remove extra 'x' from a debug message

9 years agoUpdate Makefile.rules the the latest version
Michal Sojka [Wed, 11 Mar 2015 18:07:03 +0000 (19:07 +0100)]
Update Makefile.rules the the latest version

9 years agoAdd orte_config.h for RTEMS
Michal Sojka [Sat, 14 Mar 2015 15:51:02 +0000 (16:51 +0100)]
Add orte_config.h for RTEMS

Since the previous commit, it is no longer possible to compile for Linux
and RTEMS with the same config file.

9 years agoUse CLOCK_MONOTONIC rather than CLOCK_REALTIME
Michal Sojka [Sat, 14 Mar 2015 15:39:35 +0000 (16:39 +0100)]
Use CLOCK_MONOTONIC rather than CLOCK_REALTIME

This changes the clock used internally by ORTE for timestamps in the
protocol and for timing of internal operations. Previously,
CLOCK_REALTIME was used, probably because it is the default clock used
by pthread_cond_timedwait(). Using CLOCK_REALTIME has the disadvantage
that the time can "jump", e.g. when the clock is adjusted by ntpdate.
This causes the applications to stop publishing, which results in them
disappearing from the domain even through their processes still run.

The solution implemented in this commit is to switch the clock to
CLOCK_MONOTONIC, which does not jump. This should have no effect at the
protocol level, because the semantic of timestamps is not defined in the
spec. This was also tested by running the implementations with and
without this change against each other.

In future, it might be a good idea to use different clocks for
timestamps in the protocol and for timing of internal operations (e.g.
ORTEAppSendThread()). I'm not sure what happens in the following two
cases:

1) When one node is suspended to RAM/disk, CLOCK_MONOTONIC stops for the
   time of suspension and it is not clear to me what other nodes that
   run continuously do when the suspended node resumes.

2) When a node is rebooted, the monotonic clock starts from zero, i.e.
   there is a "jump". I'm not sure, whether IDs of the application
   before and after reboot will be different. UDP ports, that are a part
   of the ID should be randomized, but the question is how good this
   randomization is. If the ID is the same before and after reboot some
   problems might also appear.

9 years agoFix linker error on recent MinGW
Michal Sojka [Sat, 14 Mar 2015 14:46:29 +0000 (15:46 +0100)]
Fix linker error on recent MinGW

Commit 5874e67aa7c5fb7b7f82163c1777480c0aaa1541 added -lrt for
compatibility with certain Linux distributions, but on recent MinGW,
this fails.

9 years agoUpdate uncrustify script to be usable in git-filter-branch
Michal Sojka [Sat, 14 Mar 2015 13:15:37 +0000 (14:15 +0100)]
Update uncrustify script to be usable in git-filter-branch

Now, it is possible to use 'git filter-branch --tree-filter orte/uncrustify'.

9 years agoBuild with last Android SDK works with aapt workaround.
jiri hubacek [Mon, 16 Feb 2015 17:10:39 +0000 (18:10 +0100)]
Build with last Android SDK works with aapt workaround.

9 years agoAdd relationship diagram of ORTE data structures
Michal Sojka [Mon, 9 Feb 2015 18:19:57 +0000 (19:19 +0100)]
Add relationship diagram of ORTE data structures

Thanks to Martin Vajnar.

9 years agoUpdate README for shape_android
Michal Sojka [Mon, 9 Feb 2015 17:44:51 +0000 (18:44 +0100)]
Update README for shape_android

9 years agoREADME added to shape_android.
jiri hubacek [Sun, 8 Feb 2015 20:01:25 +0000 (21:01 +0100)]
README added to shape_android.

9 years agoCosmetic modification.
jiri hubacek [Wed, 4 Feb 2015 16:32:17 +0000 (17:32 +0100)]
Cosmetic modification.

- default case in switch()
- space (instead of tab) after TODO

9 years agoWake lock added (prevent device from sleep).
jiri hubacek [Wed, 4 Feb 2015 09:52:43 +0000 (10:52 +0100)]
Wake lock added (prevent device from sleep).

9 years agoFix scaling.
jiri hubacek [Sun, 1 Feb 2015 20:43:24 +0000 (21:43 +0100)]
Fix scaling.

To be dependent only at destination width and height.

9 years agoUse proper types, change messages to Little Endian.
jiri hubacek [Sun, 1 Feb 2015 12:23:18 +0000 (13:23 +0100)]
Use proper types, change messages to Little Endian.

9 years agoFiles which should be omitted.
jiri hubacek [Sat, 31 Jan 2015 21:56:18 +0000 (22:56 +0100)]
Files which should be omitted.

9 years agoRefresh project properties
jiri hubacek [Sat, 31 Jan 2015 21:38:29 +0000 (22:38 +0100)]
Refresh project properties

9 years agoSimplified approach to write application.
jiri hubacek [Sat, 31 Jan 2015 19:51:17 +0000 (20:51 +0100)]
Simplified approach to write application.

- no need for fragments
- no need for complex approach to backward compatibility
- usable drawables choosen
- cs language added
- help added
- settings added

9 years agoMake 'shape4a' compatible with 'shape'.
jiri hubacek [Sat, 27 Sep 2014 19:26:33 +0000 (22:26 +0300)]
Make 'shape4a' compatible with 'shape'.

9 years agoInitial commit of shape4a v1.0 - shape for android.
jiri hubacek [Sat, 20 Sep 2014 07:44:00 +0000 (10:44 +0300)]
Initial commit of shape4a v1.0 - shape for android.

9 years agoReformat the sources with orte/uncrustify script
Michal Sojka [Mon, 9 Feb 2015 16:45:53 +0000 (17:45 +0100)]
Reformat the sources with orte/uncrustify script

9 years agoChange uncrustify configuration according to discussion with Pavel
Michal Sojka [Mon, 9 Feb 2015 16:42:46 +0000 (17:42 +0100)]
Change uncrustify configuration according to discussion with Pavel

9 years agoDon't have a comment between return type and function name
Michal Sojka [Mon, 9 Feb 2015 16:29:57 +0000 (17:29 +0100)]
Don't have a comment between return type and function name

9 years agoAdd configuration for uncrustify
Michal Sojka [Sat, 7 Feb 2015 12:21:22 +0000 (13:21 +0100)]
Add configuration for uncrustify

The formatting of ORTE source code is messy. To unify the formatting at
least a bit, we will use the uncrustify tool. This commit adds
uncrustify configuration tuned for ORTE sources and a helper script that
call uncrustify on all relevant files.

9 years agoFix missing references to clock_gettime for OMK build under Linux.
Pavel Pisa [Tue, 7 Oct 2014 22:43:47 +0000 (00:43 +0200)]
Fix missing references to clock_gettime for OMK build under Linux.

Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
9 years agoFix deinitialization in an error path
Michal Sojka [Mon, 6 Oct 2014 23:19:48 +0000 (01:19 +0200)]
Fix deinitialization in an error path

9 years agoFix check-java Makefile target to work with older ant version
Michal Sojka [Mon, 19 Jan 2015 15:50:37 +0000 (16:50 +0100)]
Fix check-java Makefile target to work with older ant version

9 years agoSimplify check target in Makefile.git
Michal Sojka [Mon, 19 Jan 2015 15:30:07 +0000 (16:30 +0100)]
Simplify check target in Makefile.git

9 years agoVarious autoconf updates and fixes
Michal Sojka [Mon, 19 Jan 2015 14:16:01 +0000 (15:16 +0100)]
Various autoconf updates and fixes

9 years agoRemove useless condition
Michal Sojka [Fri, 16 Jan 2015 12:10:13 +0000 (13:10 +0100)]
Remove useless condition

I did small investigation whether the second condition should compare
something else or not and it seems that no other comparison is necessary.
Therefore I believe that removing this rather than changing it to something
else is the correct thing to do.

Thanks to Martin Strunz for spotting this.

9 years agoRTEMS: QEMU provides ETHERNET HW address so there is no need to setup it in application.
Pavel Pisa [Sun, 2 Nov 2014 16:30:20 +0000 (17:30 +0100)]
RTEMS: QEMU provides ETHERNET HW address so there is no need to setup it in application.

Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
9 years agoRTEMS: alternative example network configuration for ne2k card under QEMU.
Pavel Pisa [Sun, 2 Nov 2014 16:21:32 +0000 (17:21 +0100)]
RTEMS: alternative example network configuration for ne2k card under QEMU.

This allows to run example build for pc686 board in QEMU
with networking

qemu-system-i386 -kernel _compiled/pc686/bin/orte_rtems_shell_example \
  -net nic,vlan=0,model=ne2k_isa \
  -net tap,script=/etc/qemu-ifup

Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
9 years agoRTEMS: use DHCP network configuartion for shell example.
Pavel Pisa [Sun, 2 Nov 2014 16:11:31 +0000 (17:11 +0100)]
RTEMS: use DHCP network configuartion for shell example.

Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
9 years agoFunction ReleaseStringUTFChars() needs jstring as 2nd argument instead of PublProp...
jiri hubacek [Sun, 21 Sep 2014 10:12:34 +0000 (13:12 +0300)]
Function ReleaseStringUTFChars() needs jstring as 2nd argument instead of PublProp/SubsProp object.

9 years agoROBOT_DEMO: reduce WifiLocks usage
Martin Vajnar [Tue, 8 Apr 2014 11:48:31 +0000 (13:48 +0200)]
ROBOT_DEMO: reduce WifiLocks usage

Use WifiLock only for MotionSpeedPublisher.

9 years agoJORTE: fix bug in subscriber callback
Martin Vajnar [Tue, 8 Apr 2014 08:51:27 +0000 (10:51 +0200)]
JORTE: fix bug in subscriber callback

This fixes a rarely occurring bug in subscriber callback.

When a Java subscriber is being destroyed, during the process
a JORTECallbackContext_t structure, used for storing pointers to Java objects,
was free()'d. If this occurred when new issue had arrived and was being
processed by the receive thread, then the pointer to the, now non-existent,
callback structure would have been dereferenced, leading to a SEGFAULT.

To fix this we now create a pointer to pointer to the specific structure
and pass this pointer to ORTESubcriptionCreate() and use it from the recvCallBack().

9 years agoRoboDruid: use Toasts for short messages
Martin Vajnar [Tue, 4 Feb 2014 19:57:42 +0000 (20:57 +0100)]
RoboDruid: use Toasts for short messages

9 years agoRoboDruid: make release build
Martin Vajnar [Sun, 2 Feb 2014 12:37:44 +0000 (13:37 +0100)]
RoboDruid: make release build

9 years agoRoboDruid: organize classes into packages
Martin Vajnar [Sat, 1 Feb 2014 17:19:11 +0000 (18:19 +0100)]
RoboDruid: organize classes into packages

9 years agoRoboDruid: improve handling of short taps
Martin Vajnar [Thu, 23 Jan 2014 22:19:36 +0000 (23:19 +0100)]
RoboDruid: improve handling of short taps

9 years agoRoboDruid: toggle Hokuyo output and speed control/monitor by touch input
Martin Vajnar [Wed, 22 Jan 2014 23:19:14 +0000 (00:19 +0100)]
RoboDruid: toggle Hokuyo output and speed control/monitor by touch input

Single tap on Hokuyo output starts/stops subscriber.
Single tap on speed vector starts/stops subscriber,
long tap starts/stops publisher.

9 years agoDocument gAVL, linked list and queue declaration
Martin Vajnar [Sun, 11 May 2014 18:51:50 +0000 (20:51 +0200)]
Document gAVL, linked list and queue declaration

10 years agoAdd missing FREE()
Michal Sojka [Mon, 5 May 2014 12:18:00 +0000 (14:18 +0200)]
Add missing FREE()

Thanks to Martin Strunz <martfi@aol.com> for noticing
this.

10 years agoDocument gAVL declaration
Michal Sojka [Tue, 15 Apr 2014 08:38:38 +0000 (10:38 +0200)]
Document gAVL declaration

10 years agoRTEMS: actual RTEMS git sources do not provide CONFIGURE_NUMBER_OF_DRIVERS define.
Pavel Pisa [Sun, 13 Apr 2014 11:17:08 +0000 (13:17 +0200)]
RTEMS: actual RTEMS git sources do not provide CONFIGURE_NUMBER_OF_DRIVERS define.

There is only one version of table - actual runtime version.
The read-only table with initialization data is not present
and cannot be used for to compute number of entries of config
harcoded drivers set (CONFIGURE_NUMBER_OF_DRIVERS).

Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
10 years agoRTEMS: allocate space for POSIX keys which are required by current RTEMS shell version.
Pavel Pisa [Sun, 13 Apr 2014 11:07:03 +0000 (13:07 +0200)]
RTEMS: allocate space for POSIX keys which are required by current RTEMS shell version.

Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
10 years agoInitial version of Debian packaging
Michal Sojka [Sat, 15 Mar 2014 22:49:23 +0000 (23:49 +0100)]
Initial version of Debian packaging

10 years agoorte-idl: Fix possible security problem
Michal Sojka [Sun, 16 Mar 2014 00:40:03 +0000 (01:40 +0100)]
orte-idl: Fix possible security problem

10 years agoUpdate versioning of shared libraries
Michal Sojka [Sat, 15 Mar 2014 23:48:48 +0000 (00:48 +0100)]
Update versioning of shared libraries

Previously, we used -release to specify the SONAME, which would cause
binary incompatibility between releases even if the library is not
changed at all.  Additionally, libtool interface numbers were derived
from relase number in an undocumented way. This is removed as well and
now we have to modify SONAME manually, when the interface changes.

10 years agoRevert "Compile shared library by default"
Michal Sojka [Tue, 4 Mar 2014 15:45:50 +0000 (16:45 +0100)]
Revert "Compile shared library by default"

This reverts commit 9c71dc94e674c0ef52efabcd3dbddebceb2dc5f4.

OMK is broken and some things do not work when shared libraries are
created. This has to wait for later. If you need shared library, use
automake-based build.

10 years agoCompile shared library by default
Michal Sojka [Tue, 4 Mar 2014 15:37:15 +0000 (16:37 +0100)]
Compile shared library by default

10 years agoFix reported problem "compile error on cygwin"
Pavel Pisa [Thu, 14 Nov 2013 13:02:50 +0000 (14:02 +0100)]
Fix reported problem "compile error on cygwin"

The Windows service support in ORTE manager is enabled
now for Cygwin build as well. Build under MINGW has been
tested but some external volunteer is required for Cygwin
environment test.

Another option is to add config option which allows
to specify if Windows service support should or should not
be build.

Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
10 years agoExtend and correct RTEMS instructions README file.
Pavel Pisa [Thu, 14 Nov 2013 12:01:58 +0000 (13:01 +0100)]
Extend and correct RTEMS instructions README file.

Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
10 years agoDocument and made more straightforward RTEMS build.
Pavel Pisa [Thu, 14 Nov 2013 11:59:18 +0000 (12:59 +0100)]
Document and made more straightforward RTEMS build.

The local copy of OMK Makefile.rules for RTEMS
is included

  Makefile.rules.rtems

and RTEMS build is documented

  README.rtems

Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
10 years agoBump version to 0.3.4 v0.3.4
Michal Sojka [Mon, 28 Oct 2013 21:33:52 +0000 (22:33 +0100)]
Bump version to 0.3.4

10 years agoAdd 0.3.4 release notes
Michal Sojka [Mon, 28 Oct 2013 21:29:44 +0000 (22:29 +0100)]
Add 0.3.4 release notes

10 years agoFix dist makefile target
Michal Sojka [Mon, 28 Oct 2013 21:29:04 +0000 (22:29 +0100)]
Fix dist makefile target

10 years agoUpdate README.windows
Michal Sojka [Mon, 28 Oct 2013 21:05:08 +0000 (22:05 +0100)]
Update README.windows

10 years agoAdd checks for omk builds
Michal Sojka [Mon, 28 Oct 2013 20:58:58 +0000 (21:58 +0100)]
Add checks for omk builds

10 years agoFix check target
Michal Sojka [Mon, 28 Oct 2013 20:41:46 +0000 (21:41 +0100)]
Fix check target

10 years agoFix the check for Java build
Michal Sojka [Mon, 28 Oct 2013 20:39:55 +0000 (21:39 +0100)]
Fix the check for Java build

10 years agoDo not use ugly directory names for Java build results
Michal Sojka [Mon, 28 Oct 2013 20:38:20 +0000 (21:38 +0100)]
Do not use ugly directory names for Java build results

10 years agoUpdate of local copy of Windows pthreads library to MinGW-w64 winpthreads.
Pavel Pisa [Mon, 28 Oct 2013 20:46:36 +0000 (21:46 +0100)]
Update of local copy of Windows pthreads library to MinGW-w64 winpthreads.

Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>
10 years agoAdd newly tested platforms
Michal Sojka [Mon, 28 Oct 2013 20:13:02 +0000 (21:13 +0100)]
Add newly tested platforms

10 years agoAdd android build check
Michal Sojka [Mon, 28 Oct 2013 20:04:51 +0000 (21:04 +0100)]
Add android build check

10 years agoRemove 'cd' from check commands
Michal Sojka [Mon, 28 Oct 2013 19:52:45 +0000 (20:52 +0100)]
Remove 'cd' from check commands

10 years agoRemove dist from OMK makefile
Michal Sojka [Mon, 28 Oct 2013 19:42:24 +0000 (20:42 +0100)]
Remove dist from OMK makefile

OMK leaks unwanted environment variables to the Makefile.cvs.

10 years agoPerform compilation checks with --enable-orte-idl
Michal Sojka [Mon, 28 Oct 2013 19:28:13 +0000 (20:28 +0100)]
Perform compilation checks with --enable-orte-idl

10 years agoUpdate README.android
Michal Sojka [Mon, 28 Oct 2013 19:27:29 +0000 (20:27 +0100)]
Update README.android

10 years agoMove robot demo to contrib/
Michal Sojka [Mon, 28 Oct 2013 19:19:36 +0000 (20:19 +0100)]
Move robot demo to contrib/

10 years agoCheck whether windows dll is produced
Michal Sojka [Mon, 28 Oct 2013 16:22:36 +0000 (17:22 +0100)]
Check whether windows dll is produced

10 years agoROBOT_DEMO: use new constants and fix behavior of callback functions
Martin Vajnar [Sun, 20 Oct 2013 16:07:55 +0000 (18:07 +0200)]
ROBOT_DEMO: use new constants and fix behavior of callback functions

Test the receive status to see whether the callback function was called
because of new new data reception or because of a deadline expiration.

10 years agoJORTE: add missing constants from "typedefs_api.h"
Martin Vajnar [Sun, 20 Oct 2013 16:04:50 +0000 (18:04 +0200)]
JORTE: add missing constants from "typedefs_api.h"

10 years agoupdated email address - petr@smoliku.cz
Petr Smolik [Sat, 19 Oct 2013 21:09:18 +0000 (23:09 +0200)]
updated email address - petr@smoliku.cz

Signed-off-by: Petr Smolik <petr@smoliku.cz>
10 years agoTry multiple mingw compilers
Michal Sojka [Tue, 15 Oct 2013 14:38:40 +0000 (16:38 +0200)]
Try multiple mingw compilers

I have different mingw compile on Debian stable and unstable. This
makes the check run on both my systems.

Note however, that with i686-w64-mingw32, compilation currently fails.

10 years agoAdd various build checks
Michal Sojka [Mon, 14 Oct 2013 22:15:48 +0000 (00:15 +0200)]
Add various build checks

10 years agoRename Makefile.cvs to Makefile.git
Michal Sojka [Mon, 14 Oct 2013 21:36:53 +0000 (23:36 +0200)]
Rename Makefile.cvs to Makefile.git

10 years agoReformat and update README
Michal Sojka [Mon, 14 Oct 2013 21:35:10 +0000 (23:35 +0200)]
Reformat and update README

10 years agoRename readme to README
Michal Sojka [Mon, 14 Oct 2013 21:26:08 +0000 (23:26 +0200)]
Rename readme to README

10 years agoRename android_compile to README.android and reformat it
Michal Sojka [Mon, 14 Oct 2013 21:25:37 +0000 (23:25 +0200)]
Rename android_compile to README.android and reformat it

10 years agoCorrect OMK build to compile ORTE manager by default. origin/master
Pavel Pisa [Fri, 4 Oct 2013 15:35:58 +0000 (17:35 +0200)]
Correct OMK build to compile ORTE manager by default.

Signed-off-by: Pavel Pisa <pisa@cmp.felk.cvut.cz>