-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dave Slotter
committed
Jan 1, 2022
1 parent
cc5c40a
commit f78832a
Showing
4 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,23 @@ | ||
name: HamPi and HamPC | ||
description: >- | ||
a ham radio software distribution for the Raspberry Pi and x86_64 Linux PC | ||
version: 2.0.0 | ||
type: sw.application | ||
assets: | ||
repository: | ||
type: blob.asset | ||
data: | ||
url: 'https://github.com/dslotter/hampi' | ||
logo: | ||
type: blob.asset | ||
data: | ||
url: 'https://raw.githubusercontent.com/dslotter/hampi/master/HamPi_Logo.png' | ||
data: | ||
defaultDeviceType: raspberrypi4 | ||
supportedDeviceTypes: | ||
- raspberrypi4 | ||
- raspberrypi3 | ||
- raspberrypizerow2 | ||
- raspberrypi400 | ||
- intel-nuc | ||
- genericx86-64-ext |
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,5 +1,11 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Check for less than 2GB RAM | ||
if [ $MEM -lt 2097152 ]; then | ||
echo "Not enough memory to proceed..." | ||
exit 0 | ||
fi | ||
|
||
sleep 60 # Give network time to come online... | ||
|
||
boinccmd --acct_mgr attach https://bam.boincstats.com/ "169373_cb27b99639409722eb67cc774b50e1c1" "169373_cb27b99639409722eb67cc774b50e1c1" |
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