-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2348 from iNavFlight/development
Release INAV 1.8
- Loading branch information
Showing
2,919 changed files
with
2,602,553 additions
and
3,976 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
### If your issue looks like a hardware fault or a configuration problem please don't raise an issue here. | ||
|
||
### Please consider using other user support options such as asking the manufacturer of the hardware you are using, [RCGroups](https://www.rcgroups.com/forums/showthread.php?t=2495732), [Slack](https://inavflight.signup.team) or other user support forums & groups (e.g. facebook). | ||
|
||
### Board and Version | ||
_Board name goes here. If you have a link where you've purchased the board - please include it_ | ||
_Version of INAV used goes here_ | ||
|
||
_Use CLI command `version` and put its output here_ | ||
|
||
_If it's a custom-compiled firmware please mention this_ | ||
|
||
### Behavior | ||
* _Describe the problem_ | ||
* _Steps needed to reproduce the problem_ | ||
* _Expected Results_ | ||
* _Actual Results_ | ||
|
||
_Is this a new feature request?_ | ||
|
||
#### Blackbox logs/Config (.ZIP) where problem occurs | ||
_Go to CLI, execute `dump` command copy its output to [PasteBin](https://pastebin.com) and provide a link to a paste here. | ||
|
||
_Upload a zipped blackbox log (if available)_ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,22 @@ | ||
FROM ubuntu:wily | ||
LABEL maintainer Alexandr Kuzmitsky <brat002@gmail.com> | ||
FROM ubuntu:xenial | ||
LABEL maintainer Andy Schwarz <flyandi@yahoo.com> | ||
|
||
# Configuration | ||
VOLUME /home/src/ | ||
WORKDIR /home/src/ | ||
|
||
RUN mkdir -p /home/src && apt-get update && \ | ||
apt-get install -y software-properties-common python-software-properties && \ | ||
apt-get remove -y binutils-arm-none-eabi gcc-arm-none-eabi && \ | ||
add-apt-repository -y ppa:terry.guo/gcc-arm-embedded && \ | ||
# Essentials | ||
RUN mkdir -p /home/src && \ | ||
apt-get update && \ | ||
apt-get install -y gcc-arm-none-eabi libnewlib-arm-none-eabi make git gcc ruby | ||
apt-get install -y software-properties-common python-software-properties ruby make git gcc wget curl bzip2 lib32ncurses5 lib32z1 | ||
|
||
# Toolchain | ||
ENV TOOLCHAIN= | ||
ENV TOOLCHAIN_ID= | ||
RUN wget -P /tmp https://developer.arm.com/-/media/Files/downloads/gnu-rm/6-2017q2/gcc-arm-none-eabi-6-2017-q2-update-linux.tar.bz2 | ||
RUN mkdir -p /opt && \ | ||
cd /opt && \ | ||
tar xvjf /tmp/gcc-arm-none-eabi-6-2017-q2-update-linux.tar.bz2 -C /opt && \ | ||
chmod -R -w /opt/gcc-arm-none-eabi-6-2017-q2-update | ||
|
||
ENV PATH="/opt/gcc-arm-none-eabi-6-2017-q2-update/bin:${PATH}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
echo "Building target" $1 | ||
docker run --rm -v `pwd`:/home/src/ inav make TARGET=$1 | ||
docker run --rm -v `pwd`:/home/src/ flyandi/docker-inav make TARGET=$1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.