From 85e05094e9e7f0e86c3d423dc715a1c2835b52ca Mon Sep 17 00:00:00 2001 From: Akos Kiss Date: Tue, 5 Mar 2019 10:14:56 +0100 Subject: [PATCH] Bump NuttX target to 7.28 (#2787) JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu --- targets/nuttx-stm32f4/Makefile.travis | 4 ++-- targets/nuttx-stm32f4/README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/targets/nuttx-stm32f4/Makefile.travis b/targets/nuttx-stm32f4/Makefile.travis index 4c8ed31e7..50ba20f4b 100644 --- a/targets/nuttx-stm32f4/Makefile.travis +++ b/targets/nuttx-stm32f4/Makefile.travis @@ -39,8 +39,8 @@ install-kconfig: # Fetch nuttx/{apps,nuttx} repositories. install-clone-nuttx: - git clone https://bitbucket.org/nuttx/apps.git ../apps -b nuttx-7.27 - git clone https://bitbucket.org/nuttx/nuttx.git ../nuttx -b nuttx-7.27 + git clone https://bitbucket.org/nuttx/apps.git ../apps -b nuttx-7.28 + git clone https://bitbucket.org/nuttx/nuttx.git ../nuttx -b nuttx-7.28 # Perform all the necessary (JerryScript-independent) installation steps. install-noapt: install-kconfig install-clone-nuttx diff --git a/targets/nuttx-stm32f4/README.md b/targets/nuttx-stm32f4/README.md index 9155c5349..c304b279b 100644 --- a/targets/nuttx-stm32f4/README.md +++ b/targets/nuttx-stm32f4/README.md @@ -7,15 +7,15 @@ This folder contains files to run JerryScript on #### 1. Setup the build environment for STM32F4-Discovery board -Clone the necessary projects into a `jerry-nuttx` directory. The last tested working version of NuttX is 7.27. +Clone the necessary projects into a `jerry-nuttx` directory. The last tested working version of NuttX is 7.28. ```sh # Create a base folder for all the projects. mkdir jerry-nuttx && cd jerry-nuttx git clone https://github.com/pando-project/jerryscript.git -git clone https://bitbucket.org/nuttx/nuttx.git -b nuttx-7.27 -git clone https://bitbucket.org/nuttx/apps.git -b nuttx-7.27 +git clone https://bitbucket.org/nuttx/nuttx.git -b nuttx-7.28 +git clone https://bitbucket.org/nuttx/apps.git -b nuttx-7.28 git clone https://github.com/texane/stlink.git -b v1.5.1 ```