[GitHub] [incubator-nuttx] Oxore opened a new pull request #918: tmpfs: Fix tmpfs_foreach recursively removing files in directories

2020-04-29 Thread GitBox
Oxore opened a new pull request #918: URL: https://github.com/apache/incubator-nuttx/pull/918 Fixes #912 ## Summary This PR fixes `tmpfs_foreach` unconditionally and recursively removing files in directories of any mounted TMPFS. It is ok when it called from `tmpfs_unbind` op

[GitHub] [incubator-nuttx] btashton commented on pull request #757: Create release artifacts for release branches

2020-04-29 Thread GitBox
btashton commented on pull request #757: URL: https://github.com/apache/incubator-nuttx/pull/757#issuecomment-621640317 I'm going to close this out. We can revisit it later if we want. This is an automated message from the A

[GitHub] [incubator-nuttx] btashton commented on pull request #842: build.yml: Remove -G from cibuild.sh command line

2020-04-29 Thread GitBox
btashton commented on pull request #842: URL: https://github.com/apache/incubator-nuttx/pull/842#issuecomment-621639798 @xiaoxiang781216 Looks like this added almost 15min to the build times for macOS. Do you think there are improvements we can make to distclean to help with the performan

[GitHub] [incubator-nuttx] masayuki2009 opened a new pull request #917: Improve gs2200m performance

2020-04-29 Thread GitBox
masayuki2009 opened a new pull request #917: URL: https://github.com/apache/incubator-nuttx/pull/917 ## Summary - This PR improves TCP/UDP receiving performance by optimizing SPI_SEND, SPI_EXCHANGE, some sleeps and memcpy/memset. - During optimization, I found a packet queue over

[GitHub] [incubator-nuttx] xiaoxiang781216 edited a comment on issue #915: Change all function prefix from up_ to arch_ in include/nuttx/arch.h

2020-04-29 Thread GitBox
xiaoxiang781216 edited a comment on issue #915: URL: https://github.com/apache/incubator-nuttx/issues/915#issuecomment-621627164 The best step is: 1.Rename functions in arch.h from up_xxx to arch_xxx 2.Rename files in arch/yyy/ from up_xxx.* to yyy_xxx.* 3.Rename function in arch/yy

[GitHub] [incubator-nuttx] xiaoxiang781216 edited a comment on issue #915: Change all function prefix from up_ to arch_ in include/nuttx/arch.h

2020-04-29 Thread GitBox
xiaoxiang781216 edited a comment on issue #915: URL: https://github.com/apache/incubator-nuttx/issues/915#issuecomment-621627164 The best step is: 1.Rename functions in arch.h from up_xxx to arch_xxx 2.Rename files in arch/yyy/ from up_xxx.* to yyy_xxx.* 3.Rename function in arch/yy

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on issue #915: Change all function prefix from up_ to arch_ in include/nuttx/arch.h

2020-04-29 Thread GitBox
xiaoxiang781216 commented on issue #915: URL: https://github.com/apache/incubator-nuttx/issues/915#issuecomment-621627164 The best step is: 1.Rename functions in arch.h from up_xxx to arch_xxx 2.Rename files in arch/yyy/ from up_xxx.* to yyy_xxx.* 3.Rename function in arch/yyy/ from

[GitHub] [incubator-nuttx-apps] btashton commented on pull request #220: Fix uninitialized variable warning in ostest

2020-04-29 Thread GitBox
btashton commented on pull request #220: URL: https://github.com/apache/incubator-nuttx-apps/pull/220#issuecomment-621618041 A lot of unrelated style issues that I am resolving. This is an automated message from the Apache G

[GitHub] [incubator-nuttx] btashton commented on pull request #904: Resolve linking issues with x86_64 port

2020-04-29 Thread GitBox
btashton commented on pull request #904: URL: https://github.com/apache/incubator-nuttx/pull/904#issuecomment-621617499 @sonicyang I would appreciate your review on this. I am having some intermittent failures on this port booting from GRUB with QEMU, it happens even without these changes

[GitHub] [incubator-nuttx-apps] btashton commented on pull request #220: Fix uninitialized variable warning in ostest

