Updated instructions so you can use this repo and the pi-gen repo to create your images

This commit is contained in:
Adam Morris
2022-03-28 21:49:34 -07:00
parent 24682abaa4
commit 6755c5ac13
12 changed files with 146 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/bash -e
#cd /usr/local/bin
wget https://github.com/tsl0922/ttyd/releases/download/1.6.3/ttyd.aarch64
wget https://github.com/tsl0922/ttyd/releases/download/1.6.3/ttyd.armhf
wget https://github.com/tsl0922/ttyd/releases/download/1.6.3/ttyd.arm
cat << EOF > /usr/local/bin/ttyd
#! /bin/bash
/usr/local/bin/ttyd.`/usr/bin/uname -m` $@
EOF
chown root:root /usr/local/bin/ttyd*
chmod a+x /usr/local/bin/ttyd*