From 3e8ae50c5ef8bf2c8f928cedf01274e64d2cfbc3 Mon Sep 17 00:00:00 2001 From: openoms Date: Thu, 9 Jan 2020 19:39:07 +0000 Subject: [PATCH 1/2] nodejs update to v12.14.1 --- home.admin/config.scripts/bonus.nodejs.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/home.admin/config.scripts/bonus.nodejs.sh b/home.admin/config.scripts/bonus.nodejs.sh index ea1a5feb9..90fa65c4e 100644 --- a/home.admin/config.scripts/bonus.nodejs.sh +++ b/home.admin/config.scripts/bonus.nodejs.sh @@ -24,20 +24,21 @@ if [ ${nodeJSInstalled} -eq 0 ]; then isAARCH64=$(uname -m | grep -c 'aarch64') isX86_64=$(uname -m | grep -c 'x86_64') isX86_32=$(uname -m | grep -c 'i386\|i486\|i586\|i686\|i786') - VERSION="v10.16.0" + VERSION="v12.14.1" # get checksums from -> https://nodejs.org/dist/vx.y.z/SHASUMS256.txt + # https://nodejs.org/dist/v12.14.1/SHASUMS256.txt if [ ${isARM} -eq 1 ] ; then DISTRO="linux-armv7l" - CHECKSUM="3a3710722a1ce49b4c72c4af3155041cce3c4f632260ec8533be3fc7fd23f92c" + CHECKSUM="ed4e625c84b877905eda4f356c8b4183c642e5ee6d59513d6329674ec23df234" fi if [ ${isAARCH64} -eq 1 ] ; then DISTRO="linux-arm64" - CHECKSUM="ae2e74ab2f5dbff96bf0b7d8457004bf3538233916f8834740bbe2d5a35442e5" + CHECKSUM="6cd28a5e6340f596aec8dbfd6720f444f011e6b9018622290a60dbd17f9baff6" fi if [ ${isX86_64} -eq 1 ] ; then DISTRO="linux-x64" - CHECKSUM="1827f5b99084740234de0c506f4dd2202a696ed60f76059696747c34339b9d48" + CHECKSUM="07cfcaa0aa9d0fcb6e99725408d9e0b07be03b844701588e3ab5dbc395b98e1b" fi if [ ${isX86_32} -eq 1 ] ; then echo "FAIL: No X86 32bit build available - will abort setup" From f1d0ba7f91486b8ff25fda7743103cb78727ab7a Mon Sep 17 00:00:00 2001 From: openoms Date: Thu, 9 Jan 2020 19:39:58 +0000 Subject: [PATCH 2/2] RTL update to post v0.6.0 fix --- home.admin/config.scripts/bonus.rtl.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/home.admin/config.scripts/bonus.rtl.sh b/home.admin/config.scripts/bonus.rtl.sh index eabe69c01..8585303cd 100755 --- a/home.admin/config.scripts/bonus.rtl.sh +++ b/home.admin/config.scripts/bonus.rtl.sh @@ -40,7 +40,9 @@ if [ "$1" = "1" ] || [ "$1" = "on" ]; then rm -r /home/admin/RTL 2>/dev/null git clone https://github.com/ShahanaFarooqui/RTL.git /home/admin/RTL cd /home/admin/RTL - git reset --hard v0.5.4 + # git reset --hard v0.5.4 + # from https://github.com/Ride-The-Lightning/RTL/commits/master + git checkout 917feebfa4fb583360c140e817c266649307ef72 # check if node_modles exists now if [ -d "/home/admin/RTL" ]; then echo "OK - RTL code copy looks good"