2020-04-29 Thread GitBox
btashton commented on pull request #220: URL: https://github.com/apache/incubator-nuttx-apps/pull/220#issuecomment-621612550 @patacongo This really papers over the issue, but at this point the ostest has failed so I am not sure how much error handling to add around this vs just being exp

[GitHub] [incubator-nuttx-apps] btashton opened a new pull request #220: Fix uninitialized variable warning in ostest

2020-04-29 Thread GitBox
btashton opened a new pull request #220: URL: https://github.com/apache/incubator-nuttx-apps/pull/220 In lowpri_thread if sem_wait fail nwaiting will not be set even though the rest of the function uses it. This is a failure so really just handling the compiler warning with this.

[GitHub] [incubator-nuttx] liuguo09 opened a new pull request #916: arch/arm/src/common/up_exit.c: _exit should call arm_fullcontextresto…

2020-04-29 Thread GitBox
liuguo09 opened a new pull request #916: URL: https://github.com/apache/incubator-nuttx/pull/916 …re for armv8-m Since armv8-m now uses arm_fullcontextrestore instead of up_fullcontextrestore, _exit should call arm_fullcontextrestore for armv8-m accordingly. Signed-off-by:

[incubator-nuttx] branch master updated: sched/paging: Fix error: variable 'result' set but not used

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new 45c168c sched/paging: Fix error: variab

[GitHub] [incubator-nuttx] xiaoxiang781216 removed a comment on issue #915: Change all function prefix from up_ to arch_ in include/nuttx/arch.h

2020-04-29 Thread GitBox
xiaoxiang781216 removed a comment on issue #915: URL: https://github.com/apache/incubator-nuttx/issues/915#issuecomment-621584274 @patacongo does this make sense? This is an automated message from the Apache Git Service. To r

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on issue #915: Change all function prefix from up_ to arch_ in include/nuttx/arch.h

2020-04-29 Thread GitBox
xiaoxiang781216 commented on issue #915: URL: https://github.com/apache/incubator-nuttx/issues/915#issuecomment-621584274 @patacongo does this make sense? This is an automated message from the Apache Git Service. To respond t

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new issue #915: Change all function prefix from up_ to arch_ in include/nuttx/arch.h

2020-04-29 Thread GitBox
xiaoxiang781216 opened a new issue #915: URL: https://github.com/apache/incubator-nuttx/issues/915 This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on issue #912: tmpfs: tmpfs_statfs recursively removes files

2020-04-29 Thread GitBox
xiaoxiang781216 commented on issue #912: URL: https://github.com/apache/incubator-nuttx/issues/912#issuecomment-621570571 @Oxore thanks for the detailed bug report and analysis. Your change looks correctly, could you open a PR? -

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #914: sched/paging: Fix error: variable 'result' set but not used

2020-04-29 Thread GitBox
xiaoxiang781216 opened a new pull request #914: URL: https://github.com/apache/incubator-nuttx/pull/914 Signed-off-by: Xiang Xiao ## Summary ## Impact ## Testing This is an automated message from

[incubator-nuttx] 02/02: Run .c and .h files in this PR through nxstyle and fix complaints

2020-04-29 Thread acassis
This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 1aa9ff8af20a66f932f2e6ffbc039f3f03617a73 Author: Gregory Nutt AuthorDate: Wed Apr 29 17:49:24 2020 -0600

[incubator-nuttx] branch master updated (d0bb7c1 -> 1aa9ff8)

2020-04-29 Thread acassis
This is an automated email from the ASF dual-hosted git repository. acassis pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. from d0bb7c1 Use NuttX's signal set functions inside the OS. new f23a756 arch/z16: Correct file naming f

[incubator-nuttx] 01/02: arch/z16: Correct file naming for coding standard

2020-04-29 Thread acassis
This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit f23a756349aef822be0393d02c0a7b0edf0cdd6c Author: Gregory Nutt AuthorDate: Wed Apr 29 16:31:24 2020 -0600

[GitHub] [incubator-nuttx] patacongo edited a comment on pull request #913: arch/z16: Correct naming per naming standard

2020-04-29 Thread GitBox
patacongo edited a comment on pull request #913: URL: https://github.com/apache/incubator-nuttx/pull/913#issuecomment-621532041 8 Mixed case identifiers are expected in the style check due to the ZDS-II compiler storage classes _Far and _Erom that are used in the code. This is normal.

