rtos/tinyara.git
6 years agoMerge pull request #363 from junmin-kim/qemu_gdb
sunghan-chang [Fri, 11 Aug 2017 04:21:39 +0000 (13:21 +0900)]
Merge pull request #363 from junmin-kim/qemu_gdb

Enable gdb on qemu

6 years agoEnable gdb on QEMU
junmin kim [Tue, 8 Aug 2017 11:13:17 +0000 (04:13 -0700)]
Enable gdb on QEMU

1. add gdb setting on QEMU execution
2. enable CONFIG_DEBUG_SYMBOLS
3. modify README for GDB

6 years agoMerge pull request #383 from olegartys/951
Taejun-Kwon [Thu, 10 Aug 2017 09:32:19 +0000 (18:32 +0900)]
Merge pull request #383 from olegartys/951

arch/artik053/Kconfig: selecting MTD_PARTITION without MTD is an error

6 years agoMerge pull request #371 from olegartys/859
sunghan-chang [Thu, 10 Aug 2017 09:09:17 +0000 (18:09 +0900)]
Merge pull request #371 from olegartys/859

fs: fix config name for smartfs exclusion from procfs

6 years agoMerge pull request #386 from olegartys/948
sunghan-chang [Thu, 10 Aug 2017 09:07:15 +0000 (18:07 +0900)]
Merge pull request #386 from olegartys/948

apps/fscmd: hide util 'df' if mountpoints are disabled

6 years agoMerge pull request #385 from olegartys/952
Taejun-Kwon [Thu, 10 Aug 2017 09:02:55 +0000 (18:02 +0900)]
Merge pull request #385 from olegartys/952

fs/mtd/Kconfig: fixed MTD menuconfig suboptions visibility

6 years agoMerge pull request #388 from olegartys/940
Taejun-Kwon [Thu, 10 Aug 2017 09:02:14 +0000 (18:02 +0900)]
Merge pull request #388 from olegartys/940

fs/procfs: make FS_PROCFS option visible only with mountpoints enabled

6 years agoMerge pull request #367 from pillip8282/net_header_arrange
sunghan-chang [Thu, 10 Aug 2017 06:00:22 +0000 (15:00 +0900)]
Merge pull request #367 from pillip8282/net_header_arrange

Delete unused header files in network

6 years agoMerge pull request #375 from olegartys/869
sunghan-chang [Thu, 10 Aug 2017 05:36:42 +0000 (14:36 +0900)]
Merge pull request #375 from olegartys/869

drivers/rwbuffer: fix wrong arguments order during 'rwb->rhreload' call

6 years agoMerge pull request #380 from olegartys/958
sunghan-chang [Thu, 10 Aug 2017 05:29:58 +0000 (14:29 +0900)]
Merge pull request #380 from olegartys/958

apps/readline: check whether CONFIG_EOL_IS_EITHER_CRLF is defined

6 years agoMerge pull request #373 from olegartys/858
sunghan-chang [Thu, 10 Aug 2017 04:33:56 +0000 (13:33 +0900)]
Merge pull request #373 from olegartys/858

s5j/rtc: fix missing brackets for RTC alarm registers

6 years agoMerge pull request #370 from olegartys/871
sunghan-chang [Thu, 10 Aug 2017 04:32:04 +0000 (13:32 +0900)]
Merge pull request #370 from olegartys/871

pm/pm_test: fix 'unused variable'

6 years agoMerge pull request #369 from olegartys/870
sunghan-chang [Thu, 10 Aug 2017 04:26:48 +0000 (13:26 +0900)]
Merge pull request #369 from olegartys/870

drivers/rwbuffer: fix 'unused variable'

6 years agoMerge pull request #362 from olegartys/master
sunghan-chang [Thu, 10 Aug 2017 04:20:07 +0000 (13:20 +0900)]
Merge pull request #362 from olegartys/master

libc: fix 'casting pointer to integer of different size' compiler warnings

6 years agoClean up unused header files in network module
kang [Wed, 9 Aug 2017 04:38:10 +0000 (13:38 +0900)]
Clean up unused header files in network module

