aboutsummaryrefslogtreecommitdiff
path: root/targets
diff options
context:
space:
mode:
authorMátyás Mustoha <mmatyas@inf.u-szeged.hu>2020-06-30 15:53:29 +0200
committerGitHub <noreply@github.com>2020-06-30 15:53:29 +0200
commit3e866258db18d8ad38af272d7519bbe89eb12363 (patch)
tree02ac8a7a1fc688dfdc399677b33055a3e71fe934 /targets
parented6689ab8ff9f5044ddb623d2972472f6e7b9d47 (diff)
Update NuttX to 9.0 on Travis (#3958)
Update the Travis builds to use NuttX 9.0, which was released on April 26, 2020. JerryScript-DCO-1.0-Signed-off-by: Mátyás Mustoha mmatyas@inf.u-szeged.hu
Diffstat (limited to 'targets')
-rw-r--r--targets/nuttx-stm32f4/Makefile.travis4
-rw-r--r--targets/nuttx-stm32f4/README.md6
2 files changed, 5 insertions, 5 deletions
diff --git a/targets/nuttx-stm32f4/Makefile.travis b/targets/nuttx-stm32f4/Makefile.travis
index 90a50878..1e79a252 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.28
- git clone https://bitbucket.org/nuttx/nuttx.git ../nuttx -b nuttx-7.28
+ git clone https://bitbucket.org/nuttx/apps.git ../apps -b releases/9.0
+ git clone https://bitbucket.org/nuttx/nuttx.git ../nuttx -b releases/9.0
# 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 673b3c1c..b9837587 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.28.
+Clone the necessary projects into a `jerry-nuttx` directory. The last tested working version of NuttX is 9.0.
```sh
# Create a base folder for all the projects.
mkdir jerry-nuttx && cd jerry-nuttx
git clone https://github.com/jerryscript-project/jerryscript.git
-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://bitbucket.org/nuttx/nuttx.git -b release/9.0
+git clone https://bitbucket.org/nuttx/apps.git -b release/9.0
git clone https://github.com/texane/stlink.git -b v1.5.1
```