Skip to content

Commit

Permalink
Use wget v1.21.1-1 to fix incompatible libc (#872)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
timower and Eeems committed May 30, 2024
1 parent 3b928d7 commit 59fcb7e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package/toltec-bootstrap/package
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
pkgnames=(toltec-bootstrap)
pkgdesc="Manage your Toltec install"
url=https://toltec-dev.org/
pkgver=0.4.1-1
timestamp=2023-11-27T00:34Z
pkgver=0.4.2-1
timestamp=2024-05-30T19:50Z
section="utils"
maintainer="Eeems <[email protected]>"
license=MIT
Expand Down
4 changes: 2 additions & 2 deletions package/toltec-bootstrap/toltecctl
Original file line number Diff line number Diff line change
Expand Up @@ -746,8 +746,8 @@ install-standalone-opkg() {
# installed on the reMarkable does not) in the PATH
install-standalone-wget() {
local wget_path="${toltec_share}/wget"
local wget_remote=http://toltec-dev.org/thirdparty/bin/wget-v1.21.1
local wget_checksum=8798fcdabbe560722a02f95b30385926e4452e2c98c15c2c217583eaa0db30fc
local wget_remote=http://toltec-dev.org/thirdparty/bin/wget-v1.21.1-1
local wget_checksum=c258140f059d16d24503c62c1fdf747ca843fe4ba8fcd464a6e6bda8c3bbb6b5

if [ -f "$wget_path" ] && ! [[ -e $wget_path ]] || ! sha256sum -c <(echo "$wget_checksum $wget_path") > /dev/null 2>&1; then
rm "$wget_path"
Expand Down
4 changes: 2 additions & 2 deletions scripts/bootstrap/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ check-installed() {
# Install a local wget binary which supports TLS (the original one
# installed on the reMarkable does not) in the PATH
wget-bootstrap() {
local wget_remote=http://toltec-dev.org/thirdparty/bin/wget-v1.21.1
local wget_checksum=8798fcdabbe560722a02f95b30385926e4452e2c98c15c2c217583eaa0db30fc
local wget_remote=http://toltec-dev.org/thirdparty/bin/wget-v1.21.1-1
local wget_checksum=c258140f059d16d24503c62c1fdf747ca843fe4ba8fcd464a6e6bda8c3bbb6b5

if [[ ! -x $wget_path ]]; then
if [[ -e $wget_path ]]; then
Expand Down

0 comments on commit 59fcb7e

Please sign in to comment.