Showing 5 changed files with 10 additions and 0 deletions
+2
README.md
... ...
@@ -21,4 +21,6 @@ Utilities to check NTP resolution
21 21
   - OrangePi
22 22
   - UfiSpace Pico/Enterprise
23 23
   - Kerlink iFemto Legacy
24
+- riscv64
25
+  - Lichee Nano RV
24 26
  
+8
build-riscv64.sh
... ...
@@ -0,0 +1,8 @@
1
+#!/bin/bash
2
+#export PATH=$HOME/dev/arm-gnu-toolchain-14.2.rel1-x86_64-aarch64-none-linux-gnu/bin:$PATH
3
+OUTPUTDIR="riscv64"
4
+mkdir -p $OUTPUTDIR
5
+riscv64-linux-gnu-gcc -O2 -static -o $OUTPUTDIR/ntpset ntpset.c
6
+riscv64-linux-gnu-gcc -O2 -static -o $OUTPUTDIR/ntpprint ntpprint.c
7
+riscv64-linux-gnu-gcc -O2 -static -o $OUTPUTDIR/set_time_back set_time_back.c
8
+riscv64-linux-gnu-strip $OUTPUTDIR/*
BIN
riscv64/ntpprint
Binary file not shown.
BIN
riscv64/ntpset
Binary file not shown.
BIN
riscv64/set_time_back
Binary file not shown.