[GitHub] [incubator-nuttx] patacongo edited a comment on pull request #913: arch/z16: Correct naming per naming standard

2020-04-29 Thread GitBox
patacongo edited a comment on pull request #913: URL: https://github.com/apache/incubator-nuttx/pull/913#issuecomment-621532041 6 Mixed case identifiers are expected in the style check due to the ZDS-II compiler storage classes _Far and _Erom that are used in the code. This is normal.

[GitHub] [incubator-nuttx] patacongo commented on pull request #913: arch/z16: Correct naming per naming standard

2020-04-29 Thread GitBox
patacongo commented on pull request #913: URL: https://github.com/apache/incubator-nuttx/pull/913#issuecomment-621532041 5 or 6 Mixed case identifiers are expected in the style check due to the ZDS-II compiler storage classes _Far and _Erom that are used in the code. This is normal.

[GitHub] [incubator-nuttx] patacongo opened a new pull request #913: arch/z16: Correct naming per naming standard

2020-04-29 Thread GitBox
patacongo opened a new pull request #913: URL: https://github.com/apache/incubator-nuttx/pull/913 Rename all up_* files to conform to the name conventions of https://cwiki.apache.org/confluence/display/NUTTX/Naming+FAQ Rename all internal functions from up_* z16_ --

[GitHub] [incubator-nuttx] Oxore opened a new issue #912: tmpfs: tmpfs_statfs recursively removes files

2020-04-29 Thread GitBox
Oxore opened a new issue #912: URL: https://github.com/apache/incubator-nuttx/issues/912 # Steps to reproduce ## Prerequisites Linux environment. `arm-none-eabi-gcc` toolchain, gcc version 9.3.0. QEMU with ARM emulation. **NuttX commit:** 5b839061f960cadb3fda19a51679484b95f

[incubator-nuttx] branch master updated: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new d0bb7c1 Use NuttX's signal set function

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
patacongo commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417621249 ## File path: sched/signal/sig_dispatch.c ## @@ -319,7 +320,8 @@ int nxsig_tcbdispatch(FAR struct tcb_s *stcb, siginfo_t *info) /***

[GitHub] [incubator-nuttx] Ouss4 commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
Ouss4 commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417616954 ## File path: sched/group/group_signal.c ## @@ -109,7 +111,8 @@ static int group_signal_handler(pid_t pid, FAR void *arg) * probably blocked).

[GitHub] [incubator-nuttx] Ouss4 commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
Ouss4 commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417615597 ## File path: sched/signal/sig_dispatch.c ## @@ -362,7 +363,7 @@ int nxsig_tcbdispatch(FAR struct tcb_s *stcb, siginfo_t *info) flags = ente

[GitHub] [incubator-nuttx] Ouss4 commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
Ouss4 commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417615086 ## File path: sched/signal/sig_dispatch.c ## @@ -319,7 +320,7 @@ int nxsig_tcbdispatch(FAR struct tcb_s *stcb, siginfo_t *info) /***

[GitHub] [incubator-nuttx] Ouss4 commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
Ouss4 commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417612005 ## File path: libs/libc/signal/sig_addset.c ## @@ -62,13 +62,12 @@ * /

[GitHub] [incubator-nuttx] Ouss4 commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
Ouss4 commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417611696 ## File path: libs/libc/signal/sig_ismember.c ## @@ -63,17 +66,53 @@ * ***

[GitHub] [incubator-nuttx] Ouss4 commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
Ouss4 commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417611858 ## File path: include/nuttx/signal.h ## @@ -112,6 +112,68 @@ struct sigwork_s struct timespec; /* Forward reference */ +/***

[GitHub] [incubator-nuttx] Ouss4 commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
Ouss4 commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417611358 ## File path: libs/libc/signal/sig_addset.c ## @@ -79,3 +78,37 @@ int sigaddset(FAR sigset_t *set, int signo) return OK; } } + +/

[GitHub] [incubator-nuttx] Ouss4 commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
Ouss4 commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417611195 ## File path: libs/libc/signal/sig_addset.c ## @@ -62,13 +62,12 @@ * /