Delete network header files that is not used anymore.
For example pkt.h, tcp.h, udp.h are come from uIP removed.
And modify the location of header files not matched

6 years agofs/procfs: make FS_PROCFS option visible only with mountpoints enabled
Oleg Lyovin [Mon, 17 Jul 2017 09:45:33 +0000 (12:45 +0300)]
fs/procfs: make FS_PROCFS option visible only with mountpoints enabled

Signed-off-by: Oleg Lyovin <o.lyovin@partner.samsung.com>
6 years agoapps/fscmd: hide util 'df' if mountpoints are disabled
Oleg Lyovin [Tue, 18 Jul 2017 15:29:12 +0000 (18:29 +0300)]
apps/fscmd: hide util 'df' if mountpoints are disabled

* 'df' utilities task is to show filesystem info, but it
  is meaningless when mountpoints are disabled and hence
  no user filesystems are supported.

Signed-off-by: Oleg Lyovin <o.lyovin@partner.samsung.com>
6 years agofs/mtd/Kconfig: fixed MTD menuconfig suboptions visibility
Oleg Lyovin [Thu, 20 Jul 2017 12:21:03 +0000 (15:21 +0300)]
fs/mtd/Kconfig: fixed MTD menuconfig suboptions visibility

Signed-off-by: Oleg Lyovin <o.lyovin@partner.samsung.com>
6 years agoarch/artik053/Kconfig: selecting MTD_PARTITION without MTD is an error
Oleg Lyovin [Thu, 20 Jul 2017 12:18:48 +0000 (15:18 +0300)]
arch/artik053/Kconfig: selecting MTD_PARTITION without MTD is an error

* MTD_PARTITION option is supported only when MTD support is enabled.

Signed-off-by: Oleg Lyovin <o.lyovin@partner.samsung.com>
6 years agoapps/readline: check whether CONFIG_EOL_IS_EITHER_CRLF is defined
Oleg Lyovin [Mon, 24 Jul 2017 08:37:03 +0000 (11:37 +0300)]
apps/readline: check whether CONFIG_EOL_IS_EITHER_CRLF is defined

* We should check whether CONFIG_EOL_IS_EITHER_CRLF is defined,
  instead of checking it's value.

Signed-off-by: Oleg Lyovin <o.lyovin@partner.samsung.com>
6 years agodrivers/rwbuffer: fix wrong arguments order during 'rwb->rhreload' call
Oleg Lyovin [Wed, 12 Jul 2017 10:29:34 +0000 (13:29 +0300)]
drivers/rwbuffer: fix wrong arguments order during 'rwb->rhreload' call

Signed-off-by: Oleg Lyovin <o.lyovin@partner.samsung.com>
6 years agos5j/rtc: fix missing brackets for RTC alarm registers
Oleg Lyovin [Fri, 7 Jul 2017 14:34:58 +0000 (17:34 +0300)]
s5j/rtc: fix missing brackets for RTC alarm registers

Change-Id: I3ee297c9a4a628d774f899d43655e54fa6efb98f
Signed-off-by: Oleg Lyovin <o.lyovin@partner.samsung.com>
6 years agofs: fix config name for smartfs exclusion from procfs
Oleg Lyovin [Thu, 6 Jul 2017 12:24:08 +0000 (15:24 +0300)]
fs: fix config name for smartfs exclusion from procfs

Smartfs info can be excluded from procfs by enabling
FS_PROCFS_EXCLUDE_SMARTFS config, but in smartfs_procfs
there was syntax error with wrong config name.

Signed-off-by: Oleg Lyovin <o.lyovin@partner.samsung.com>
6 years agopm/pm_test: fix 'unused variable'
Oleg Lyovin [Mon, 10 Jul 2017 12:55:13 +0000 (15:55 +0300)]
pm/pm_test: fix 'unused variable'

Signed-off-by: Oleg Lyovin <o.lyovin@partner.samsung.com>
6 years agodrivers/rwbuffer: fix 'unused variable'
Oleg Lyovin [Wed, 12 Jul 2017 10:31:10 +0000 (13:31 +0300)]
drivers/rwbuffer: fix 'unused variable'

