README updates and rootfs build updates

This commit is contained in:
Taylor Helsper 2022-12-29 20:13:36 -06:00
parent 3039d0fa76
commit 3bfc607abc
3 changed files with 5 additions and 4 deletions

View File

@ -28,7 +28,7 @@ myNode offers premium support, simplified upgrades and more! If you are running
Upgrade now or purchase a device at:<br/>
https://mynodebtc.com/order_now
<b>myNode One Device</b>
<b>Devices - Model One and Model Two</b>
<br/>
<img src="images/devices.png" width="600">

View File

@ -4,7 +4,7 @@
# Make each device
for i in 'raspi4' 'debian' 'rockpro64' 'rock64' 'rockpi4' ; do
echo Creating root file system for $i
echo "Creating root file system for $i"
mkdir -p out/rootfs_$i/
# Clear out data for old apps

View File

@ -11,6 +11,7 @@ function ctrl_c() {
rm -rf $(dirname $0)/out/rootfs_*
# Did not work well on Linux.... works on OSX :-/
#fswatch -o $(dirname $0)/rootfs $(dirname $0)/CHANGELOG | (while read; do $(dirname $0)/make_rootfs.sh; echo "Update rootfs!"; done)
fswatch -o $(dirname $0)/rootfs $(dirname $0)/CHANGELOG | (while read; do $(dirname $0)/make_rootfs.sh; echo "Update rootfs!"; done)
while true; do find $(dirname $0)/rootfs/ | entr -d -s $(dirname $0)/make_rootfs.sh; done
# Worked on Linux and OSX (recently failing on OSX)
#while true; do find $(dirname $0)/rootfs/ | entr -d -s $(dirname $0)/make_rootfs.sh; done