[GitHub] [incubator-nuttx] Ouss4 commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
Ouss4 commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417610981 ## File path: include/nuttx/signal.h ## @@ -112,6 +112,68 @@ struct sigwork_s struct timespec; /* Forward reference */ +/***

[incubator-nuttx] 02/02: sama5d3x-ek/nxwm: Fix error: 'g_adcdev' undeclared

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 5d12735f34ed20a40fe13f8f78b86ae75a566150 Author: Xiang Xiao AuthorDate: Thu Apr 30 01:46:22 2020 +0800 sama

[incubator-nuttx] branch master updated (ddda00e -> 5d12735)

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. from ddda00e Kconfig: Refine BUILD_FLAT, BUILD_PROTECTED and BUILD_KERNEL usage new 1692c90 Revert "sama5d

[incubator-nuttx] 01/02: Revert "sama5d3x-ek/nxwm: Fix error: 'g_adcdev' undeclared"

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 1692c90d15a53d846bf57b570f1cff2f1828927f Author: Xiang Xiao AuthorDate: Thu Apr 30 01:37:26 2020 +0800 Reve

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
patacongo commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417571317 ## File path: sched/group/group_signal.c ## @@ -136,7 +139,7 @@ static int group_signal_handler(pid_t pid, FAR void *arg) /* Is this sign

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
patacongo commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417571814 ## File path: sched/group/group_signal.c ## @@ -109,7 +111,8 @@ static int group_signal_handler(pid_t pid, FAR void *arg) * probably block

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
patacongo commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417571317 ## File path: sched/group/group_signal.c ## @@ -136,7 +139,7 @@ static int group_signal_handler(pid_t pid, FAR void *arg) /* Is this sign

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
patacongo commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417570346 ## File path: sched/signal/sig_dispatch.c ## @@ -319,7 +320,7 @@ int nxsig_tcbdispatch(FAR struct tcb_s *stcb, siginfo_t *info) /***

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
patacongo commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417569284 ## File path: sched/signal/sig_lowest.c ## @@ -61,7 +63,7 @@ int nxsig_lowest(sigset_t *set) for (signo = MIN_SIGNO; signo <= MAX_SIGNO; sign

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
patacongo commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417566237 ## File path: sched/signal/sig_timedwait.c ## @@ -406,7 +406,7 @@ int nxsig_timedwait(FAR const sigset_t *set, FAR struct siginfo *info,

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
patacongo commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417566237 ## File path: sched/signal/sig_timedwait.c ## @@ -406,7 +406,7 @@ int nxsig_timedwait(FAR const sigset_t *set, FAR struct siginfo *info,

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
patacongo commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417566237 ## File path: sched/signal/sig_timedwait.c ## @@ -406,7 +406,7 @@ int nxsig_timedwait(FAR const sigset_t *set, FAR struct siginfo *info,

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
patacongo commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417564056 ## File path: sched/signal/sig_timedwait.c ## @@ -406,7 +406,7 @@ int nxsig_timedwait(FAR const sigset_t *set, FAR struct siginfo *info,

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
patacongo commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417542052 ## File path: sched/group/group_signal.c ## @@ -136,7 +139,7 @@ static int group_signal_handler(pid_t pid, FAR void *arg) /* Is this sign

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
patacongo commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417537347 ## File path: sched/group/group_signal.c ## @@ -109,7 +111,8 @@ static int group_signal_handler(pid_t pid, FAR void *arg) * probably block

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
patacongo commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417521036 ## File path: libs/libc/signal/sig_addset.c ## @@ -79,3 +78,37 @@ int sigaddset(FAR sigset_t *set, int signo) return OK; } } + +/

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
patacongo commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417521103 ## File path: libs/libc/signal/sig_delset.c ## @@ -62,13 +62,12 @@ * *

[GitHub] [incubator-nuttx] patacongo commented on a change in pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
patacongo commented on a change in pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911#discussion_r417518969 ## File path: include/nuttx/signal.h ## @@ -112,6 +112,68 @@ struct sigwork_s struct timespec; /* Forward reference */ +/***

[incubator-nuttx] branch master updated: Kconfig: Refine BUILD_FLAT, BUILD_PROTECTED and BUILD_KERNEL usage

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new ddda00e Kconfig: Refine BUILD_FLAT, BUI

