|
|
|
|
@ -4,7 +4,7 @@
|
|
|
|
|
- [2.2. Code Credit](#22-code-credit)
|
|
|
|
|
- [2.3. Features](#23-features)
|
|
|
|
|
- [3. Building and installing](#3-building-and-installing)
|
|
|
|
|
- [3.1. Get latest stable code](#31-get-latest-stable-code)
|
|
|
|
|
- [3.1. Get latest stable version](#31-get-latest-stable-version)
|
|
|
|
|
- [3.2. Prerequisites and dependencies](#32-prerequisites-and-dependencies)
|
|
|
|
|
- [3.3. Building](#33-building)
|
|
|
|
|
- [3.4. Installing](#34-installing)
|
|
|
|
|
@ -42,9 +42,15 @@ Features that where left out :
|
|
|
|
|
- Mobile APRS: Code has been ported, yet I am targeting repeaters so low priority.
|
|
|
|
|
|
|
|
|
|
# 3. Building and installing
|
|
|
|
|
## 3.1. Get latest stable code
|
|
|
|
|
From inside the already cloned repository run following commands
|
|
|
|
|
## 3.1. Get latest stable version
|
|
|
|
|
Clone the repository (only required initally)
|
|
|
|
|
```
|
|
|
|
|
git clone https://github.com/F4FXL/DStarGateway.git
|
|
|
|
|
cd DStarGateway
|
|
|
|
|
```
|
|
|
|
|
From inside the cloned repository run following commands to get the latest stable version
|
|
|
|
|
```
|
|
|
|
|
git pull -p
|
|
|
|
|
git fetch --tags
|
|
|
|
|
latestTag=$(git describe --tags `git rev-list --tags --max-count=1`)
|
|
|
|
|
git checkout $latestTag
|
|
|
|
|
|