Skip to content

Commit 59fcb7e

Browse files
timowerEeems
andauthored
Use wget v1.21.1-1 to fix incompatible libc (#872)
Use wget v1.21.1-1 to fix incompatible libc Uses a partially statically compiled version, which resolves crashes on newer xochitl versions. Fixes #731 --------- Co-authored-by: Nathaniel van Diepen <[email protected]>
1 parent 3b928d7 commit 59fcb7e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package/toltec-bootstrap/package

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
pkgnames=(toltec-bootstrap)
66
pkgdesc="Manage your Toltec install"
77
url=https://toltec-dev.org/
8-
pkgver=0.4.1-1
9-
timestamp=2023-11-27T00:34Z
8+
pkgver=0.4.2-1
9+
timestamp=2024-05-30T19:50Z
1010
section="utils"
1111
maintainer="Eeems <[email protected]>"
1212
license=MIT

package/toltec-bootstrap/toltecctl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -746,8 +746,8 @@ install-standalone-opkg() {
746746
# installed on the reMarkable does not) in the PATH
747747
install-standalone-wget() {
748748
local wget_path="${toltec_share}/wget"
749-
local wget_remote=http://toltec-dev.org/thirdparty/bin/wget-v1.21.1
750-
local wget_checksum=8798fcdabbe560722a02f95b30385926e4452e2c98c15c2c217583eaa0db30fc
749+
local wget_remote=http://toltec-dev.org/thirdparty/bin/wget-v1.21.1-1
750+
local wget_checksum=c258140f059d16d24503c62c1fdf747ca843fe4ba8fcd464a6e6bda8c3bbb6b5
751751

752752
if [ -f "$wget_path" ] && ! [[ -e $wget_path ]] || ! sha256sum -c <(echo "$wget_checksum $wget_path") > /dev/null 2>&1; then
753753
rm "$wget_path"

scripts/bootstrap/bootstrap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ check-installed() {
7979
# Install a local wget binary which supports TLS (the original one
8080
# installed on the reMarkable does not) in the PATH
8181
wget-bootstrap() {
82-
local wget_remote=http://toltec-dev.org/thirdparty/bin/wget-v1.21.1
83-
local wget_checksum=8798fcdabbe560722a02f95b30385926e4452e2c98c15c2c217583eaa0db30fc
82+
local wget_remote=http://toltec-dev.org/thirdparty/bin/wget-v1.21.1-1
83+
local wget_checksum=c258140f059d16d24503c62c1fdf747ca843fe4ba8fcd464a6e6bda8c3bbb6b5
8484

8585
if [[ ! -x $wget_path ]]; then
8686
if [[ -e $wget_path ]]; then

0 commit comments

Comments
 (0)