-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update URLs in setup script from mthoren-adi to thorenscientific
- Loading branch information
1 parent
06aed55
commit c71e532
Showing
1 changed file
with
6 additions
and
6 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 |
---|---|---|
|
@@ -5,25 +5,25 @@ sudo apt update | |
# Grab config.txt file. This applies the overlay, sets up the green heartbeat blinky light, | ||
# and enables the shutdown button | ||
|
||
wget https://github.com/mthoren-adi/rpi_setup_stuff/raw/main/phaser/config_phaser.txt | ||
wget https://github.com/thorenscientific/rpi_setup_stuff/raw/main/phaser/config_phaser.txt | ||
mv config_phaser.txt config.txt | ||
sudo mv /boot/config.txt /boot/config_original.txt | ||
sudo cp config.txt /boot/ | ||
|
||
# Set up udev rule for PlutoSDR. When a PlutoSDR is connected, a second instance of iiod | ||
# is launched, sharing the PlutoSDR over port 12345. | ||
# This rule is tolerant of connecting the Pluto after boot, and disconnecting / reconnecting. | ||
wget https://github.com/mthoren-adi/rpi_setup_stuff/raw/main/phaser/[email protected] | ||
wget https://github.com/mthoren-adi/rpi_setup_stuff/raw/main/phaser/89-pluto.rules | ||
wget https://github.com/thorenscientific/rpi_setup_stuff/raw/main/phaser/[email protected] | ||
wget https://github.com/thorenscientific/rpi_setup_stuff/raw/main/phaser/89-pluto.rules | ||
|
||
sudo cp [email protected] /etc/systemd/system/ | ||
sudo cp 89-pluto.rules /etc/udev/rules.d/ | ||
|
||
# Grab hosts and hostname files with hostname set to "phaser". This | ||
# distinguishes the phaser setup from other ADI hardware setups using the | ||
# default hostname of "analog" | ||
wget https://github.com/mthoren-adi/rpi_setup_stuff/raw/main/phaser/hosts_phaser | ||
wget https://github.com/mthoren-adi/rpi_setup_stuff/raw/main/phaser/hostname_phaser | ||
wget https://github.com/thorenscientific/rpi_setup_stuff/raw/main/phaser/hosts_phaser | ||
wget https://github.com/thorenscientific/rpi_setup_stuff/raw/main/phaser/hostname_phaser | ||
mv hosts_phaser hosts | ||
mv hostname_phaser hostname | ||
|
||
|
@@ -34,7 +34,7 @@ sudo cp hostname /etc/ | |
|
||
|
||
# Grab handy script for updating Pluto to AD9361 mode: | ||
wget https://github.com/mthoren-adi/rpi_setup_stuff/raw/main/phaser/pluto_update_ad9361.sh | ||
wget https://github.com/thorenscientific/rpi_setup_stuff/raw/main/phaser/pluto_update_ad9361.sh | ||
chmod +x pluto_update_ad9361.sh | ||
|
||
|
||
|