Skip to content

Bump NuttX target to 7.28 #2787

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions targets/nuttx-stm32f4/Makefile.travis
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions targets/nuttx-stm32f4/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down