/TizenRT

Tizen RT is a lightweight RTOS-based platform to support low-end IoT devices

Primary LanguageCApache License 2.0Apache-2.0

Tizen RT

License Build Status

lightweight RTOS-based platform to support low-end IoT devices.
Please find project details like APIs reference at docs folder. Wiki will be provided.

Contents

Quick Start
Supported Board
Configuration Sets
APPENDIX

Quick Start

Getting the toolchain

Get the build in binaries and libraries, gcc-arm-none-eabi-4_9-2015q3-20150921-linux.tar.bz2
Untar the gcc-arm-none-eabi-4_9-2015q3-20150921-linux.tar.bz2 and export the path like

tar xvjf gcc-arm-none-eabi-4_9-2015q3-20150921-linux.tar.bz2
export PATH=<Your Toolchain PATH>:$PATH

Getting the sources

git clone https://github.com/Samsung/TizenRT.git
cd TizenRT
TIZENRT_BASEDIR="$PWD"

How to Build

Configure the build from $TIZENRT_BASEDIR/os/tools directory

cd os/tools
./configure.sh <board>/<configuration_set>

For list of boards and configuration set supported, refer belows.
Above copies the canned configuration-set for the particular board, into the $TIZENRT_BASEDIR/os directory.
Configuration can be modified through make menuconfig from $TIZENRT_BASEDIR/os.

cd ..
make menuconfig

Refer kconfig-frontend installation to use menuconfig at APPENDIX

Finally, initiate build by make from $TIZENRT_BASEDIR/os.

make

Built binaries are in $TIZENRT_BASEDIR/build/output/bin.

Supported Board / Emulator

ARTIK053 [details]

SIDK_S5JT200 [details]

QEMU [details]

Configuration Sets

To build a Tizen RT application, use the default configuration files named defconfig under build/configs/<board>/<configuration_set> folder.
To customize your application with specific configuration settings, using the menuconfig tool is recommended at os folder as shown:

make menuconfig

Please keep in mind that we are actively working on board configurations, and will be posting our updates on the README files under each config

APPENDIX

Kconfig-frontends Installation

  1. The bison (or byacc if supported), flex, gperf, libncurses5-dev, zlib1g-dev, gettext and g++ packages should be installed:
sudo apt-get install bison flex gperf libncurses5-dev zlib1g-dev gettext g++
  1. Download and untar kconfig-frontends package.
    One of site is Yann Morin's Project
tar -xvf kconfig-frontends-x.xx.x.x.tar.bz2
  1. Go to kconfig-frontends folder
cd kconfig-frontends-x.xx.x.x
  1. Configure and Build
./configure --enable-mconf --disable-gconf --disable-qconf
make
sudo make install