Signed-off-by: Oleg Lyovin <o.lyovin@partner.samsung.com>
6 years agoMerge pull request #360 from jeongarmy/ttrace
sunghan-chang [Wed, 9 Aug 2017 10:25:19 +0000 (19:25 +0900)]
Merge pull request #360 from jeongarmy/ttrace

Update ttrace

6 years agoUnify show_packet and show_sched_packet functions
Ahreum Jeong [Wed, 9 Aug 2017 05:18:59 +0000 (14:18 +0900)]
Unify show_packet and show_sched_packet functions

6 years agoAdd a conditional for ttrace debugging to show_packet function
Ahreum Jeong [Wed, 9 Aug 2017 04:06:10 +0000 (13:06 +0900)]
Add a conditional for ttrace debugging to show_packet function

6 years agoAdd doxygen for ttrace APIs
Ahreum Jeong [Tue, 8 Aug 2017 08:31:56 +0000 (17:31 +0900)]
Add doxygen for ttrace APIs

6 years agoMove a conditional for cplusplus down to include functions only
Ahreum Jeong [Wed, 9 Aug 2017 09:59:46 +0000 (18:59 +0900)]
Move a conditional for cplusplus down to include functions only

6 years agoAdd space to follow coding rule in thread_create
Ahreum Jeong [Mon, 7 Aug 2017 06:13:10 +0000 (15:13 +0900)]
Add space to follow coding rule in thread_create

6 years agoUnify header files for ttrace.
Ahreum Jeong [Fri, 4 Aug 2017 09:11:57 +0000 (18:11 +0900)]
Unify header files for ttrace.
It should be in os/include/tinyara folder because ttrace is a special feature, not common for TizenRT

6 years agoImplement dump mode in ttrace_tinyara.py
joon.c.baek [Fri, 14 Jul 2017 06:26:03 +0000 (15:26 +0900)]
Implement dump mode in ttrace_tinyara.py

1. Add options '-d' for dump.
2. Support artik053 device
3. User can use ttrace_tinyara.py only to get HTML report.

Signed-Off-by : Changjoon.Baek

6 years agoImproving T-trace usabilities
joon.c.baek [Wed, 28 Jun 2017 04:56:24 +0000 (13:56 +0900)]
Improving T-trace usabilities

1. Add overwrite feature with '-o' option.
   To overwrite feature, Add ringbuf to T-race driver layer.
2. Improve information option('-i').
   It'll show more information about tags, buffer status.
3. Prevent buffer overflow during string copying.
4. Correct several typo errors and messages.

Signed-off-by: joon.c.baek <joon.c.baek@samsung.com>
6 years agolibc: fix 'casting pointer to integer of different size' compiler warnings
Oleg Lyovin [Tue, 4 Jul 2017 10:38:51 +0000 (13:38 +0300)]
libc: fix 'casting pointer to integer of different size' compiler warnings

This change comes from nuttx source tree.

Signed-off-by: Oleg Lyovin <o.lyovin@partner.samsung.com>
6 years agoMerge pull request #361 from alswnzla/kernel_stkopt
sunghan-chang [Wed, 9 Aug 2017 07:53:40 +0000 (16:53 +0900)]
Merge pull request #361 from alswnzla/kernel_stkopt

Add new TASH Command named stkopt

6 years agoAdd new TASH Command named stkopt
minju [Tue, 8 Aug 2017 08:35:01 +0000 (17:35 +0900)]
Add new TASH Command named stkopt

6 years agoMerge pull request #312 from thapav/libc_pthread
sunghan-chang [Wed, 9 Aug 2017 06:10:35 +0000 (15:10 +0900)]
Merge pull request #312 from thapav/libc_pthread

Libc pthread Modify return value as per POSIX standard

6 years agoMerge pull request #364 from sunghan-chang/master
btheosam [Wed, 9 Aug 2017 05:16:05 +0000 (14:16 +0900)]
Merge pull request #364 from sunghan-chang/master

add scsi.h to use usbmsc functionality