[GitHub] [incubator-nuttx] Ouss4 opened a new pull request #911: Use NuttX's signal set functions inside the OS.

2020-04-29 Thread GitBox
Ouss4 opened a new pull request #911: URL: https://github.com/apache/incubator-nuttx/pull/911 ## Summary Inside the OS use NuttX's signal functions. These function should not set errno and thus won't interfere with application logic. ## Impact ## Testing

[GitHub] [incubator-nuttx] xiaoxiang781216 commented on pull request #910: Fix sama5d3x-ek/nxwm build break

2020-04-29 Thread GitBox
xiaoxiang781216 commented on pull request #910: URL: https://github.com/apache/incubator-nuttx/pull/910#issuecomment-621375812 nxstyle complain CONFIG_SAMA5D3xEK_TSD_DEVMINOR, but SAMA5D3xEK is used spread sama5 arch: boards/arm/sama5/sama5d3x-ek/src/sam_touchscreen.c:108:30: error: Mixe

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #910: Fix sama5d3x-ek/nxwm build break

2020-04-29 Thread GitBox
xiaoxiang781216 opened a new pull request #910: URL: https://github.com/apache/incubator-nuttx/pull/910 ## Summary The below commit try to fix the issue by skip compling adc: ``` commit ab2e24b42b8010b169b61eb73ddc6f105c3c5111 Author: Xiang Xiao Date: Wed Apr 29 14:15:24 20

[incubator-nuttx-apps] branch master updated: Remove the unnecessary BUILD_FLAT dependence from Kconfig

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new 547bad9 Remove the unnecessary BUI

[incubator-nuttx] branch master updated: mm/iob/iob_clone.c: Correct newline character

2020-04-29 Thread aguettouche
This is an automated email from the ASF dual-hosted git repository. aguettouche pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new fd38623 mm/iob/iob_clone.c: Corr

[incubator-nuttx-apps] 01/02: wireless/bluetooth/btsak/btsak_security.c: Fix newline character

2020-04-29 Thread aguettouche
This is an automated email from the ASF dual-hosted git repository. aguettouche pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git commit 9e5d57f492d67d411c97fb17c6c5664b2ef9720f Author: Gregory Nutt AuthorDate: Wed Apr 29 09:38:05 2020 -0

[incubator-nuttx-apps] branch master updated (dcc620e -> fcc688e)

2020-04-29 Thread aguettouche
This is an automated email from the ASF dual-hosted git repository. aguettouche pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git. from dcc620e Kconfig: Change !BUILD_PROTECTED && !BUILD_KERNEL to BUILD_FLAT new 9e5d57f wirele

[incubator-nuttx-apps] 02/02: wireless/bluetooth/btsak/btsak_security.c: Fix long lines for nxstyle.

2020-04-29 Thread aguettouche
This is an automated email from the ASF dual-hosted git repository. aguettouche pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git commit fcc688e77119e0097721fa6c33472190267b0882 Author: Gregory Nutt AuthorDate: Wed Apr 29 09:50:02 2020 -0

[GitHub] [incubator-nuttx] btashton commented on a change in pull request #904: Resolve linking issues with x86_64 port

2020-04-29 Thread GitBox
btashton commented on a change in pull request #904: URL: https://github.com/apache/incubator-nuttx/pull/904#discussion_r417451745 ## File path: arch/x86_64/src/intel64/intel64_lowsetup.c ## @@ -64,16 +77,16 @@ void up_lowsetup(void) /* Setup pointers for accessing Page ta

[GitHub] [incubator-nuttx] btashton commented on a change in pull request #904: Resolve linking issues with x86_64 port

2020-04-29 Thread GitBox
btashton commented on a change in pull request #904: URL: https://github.com/apache/incubator-nuttx/pull/904#discussion_r417450328 ## File path: arch/x86_64/src/intel64/intel64_lowsetup.c ## @@ -64,16 +77,16 @@ void up_lowsetup(void) /* Setup pointers for accessing Page ta

[incubator-nuttx] branch master updated: arch: x86_64: add no-relax to the linker flags

2020-04-29 Thread btashton
This is an automated email from the ASF dual-hosted git repository. btashton pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new bebc887 arch: x86_64: add no-relax t

