Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use wget v1.21.1-1 to fix incompatible libc #872

Merged
merged 2 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
timower marked this conversation as resolved.
Show resolved Hide resolved
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
Loading