summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README9
-rw-r--r--src/lan7800-led-ctl.c4
2 files changed, 12 insertions, 1 deletions
diff --git a/README b/README
index 40d2658..4678fbd 100644
--- a/README
+++ b/README
@@ -11,3 +11,12 @@ Raspberry Pi 3B+.
Further info can be found at:
https://dominic.familie-radermacher.ch/computer/raspberry-pi/lan7800-led-ctl/
+
+The Git repo with the latest version is located at:
+https://git.familie-radermacher.ch/linux/lan7800-led-ctl.git
+
+Compile:
+mkdir -p build && cmake --fresh -B build && cmake --build build
+
+Install:
+cmake --install build
diff --git a/src/lan7800-led-ctl.c b/src/lan7800-led-ctl.c
index 109bd3e..ff1b628 100644
--- a/src/lan7800-led-ctl.c
+++ b/src/lan7800-led-ctl.c
@@ -100,8 +100,10 @@ void usage(void)
void about(void)
{
printf("lan7800-led-ctl %s programmed by Dominic Radermacher\n", VERSION);
- printf("For further info or latest version see\n");
+ printf("For further info please visit\n");
printf("https://dominic.familie-radermacher.ch/computer/raspberry-pi/lan7800-led-ctl/\n");
+ printf("The latest version can be found in my git repo:\n");
+ printf("https://git.familie-radermacher.ch/linux/lan7800-led-ctl.git\n");
exit(1);
}