6 years agoadd scsi.h to use usbmsc functionality
sunghan [Tue, 8 Aug 2017 11:38:17 +0000 (20:38 +0900)]
add scsi.h to use usbmsc functionality

6 years agoMerge pull request #359 from sunghan-chang/master
btheosam [Tue, 8 Aug 2017 05:01:02 +0000 (14:01 +0900)]
Merge pull request #359 from sunghan-chang/master

clean codes

6 years agoMerge pull request #358 from jeongchanKim/kernel_tashcmd
sunghan-chang [Tue, 8 Aug 2017 04:15:13 +0000 (13:15 +0900)]
Merge pull request #358 from jeongchanKim/kernel_tashcmd

Rename CONFIG_TASH_TELNET_INTERFACE to CONFIG_TASH_COMMAND_INTERFACE

6 years agoRename CONFIG_TASH_TELNET_INTERFACE to CONFIG_TASH_COMMAND_INTERFACE
jc_.kim [Mon, 7 Aug 2017 09:01:42 +0000 (18:01 +0900)]
Rename CONFIG_TASH_TELNET_INTERFACE to CONFIG_TASH_COMMAND_INTERFACE

6 years agomodify wrong path for mtd.h
sunghan [Mon, 7 Aug 2017 10:23:14 +0000 (19:23 +0900)]
modify wrong path for mtd.h

Our mtd.h is at os/include/fs folder.

6 years agolibc/pthread: Add test cases for cancelability API's in pthreads
Vidisha Thapa [Tue, 25 Jul 2017 12:09:56 +0000 (17:39 +0530)]
libc/pthread: Add test cases for cancelability API's in pthreads

This patch covers TC's for the following API's:
pthread_setcancelstate()
pthread_setcanceltype()
pthread_testcancel()

Signed-off-by: Vidisha Thapa <thapa.v@samsung.com>
6 years agoremove usb hid functionality, kbd and mouse
sunghan [Mon, 7 Aug 2017 08:55:39 +0000 (17:55 +0900)]
remove usb hid functionality, kbd and mouse

6 years agoremove automount functionality on fs
sunghan [Mon, 7 Aug 2017 07:09:43 +0000 (16:09 +0900)]
remove automount functionality on fs

automount is not used.

6 years agomodify location of rwbuffer.h to include at ftl
sunghan [Mon, 7 Aug 2017 07:01:31 +0000 (16:01 +0900)]
modify location of rwbuffer.h to include at ftl

rwbuffer.h is at include/tinyara folder, not include/tinyara/driver.

6 years agoupdate dac on analog
sunghan [Mon, 7 Aug 2017 06:54:25 +0000 (15:54 +0900)]
update dac on analog

1. add dac.h to use dac
2. add variable names on function prototype

6 years agoremove elf stubs
sunghan [Mon, 7 Aug 2017 06:36:49 +0000 (15:36 +0900)]
remove elf stubs

The elf is not used.

6 years agoMerge pull request #349 from pradeepns85/cleanup_taskactivate
sunghan-chang [Mon, 7 Aug 2017 06:10:13 +0000 (15:10 +0900)]
Merge pull request #349 from pradeepns85/cleanup_taskactivate

Remove unnecessary logic while handling return of task_activate

6 years agoMerge pull request #332 from junmin-kim/apps_tc
sunghan-chang [Mon, 7 Aug 2017 06:08:32 +0000 (15:08 +0900)]
Merge pull request #332 from junmin-kim/apps_tc

Add network manual tc in tc defconfig

6 years agoMerge pull request #356 from sunghan-chang/master
btheosam [Mon, 7 Aug 2017 05:19:06 +0000 (14:19 +0900)]
Merge pull request #356 from sunghan-chang/master

refactoring create_appspec

6 years agoMerge pull request #357 from junmin-kim/qemu_defconfig
sunghan-chang [Mon, 7 Aug 2017 04:09:09 +0000 (13:09 +0900)]
Merge pull request #357 from junmin-kim/qemu_defconfig

Update qemu defconfig

6 years agoUpdate qemu defconfig
junmin kim [Mon, 7 Aug 2017 01:51:24 +0000 (18:51 -0700)]
Update qemu defconfig