[incubator-nuttx] branch master updated (5b83906 -> bf7dcbc)

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. from 5b83906 net/usrsock: fix error: variable 'pos' is used uninitialized add 1c483d8 arm/up_allocpage: fix

[GitHub] [incubator-nuttx] sonicyang edited a comment on pull request #905: arch: x86_64: add no-relax to the linker flags

2020-04-29 Thread GitBox
sonicyang edited a comment on pull request #905: URL: https://github.com/apache/incubator-nuttx/pull/905#issuecomment-621287124 > Should both of these be merged? I think the change of PR #904 should definitely be merged. From a point of view on functionality the change of

[GitHub] [incubator-nuttx] patacongo opened a new pull request #909: mm/iob/iob_clone.c: Correct newline character

2020-04-29 Thread GitBox
patacongo opened a new pull request #909: URL: https://github.com/apache/incubator-nuttx/pull/909 ## Summary Another place where /n is used where \n was intended. ## Impact Should fix bad output strings ## Testing

[GitHub] [incubator-nuttx] btashton commented on pull request #905: arch: x86_64: add no-relax to the linker flags

2020-04-29 Thread GitBox
btashton commented on pull request #905: URL: https://github.com/apache/incubator-nuttx/pull/905#issuecomment-621314526 I think this is fine to merge in, I'll pull this part of the fix out of my PR later as it also needs style fixes. ---

[GitHub] [incubator-nuttx-apps] patacongo opened a new pull request #219: wireless/bluetooth/btsak/btsak_security.c: Fix newline character

2020-04-29 Thread GitBox
patacongo opened a new pull request #219: URL: https://github.com/apache/incubator-nuttx-apps/pull/219 Inspired by Abdelatif's find, here are other cases where /n was used when \n ws intended This is an automated message fro

[GitHub] [incubator-nuttx] sonicyang commented on a change in pull request #904: Resolve linking issues with x86_64 port

2020-04-29 Thread GitBox
sonicyang commented on a change in pull request #904: URL: https://github.com/apache/incubator-nuttx/pull/904#discussion_r417409384 ## File path: arch/x86_64/src/intel64/intel64_lowsetup.c ## @@ -64,16 +77,16 @@ void up_lowsetup(void) /* Setup pointers for accessing Page t

[GitHub] [incubator-nuttx] sonicyang commented on a change in pull request #904: Resolve linking issues with x86_64 port

2020-04-29 Thread GitBox
sonicyang commented on a change in pull request #904: URL: https://github.com/apache/incubator-nuttx/pull/904#discussion_r417409384 ## File path: arch/x86_64/src/intel64/intel64_lowsetup.c ## @@ -64,16 +77,16 @@ void up_lowsetup(void) /* Setup pointers for accessing Page t

[GitHub] [incubator-nuttx] sonicyang commented on pull request #905: arch: x86_64: add no-relax to the linker flags

2020-04-29 Thread GitBox
sonicyang commented on pull request #905: URL: https://github.com/apache/incubator-nuttx/pull/905#issuecomment-621287124 > Should both of these be merged? I think the change of PR #904 should definitely be merged. From a point of view on functionality the change of the linker flag

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #908: Kconfig: Refine BUILD_FLAT, BUILD_PROTECTED and BUILD_KERNEL usage

2020-04-29 Thread GitBox
xiaoxiang781216 opened a new pull request #908: URL: https://github.com/apache/incubator-nuttx/pull/908 ## Summary ## Impact No real functionality change ## Testing This is an automated message from t

[GitHub] [incubator-nuttx-apps] xiaoxiang781216 opened a new pull request #218: Remove the unnecessary BUILD_FLAT dependence from Kconfig

2020-04-29 Thread GitBox
xiaoxiang781216 opened a new pull request #218: URL: https://github.com/apache/incubator-nuttx-apps/pull/218 Signed-off-by: Xiang Xiao This is an automated message from the Apache Git Service. To respond to the message, plea

[GitHub] [incubator-nuttx] xiaoxiang781216 opened a new pull request #907: Fix buildbreak

2020-04-29 Thread GitBox
xiaoxiang781216 opened a new pull request #907: URL: https://github.com/apache/incubator-nuttx/pull/907 ## Summary ea3131:pgnsh could build successfully. ## Impact ## Testing This is an automated mess

