-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add script that switches to non-public (lib)renard version
This non-public version contains the downlink scrambling algorithm
- Loading branch information
Showing
2 changed files
with
14 additions
and
0 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 |
---|---|---|
|
@@ -9,3 +9,4 @@ downlink/* | |
!downlink/*.py | ||
!logo.svg | ||
!*screenshot.png | ||
!*.sh |
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,13 @@ | ||
#!/bin/bash | ||
# This script switches to a version of librenard that implements the | ||
# downlink (de)scrambling algorithm. This version is not publicly accessible. | ||
|
||
CWD="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
|
||
cd $CWD | ||
rm -rf renard | ||
git clone https://github.com/Jeija/renard-full renard | ||
cd renard | ||
git clone https://github.com/Jeija/librenard-full librenard | ||
make | ||
cd .. |