6 years agorefactoring create_appspec
sunghan [Mon, 7 Aug 2017 00:33:17 +0000 (09:33 +0900)]
refactoring create_appspec

1. modify calling method on Makefile
  The applist should be called at everywhere of apps, not only example
2. add removing an old appspec meta file before making a new meta
3. modify a variable name from EXAMPLEDIR to TARGET_DIR_LIST
4. modify a method to get whether configuration is enabled or not
  If some config is not in defconfig (It means config is not enabled),
  this script recognize config is enabled. This is wrong.
  Let's get "CONFIG_XX=y" instead of "# CONFIG_XX is not set"
5. add output sentence to notice finishing

6 years agoMerge pull request #355 from jeongchanKim/kernel_tools
sunghan-chang [Mon, 7 Aug 2017 00:38:33 +0000 (09:38 +0900)]
Merge pull request #355 from jeongchanKim/kernel_tools

Add script about parsing the variable which size is greater than [SIZ…

6 years agoAdd script about parsing the variable which size is greater than [SIZE] from elf
jc_.kim [Thu, 3 Aug 2017 04:36:58 +0000 (13:36 +0900)]
Add script about parsing the variable which size is greater than [SIZE] from elf

6 years agoMerge pull request #354 from lokeshbv/libc
sunghan-chang [Sun, 6 Aug 2017 22:59:56 +0000 (07:59 +0900)]
Merge pull request #354 from lokeshbv/libc

Fix: Minor change in Libc FixedMath "ub16mulub16" function

6 years agoMerge pull request #347 from pmarcinkiew/gcc54_boot_failure_fix
sunghan-chang [Sun, 6 Aug 2017 22:59:15 +0000 (07:59 +0900)]
Merge pull request #347 from pmarcinkiew/gcc54_boot_failure_fix

s5j_boot.c: fix incorrect assembly code

6 years agos5j_boot.c: fix incorrect assembly code
Jaroslaw Pelczar [Thu, 3 Aug 2017 07:48:56 +0000 (09:48 +0200)]
s5j_boot.c: fix incorrect assembly code

Previous code assumed that registers during function call
are r0 and r1, but compiler can allocate any register at
any time to inlined function.

Signed-off-by: Jaroslaw Pelczar <j.pelczar@samsung.com>
6 years agoFix: Minor change in Libc FixedMath "ub16mulub16" function implementation
Lokesh B V [Fri, 4 Aug 2017 11:23:05 +0000 (16:53 +0530)]
Fix: Minor change in Libc FixedMath "ub16mulub16" function implementation

Fix in ub16mulub16() of fixedmath,
It's "uint32_t m2i = ((uint32_t)m1 >> 16);"
It should be "uint32_t m2i = ((uint32_t)m2 >> 16);"

Signed-off-by: Lokesh B V <lokesh.bv@partner.samsung.com>
6 years agoMerge pull request #352 from jeongchanKim/kernel_stkheader
sunghan-chang [Fri, 4 Aug 2017 05:18:40 +0000 (14:18 +0900)]
Merge pull request #352 from jeongchanKim/kernel_stkheader

Move struct stkmon_save_s to apps/system/utils/kdbg_utils.h

6 years agoMerge pull request #341 from shivgarg/master
Taejun-Kwon [Fri, 4 Aug 2017 05:18:06 +0000 (14:18 +0900)]
Merge pull request #341 from shivgarg/master

Changes in arastorage

6 years agoMove struct stkmon_save_s to apps/system/utils/kdbg_utils.h
jc_.kim [Fri, 4 Aug 2017 04:35:59 +0000 (13:35 +0900)]
Move struct stkmon_save_s to apps/system/utils/kdbg_utils.h

6 years agoMerge pull request #351 from jeongchanKim/kernel_stkheader
sunghan-chang [Fri, 4 Aug 2017 04:14:32 +0000 (13:14 +0900)]
Merge pull request #351 from jeongchanKim/kernel_stkheader

Move struct stkmon_save_s to apps/include/system/utils.h and fix codi…

6 years agoFix the coding rule error : space
jc_.kim [Fri, 4 Aug 2017 04:05:08 +0000 (13:05 +0900)]
Fix the coding rule error : space

6 years agoMove struct stkmon_save_s to apps/include/system/utils.h
jc_.kim [Fri, 4 Aug 2017 04:01:04 +0000 (13:01 +0900)]
Move struct stkmon_save_s to apps/include/system/utils.h

6 years agoMerge pull request #345 from JeonginKim/master
sunghan-chang [Fri, 4 Aug 2017 01:51:51 +0000 (10:51 +0900)]
Merge pull request #345 from JeonginKim/master

Fixed a build error when using netdb interface

6 years agoFixed a build error when using netdb interface
JeonginKim [Thu, 3 Aug 2017 09:23:44 +0000 (18:23 +0900)]
Fixed a build error when using netdb interface

6 years agoMerge pull request #350 from pradeepns85/correct_Kconfig_description
sunghan-chang [Thu, 3 Aug 2017 23:28:40 +0000 (08:28 +0900)]
Merge pull request #350 from pradeepns85/correct_Kconfig_description

Correct the Kconfig help description

6 years agoMerge pull request #263 from pradeepns85/kdbg_irqinfo
sunghan-chang [Thu, 3 Aug 2017 23:27:26 +0000 (08:27 +0900)]
Merge pull request #263 from pradeepns85/kdbg_irqinfo

Display Interrupts information to user

6 years agoCorrect the Kconfig help description
pradeep.ns [Wed, 19 Jul 2017 06:27:08 +0000 (11:57 +0530)]
Correct the Kconfig help description

Corrected the Kconfig help description as follows
BUILD_PROTECTED => Adjusted the length of the description to readable format
BUILD_KERNEL => Changed from MPU -> MMU
ARCH_USE_MMU => removed duplicate word
ARCH_USE_MPU => removed duplicate word

Signed-off-by: pradeep.ns <pradeep.ns@samsung.com>
6 years agoRemove unnecessary logic while handling return of task_activate
pradeep.ns [Fri, 26 May 2017 11:31:12 +0000 (17:01 +0530)]
Remove unnecessary logic while handling return of task_activate

By design, task_activate API always returns OK.
There is no need to check error condition and
add the un-necessary code. Keep the code clean

Signed-off-by: pradeep.ns <pradeep.ns@samsung.com>
6 years agoDisplay Interrupts information to user
pradeep.ns [Tue, 27 Jun 2017 18:37:50 +0000 (00:07 +0530)]
Display Interrupts information to user

If CONFIG_ENABLE_IRQINFO is enabled, This patch would display the
number of registerd interrupts, it's occurrences in the system and
it's isr information. This feature works for flat build
ie BUILD_PROTECTED = n and when TASH shell is enabled

This debug feature is required for following important reasons

1) To know how many interrupts have been configured in the system
2) To know which interrupt lines have been configured and it's corresponding ISR name
3) To debug the system hogging issues if it's caused by any spurious interrupts.
4) This can be enhanced in future to know which interrupts are set for cpu affinity and it's occurrences on each cpu.