[incubator-nuttx-apps] branch master updated: Kconfig: Change !BUILD_PROTECTED && !BUILD_KERNEL to BUILD_FLAT

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git The following commit(s) were added to refs/heads/master by this push: new dcc620e Kconfig: Change !BUILD_PRO

[GitHub] [incubator-nuttx] patacongo commented on pull request #905: arch: x86_64: add no-relax to the linker flags

2020-04-29 Thread GitBox
patacongo commented on pull request #905: URL: https://github.com/apache/incubator-nuttx/pull/905#issuecomment-621195203 > Looks like we were both fixing this issue... Hmmm... since those of us willing to help with the merge are not so familar with all of the isues here, can you plea

[incubator-nuttx] 04/08: stm32/mikroe-stm32f4: Fix the several macros undefine issue

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit ed2b56799a3e09319a3f400b3a26da323603c3aa Author: Xiang Xiao AuthorDate: Wed Apr 29 11:43:27 2020 +0800 stm3

[incubator-nuttx] 03/08: stm32/mikroe-stm32f4: Fix nsh_romfsimg.h can't find

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 01ad7a82a3004d0c9d4e4a87f891b05cfa7b9607 Author: Xiang Xiao AuthorDate: Wed Apr 29 11:29:35 2020 +0800 stm3

[incubator-nuttx] branch master updated (bd924bf -> 5b83906)

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git. from bd924bf syslog: correct to #ifdef CONFIG_SYSLOG_RPMSG to call syslog_rpmsg_init new e006054 lpc31xx/e

[incubator-nuttx] 02/08: tiva/cc13x0: fix error 'TIVA_GPIO_BASE' undeclared

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit d2a262672c3219c7dedfec84001009d06059bbd1 Author: Xiang Xiao AuthorDate: Wed Apr 29 11:17:48 2020 +0800 tiva

[incubator-nuttx] 08/08: net/usrsock: fix error: variable 'pos' is used uninitialized

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 5b839061f960cadb3fda19a51679484b95f8d6e3 Author: Xiang Xiao AuthorDate: Wed Apr 29 18:15:18 2020 +0800 net/

[incubator-nuttx] 07/08: Fix nxstyle issue

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit c82b446fa93e8038e9bb76f1954b74c9957125d4 Author: Xiang Xiao AuthorDate: Wed Apr 29 15:08:16 2020 +0800 Fix

[incubator-nuttx] 01/08: lpc31xx/ea3131: Fix ld-locked.inc can't find

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit e006054dfc7080140f4f2e53151009561f41d65f Author: Xiang Xiao AuthorDate: Wed Apr 29 10:53:12 2020 +0800 lpc3

[incubator-nuttx] 05/08: sama5d3x-ek/nxwm: Fix error: 'g_adcdev' undeclared

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit ab2e24b42b8010b169b61eb73ddc6f105c3c5111 Author: Xiang Xiao AuthorDate: Wed Apr 29 14:15:24 2020 +0800 sama

[incubator-nuttx] 06/08: mikroe-stm32f4/fulldemo: Fix undefined reference to `stm32_spi2register'

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git commit 304ecb2552ff221f007e67a2e06d182f968b2f45 Author: Xiang Xiao AuthorDate: Wed Apr 29 14:25:27 2020 +0800 mikr

[incubator-nuttx] branch master updated: syslog: correct to #ifdef CONFIG_SYSLOG_RPMSG to call syslog_rpmsg_init

2020-04-29 Thread gnutt
This is an automated email from the ASF dual-hosted git repository. gnutt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git The following commit(s) were added to refs/heads/master by this push: new bd924bf syslog: correct to #ifdef CONFI

[GitHub] [incubator-nuttx] liuguo09 opened a new pull request #906: syslog: correct to #ifdef CONFIG_SYSLOG_RPMSG to call syslog_rpmsg_init

2020-04-29 Thread GitBox
liuguo09 opened a new pull request #906: URL: https://github.com/apache/incubator-nuttx/pull/906 ## Summary Same as syslog/Make.defs to use #ifdef CONFIG_SYSLOG_RPMSG to build syslog_rpmsg.c in which syslog_rpmsg_init defined.