Skip to content

Commit

Permalink
Release tag SPRESENSE_ADN_SDK_1.0.000
Browse files Browse the repository at this point in the history
SPRESENSE_ADN_SDK_1.0.000 release.
  • Loading branch information
Shunichi-K committed Jul 12, 2018
1 parent 9361e05 commit fcd7a5e
Show file tree
Hide file tree
Showing 1,172 changed files with 277,107 additions and 0 deletions.
17,746 changes: 17,746 additions & 0 deletions .gitignore

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "nuttx"]
path = nuttx
url = ../spresense-nuttx.git
47 changes: 47 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# How to contribute

We highly welcome and encourage all users to contribute improvements to help increase the quality of the documentation and the code. We want to keep it simple and easy for you to help. There are a few guidelines we would like you to follow.

You can contribute in two ways:
* [Contribute changes](#contribute-with-pull-requests) with pull request
* [File an issue](#file-an-issue) to report bugs, questions and feature requests

If you have suggestions on how to fix or change things, do make the changes and open pull requests.

## Getting Started
* Read the [notice for contribution](NOTICE.txt) carefully
* Make sure you have a [GitHub account](https://github.com/signup/free).
* Submit an issue if one does not exist already. See [File an issue](#file-an-issue) for details.
* If you are contributing a pull request that fixes an issue, please reference the issue in your pull request.

## Contribute with pull requests
---
Below is the workflow, from cloning to merging a pull request.

1. Fork this repository
2. Clone
3. Create your own branch to make changes
4. Keep your fork up-to-date/synced with the remote repository
5. Commit your changes
6. Push changes back to the remote on GitHub
7. Create pull request
8. If you get feedback, fix according to comments/discussion and push a new commit
9. When the review is done and accepted it will be squashed and merged into master by the maintainers

## File an issue
---
If you found a bug and do not how to solve it, please use the GitHub issue tracker.

You can also file an issue if you have suggestions for new features or questions about the descriptions and functionalities.

### Report a bug
For troubleshooting efficiency provide as much information about your setup conditions.

Use this template when reporting a bug:

Description of the issue:
How to reproduce:
Describe your hardware setup:
Software version used:

And tag the issue with the label **bug**
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM phusion/baseimage:0.10.1

# Use baseimage-docker's init system.
CMD ["/sbin/my_init"]


RUN apt-get update
RUN apt-get install -y gperf libncurses5-dev flex bison genromfs vim-common gcc-arm-none-eabi wget bzip2 gcc make python3

RUN wget http://ymorin.is-a-geek.org/download/kconfig-frontends/kconfig-frontends-3.10.0.0.tar.bz2
RUN tar -xvf kconfig-frontends-3.10.0.0.tar.bz2
RUN cd kconfig-frontends-3.10.0.0 && ./configure && make && make install && ldconfig

# Clean up APT when done.
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
Loading

0 comments on commit fcd7a5e

Please sign in to comment.