Verification:

TASH>>irqinfo
 INDEX | IRQ_NUM | INT_COUNT | ISR_NAME
-------|---------|-----------|----------
     1 |      36 |         0 | gic_interrupt
     2 |      37 |         0 | gic_interrupt
     3 |      58 |     23289 | up_timerisr
     4 |      90 |       374 | up_interrupt

Without tash, one can enable CONFIG_DEBUG_IRQ_INFO to know the
irq information for remote debugging

Following changes are done:
1) Introduced 2 new variables a) count and b) irq_name
2) Updated the irq_name during irq_attach (ISR name ) and irq_detach ( NULL )
3) Reset the count to 0 while irq_attach and irq_detach is called
4) displayed the output to console when irqinfo is executed from TASH
5) if CONFIG_ENABLE_IRQINFO is not enabled, still irqinfo would be updated if
CONFIG_DEBUG_IRQ_INFO is enabled and this can be used for offline debug

Signed-off-by: pradeep.ns <pradeep.ns@samsung.com>
6 years agoMerge pull request #335 from JeonginKim/master
sangwon03 [Thu, 3 Aug 2017 09:11:34 +0000 (18:11 +0900)]
Merge pull request #335 from JeonginKim/master

Refactoring TFTP client

6 years agoMerge pull request #342 from sunghan-chang/master
btheosam [Thu, 3 Aug 2017 06:49:04 +0000 (15:49 +0900)]
Merge pull request #342 from sunghan-chang/master

