Re: Larva content review for license

2016-02-05 Thread Sterling Hughes
On 2/5/16 8:39 AM, marko kiiskila wrote: First of all; thanks for going through the licenses. This is good info. On Feb 4, 2016, at 8:03 PM, Sterling Hughes wrote: We can raise this with legal, alternatively we could move the MCU & BSP definitions to github. People

Re: [2/2] incubator-mynewt-larva git commit: Simpler linker script for STM32F3 discovery board.

2016-02-05 Thread Sterling Hughes
Re [1] - Thanks, will do. Re [2] - What defines major? :-) I ask this because of libjson. We've taken microjson (http://www.catb.org/esr/microjson/), and are doing some fairly major surgery to it: - conversion into our coding standards (tabs to spaces, line length) - removal of all logging

Re: [2/2] incubator-mynewt-larva git commit: Simpler linker script for STM32F3 discovery board.

2016-02-05 Thread Justin Mclean
Hi, > Re [2] - What defines major? :-) I ask this because of libjson. The (P)PMC i.e. you. (see point 5 in that last link). > We've taken microjson (http://www.catb.org/esr/microjson/), and are doing > some fairly major surgery to it: > - conversion into our coding standards (tabs to spaces,

Automate http://mynewt.incubator.apache.org generation

2016-02-05 Thread todd mitton
Hi, Here's a simple script to automate the generation of the static content for http://mynewt.incubator.apache.org. It basically captures the steps Aditi takes when updating the site. Thanks, -Todd diff --git a/build.sh b/build.sh new file mode 100755 index 000..f810ac8 --- /dev/null +++

Re: Automate http://mynewt.incubator.apache.org generation

2016-02-05 Thread Justin Mclean
Hi, >> +echo Remove unwanted html templates >> +find site -name "*.html" | xargs grep '{%.*%}' -l | xargs rm Nice didn’t think of doing it that way, I had forgotten about xargs I would normally do: find site -name "*.html" -exec rm {} \; Or even: find site -name “*.html” -delete Thanks,

Re: [2/2] incubator-mynewt-larva git commit: Simpler linker script for STM32F3 discovery board.

2016-02-05 Thread Sterling Hughes
I agree. I will try and find some time this weekend to do a run through of the entire source code base and update this. Tedious, but it will only get more tedious. sterling On 2/5/16 3:47 PM, Justin Mclean wrote: Hi, Probably should start getting into the habit of putting in the correct

Re: Automate http://mynewt.incubator.apache.org generation

2016-02-05 Thread aditi hilbert
I would love this to be added to the incubator-mynewt-site.git repo (master) as soon as possible, of course :) thanks, aditi > On Feb 5, 2016, at 4:36 PM, todd mitton wrote: > > Hi, > > Here's a simple script to automate the generation of the static content for >