Re: 10.3 merge issues

2022-08-18 Thread Nathan Hartman
On Thu, Aug 18, 2022 at 6:40 AM TimH wrote: > Looks like some kind of conflict with syslog settings in the config > (either "default SYSLOG device" or "Use SYSLOG for /dev/console". I've not > been using syslog, so probably something I'd tried (i.e. stab in the dark!) > for some reason in the pas

RE: 10.3 merge issues

2022-08-18 Thread TimH
benign in 10.2 and not in 10.4. Working again on Minicom with either readline or CLE. Back to development now...until 11.0 comes along and I go through it all again lol. >-Original Message- >From: TimH >Sent: 18 August 2022 10:59 >To: dev@nuttx.apache.org >Subject: RE: 10.3 merge

RE: 10.3 merge issues

2022-08-18 Thread TimH
>-Original Message- >From: Gregory Nutt >Sent: 17 August 2022 19:16 >To: dev@nuttx.apache.org >Subject: Re: 10.3 merge issues > > >> >> It all boots and I get the nsh prompt but I get continuous: >> >> nsh_session: cle failed: 22 >> >

RE: 10.3 merge issues

2022-08-18 Thread TimH
>-Original Message- >From: Nathan Hartman >Sent: 18 August 2022 03:01 >To: dev@nuttx.apache.org >Subject: Re: 10.3 merge issues > >On Wed, Aug 17, 2022 at 3:27 PM Tim Hardisty wrote: > >> I realise, now, I compared mine against 10.2 variants not 10.3...not

Re: 10.3 merge issues

2022-08-17 Thread Nathan Hartman
On Wed, Aug 17, 2022 at 3:27 PM Tim Hardisty wrote: > I realise, now, I compared mine against 10.2 variants not 10.3...not sure > why, but there you go. I'll give that a try tomorrow - thanks! Sure thing! Let us know if that fixes it. I'm pretty sure that change in your board's Make.defs (and t

Re: 10.3 merge issues

2022-08-17 Thread Tim Hardisty
I realise, now, I compared mine against 10.2 variants not 10.3...not sure why, but there you go. I'll give that a try tomorrow - thanks! On 17/08/2022, 20:19, "Nathan Hartman" wrote: On Wed, Aug 17, 2022 at 3:15 PM Nathan Hartman wrote: > > On Wed, Aug 17, 2022 at 2:38 PM TimH w

Re: 10.3 merge issues

2022-08-17 Thread Nathan Hartman
On Wed, Aug 17, 2022 at 3:15 PM Nathan Hartman wrote: > > On Wed, Aug 17, 2022 at 2:38 PM TimH wrote: > > >> no rule to make target '-T/home/{rest of the path}' > > See commit: > https://github.com/apache/incubator-nuttx/commit/8defb843aa2e1d49b08b1cb7155aea97e1721b6c > > There have been some r

Re: 10.3 merge issues

2022-08-17 Thread Nathan Hartman
On Wed, Aug 17, 2022 at 2:38 PM TimH wrote: > >> no rule to make target '-T/home/{rest of the path}' See commit: https://github.com/apache/incubator-nuttx/commit/8defb843aa2e1d49b08b1cb7155aea97e1721b6c There have been some refactorings in the build system to reduce code duplication. So inste

RE: 10.3 merge issues

2022-08-17 Thread TimH
Thanks for the useful tip "V=1" = didn't know that Alan :) But nothing additional reported, just the same " no rule to make" error >-Original Message- >From: Alan Carvalho de Assis >Sent: 17 August 2022 18:14 >To: dev@nuttx.apache.org >Subject:

RE: 10.3 merge issues

2022-08-17 Thread TimH
Yes - I have CONFIG_NSH_CLE defined. There are no .o files after a make clean >-Original Message- >From: Nathan Hartman >Sent: 17 August 2022 19:10 >To: dev@nuttx.apache.org >Subject: Re: 10.3 merge issues > >On Wed, Aug 17, 2022 at 12:56 PM TimH wrote: >>

RE: 10.3 merge issues

2022-08-17 Thread TimH
>-Original Message- >From: Gregory Nutt >Sent: 17 August 2022 19:16 >Subject: Re: 10.3 merge issues > > >> 1. Final change that allowed a compile was when I changed the defconfig >> to have the new: >> >> >> >> CONFIG_INIT_

Re: 10.3 merge issues

2022-08-17 Thread Gregory Nutt
1. Final change that allowed a compile was when I changed the defconfig to have the new: CONFIG_INIT_ENTRYPOINT="nsh_main" CONFIG_INIT_ENTRYNAME="nsh" It all boots and I get the nsh prompt but I get continuous: nsh_session: cle failed: 22 I'm assuming that's EINVAL

Re: 10.3 merge issues

2022-08-17 Thread Nathan Hartman
On Wed, Aug 17, 2022 at 12:56 PM TimH wrote: > 1. Final change that allowed a compile was when I changed the defconfig > to have the new: > > > > CONFIG_INIT_ENTRYPOINT="nsh_main" > > CONFIG_INIT_ENTRYNAME="nsh" > > > > It all boots and I get the nsh prompt but I get continuous: > > > > nsh_s

Re: 10.3 merge issues

2022-08-17 Thread Alan Carvalho de Assis
Hi Tim, Try to compile with verbose enabled: $ make V=1 Probably your board is bringing some older definition that is causing a variable to be created incorrectly, because "-T/something" doesn't appear a valid target. BR, Alan On Wednesday, August 17, 2022, TimH wrote: > Hi All, > > > > My