refactoring create_appspec.sh

6 years agocheck whether CONFIG_NAME is valid or not at create_appspec.sh
sunghan [Thu, 3 Aug 2017 05:32:33 +0000 (14:32 +0900)]
check whether CONFIG_NAME is valid or not at create_appspec.sh

If Kconfig_ENTRY is not existed, CONFIG_NAME is not valid.
IF CONFIG_NAME is not valid, let's skip to make an application list.
Here is an abnormal case.
{ aws_sample, aws_sample_main, CONFIG_, y, y,  }

6 years agoexecute shell as bash for create_appspec.sh
sunghan [Wed, 2 Aug 2017 13:27:46 +0000 (22:27 +0900)]
execute shell as bash for create_appspec.sh

Even though the create_appspec.sh is executed as bash at Makefile.unix.
It causes abnormal execution like below.
-e USER_ENTRY=xxx
'-e' is not needed at output file.

6 years agocleaning up all the files created during tc execution so that the tc can run again...
Shivam Garg [Mon, 24 Jul 2017 06:56:17 +0000 (15:56 +0900)]
cleaning up all the files created during tc execution so that the tc can run again without reinitialising the file system

6 years agoAdded SMTP client sample application
JeonginKim [Thu, 3 Aug 2017 02:11:31 +0000 (11:11 +0900)]
Added SMTP client sample application

6 years agoMerge pull request #339 from thapav/libc_math
sunghan-chang [Thu, 3 Aug 2017 01:53:51 +0000 (10:53 +0900)]
Merge pull request #339 from thapav/libc_math

[Code coverage] libc/math: cover left over test cases for existing TC's

6 years agolibc/math: Cover full test cases for atan2(),atan2f(),atan2l() API's
Vidisha Thapa [Wed, 2 Aug 2017 12:27:54 +0000 (17:57 +0530)]
libc/math: Cover full test cases for atan2(),atan2f(),atan2l() API's

Earlier all test cases were not covered in the TC for atan2.
This patch covers the left out TC's.

Signed-off-by: Vidisha Thapa <thapa.v@samsung.com>
6 years agoMerge pull request #293 from junmin-kim/ide_specxml
sunghan-chang [Wed, 2 Aug 2017 12:06:12 +0000 (21:06 +0900)]
Merge pull request #293 from junmin-kim/ide_specxml

Create build/flash spec xml files

6 years agoCreate build/flash/debug spec xml files
junmin kim [Tue, 18 Jul 2017 08:09:18 +0000 (01:09 -0700)]
Create build/flash/debug spec xml files

6 years agoMerge pull request #319 from lokeshbv/fixedmath_tc
sunghan-chang [Wed, 2 Aug 2017 11:40:03 +0000 (20:40 +0900)]
Merge pull request #319 from lokeshbv/fixedmath_tc

TC: Add test cases for Libc Fixedmath

6 years agoMerge pull request #337 from thapav/libc_math
sunghan-chang [Wed, 2 Aug 2017 11:00:41 +0000 (20:00 +0900)]
Merge pull request #337 from thapav/libc_math

libc/math: Add test cases for few math API's

6 years agolibc/math: Add test cases for few math API's
Vidisha Thapa [Tue, 1 Aug 2017 13:04:38 +0000 (18:34 +0530)]
libc/math: Add test cases for few math API's

This patch covers test cases for left out API's in libc/math
The API's are namely: tan, tanf, tanh, tanhf, tanhl, tanl

Signed-off-by: Vidisha Thapa <thapa.v@samsung.com>
6 years agoMerge pull request #338 from sunghan-chang/master
btheosam [Wed, 2 Aug 2017 08:35:36 +0000 (17:35 +0900)]
Merge pull request #338 from sunghan-chang/master

add the testcase configuration at travis

6 years agoModify Kernel TC Kconfig to add LIBM dependency to Libc FixedMath
Lokesh B V [Wed, 2 Aug 2017 07:47:07 +0000 (13:17 +0530)]
Modify Kernel TC Kconfig to add LIBM dependency to Libc FixedMath

Adds LIBM dependency Libc FixedMath config "TC_KERNEL_LIBC_FIXEDMATH".

Signed-off-by: Lokesh B V <lokesh.bv@partner.samsung.com>
6 years agoAdd New Kconfig TC_KERNEL_LIBC_FIXEDMATH in Kernel TC
Lokesh B V [Wed, 26 Jul 2017 09:32:12 +0000 (15:02 +0530)]
Add New Kconfig TC_KERNEL_LIBC_FIXEDMATH in Kernel TC

Adds new Kconfig TC_KERNEL_LIBC_FIXEDMATH in Kernel TC to enable TC for libc/fixedmath.

Signed-off-by: Lokesh B V <lokesh.bv@partner.samsung.com>
6 years agoUpdate defconfigs to enable TC for "FixedMath"
Lokesh B V [Wed, 26 Jul 2017 12:41:14 +0000 (18:11 +0530)]
Update defconfigs to enable TC for "FixedMath"

Updates TC "defconfig" of sidk_s5jt200 and artik053 boards with new Kconfig TC_KERNEL_LIBC_FIXEDMATH.
This new config is to enable tc for Libc FixedMath.

Signed-off-by: Lokesh B V <lokesh.bv@partner.samsung.com>
6 years agoAdd test cases for libc/fixedmath module
Lokesh B V [Wed, 26 Jul 2017 09:36:13 +0000 (15:06 +0530)]
Add test cases for libc/fixedmath module

Adds test cases for libc/fixedmath API's namely,
b16atan2, b16cos, b16divb16, b16mulb16, b16sin, b16sqr, ub16divub16, ub16mulub16 and ub16sqr

Signed-off-by: Lokesh B V <lokesh.bv@partner.samsung.com>
6 years agoadd the testcase configuration at travis
sunghan [Wed, 2 Aug 2017 06:29:10 +0000 (15:29 +0900)]
add the testcase configuration at travis

6 years agoRefactoring TFTP client
JeonginKim [Wed, 2 Aug 2017 00:42:08 +0000 (09:42 +0900)]
Refactoring TFTP client

6 years agoMerge pull request #336 from thapav/fixAPIerrors
sunghan-chang [Wed, 2 Aug 2017 05:59:59 +0000 (14:59 +0900)]
Merge pull request #336 from thapav/fixAPIerrors

Fix wrong API implementations

6 years agolibc/math: Fix implementation of tanh(),tanhf(),tanhl() API
Vidisha Thapa [Wed, 2 Aug 2017 05:46:25 +0000 (11:16 +0530)]
libc/math: Fix implementation of tanh(),tanhf(),tanhl() API

tanh(),tanhf(),tanhl() implementations were wrong.

Example: For tanh(M_PI_4) value should be 0.65579524937 but we were getting 1.5248687267303
This is fixed in this patch.

Signed-off-by: Vidisha Thapa <thapa.v@samsung.com>
6 years agoMerge pull request #313 from lokeshbv/code_coverage
sunghan-chang [Wed, 2 Aug 2017 02:10:31 +0000 (11:10 +0900)]
Merge pull request #313 from lokeshbv/code_coverage

Add Test Cases for fs, net_inet, kernel, libc modules

6 years agoMerge pull request #330 from JeonginKim/master
sangwon03 [Wed, 2 Aug 2017 00:16:26 +0000 (09:16 +0900)]
Merge pull request #330 from JeonginKim/master

Added FTP server sample application

6 years agoMerge pull request #321 from lokeshbv/libc_math
sunghan-chang [Tue, 1 Aug 2017 11:28:44 +0000 (20:28 +0900)]
Merge pull request #321 from lokeshbv/libc_math

TC: Add test cases for Libc Math