-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'testing' into Eeems-patch-15
- Loading branch information
Showing
3 changed files
with
31 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,25 +2,26 @@ | |
# Copyright (c) 2021 The Toltec Contributors | ||
# SPDX-License-Identifier: MIT | ||
|
||
archs=(rm2os2) | ||
archs=(rm2) | ||
pkgnames=(linux-mainline) | ||
pkgdesc="reMarkable 2 kernel based on the mainline kernel" | ||
url=https://www.kernel.org | ||
pkgver=6.2.0-3 | ||
timestamp=2022-05-22T21:50:09Z | ||
pkgver=6.3.0-1 | ||
timestamp=2023-08-23T21:50:09Z | ||
section=kernel | ||
maintainer="Alistair Francis <[email protected]>" | ||
makedepends=(build:flex build:bison build:libssl-dev build:bc build:lzop build:libgmp-dev build:libmpc-dev) | ||
installdepends=(kernelctl) | ||
license=GPL-2.0-only | ||
flags=(nostrip) | ||
|
||
image=base:v2.3 | ||
source=( | ||
https://github.com/alistair23/linux/archive/8241218883331bfdc0800f30eb337ff97b7c648c.tar.gz | ||
https://github.com/alistair23/linux/archive/1698a3bdd8d66e58873c5bb3ce370b7d48b004cf.tar.gz | ||
remarkable_defconfig | ||
) | ||
sha256sums=( | ||
de69fc74f1d25f447da170967eeea13b24354e9b8aa1927addcaa88c2ea9cd7c | ||
647f6a60adad8c4e37eeaf9114c037888cb33923e364bbf5dc0830b2661c21b7 | ||
f4d8cbb2c0e7bff5b151729b45064eb9e95005cb91899f0a9df038343d95ebf2 | ||
) | ||
|
||
|
@@ -55,9 +56,9 @@ configure() { | |
echo | ||
echo "Known issues with the mainline kernel:" | ||
echo " - No support for low power mode (suspend uses more power then it should)" | ||
echo " - Device doesn't always resume from suspend, a reboot is required" | ||
echo " - GUI shutdown in Oxide doesn't work" | ||
echo " - Shutdown doesn't work (https://github.com/alistair23/linux/issues/4)" | ||
echo " - Device doesn't always resume correctly from suspend, a reboot is required" | ||
echo " - Wacom stylus doesn't work in Xochitl (https://github.com/reMarkable/linux/issues/15)" | ||
echo " - Finger input doesn't work in Koreader (https://github.com/koreader/koreader/issues/10012)" | ||
echo " - No OTG control support" | ||
echo " - Folio does not work" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,11 @@ | |
# Copyright (c) 2021 The Toltec Contributors | ||
# SPDX-License-Identifier: MIT | ||
|
||
archs=(rmallos2) | ||
archs=(rmallos2 rm1os3) | ||
pkgnames=(open-remarkable-shutdown) | ||
pkgdesc="Use remarkable-splash to display shutdown and reboot images" | ||
url=https://github.com/ddvk/remarkable-splash | ||
pkgver=1.0-2 | ||
pkgver=1.0-3 | ||
timestamp=2022-02-28T00:12Z | ||
section="utils" | ||
maintainer="Eeems <[email protected]>" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,35 +2,49 @@ | |
# Copyright (c) 2023 The Toltec Contributors | ||
# SPDX-License-Identifier: MIT | ||
|
||
archs=(rmallos2 rmallos3) | ||
archs=(rmallos2 rm1os3 rm2os3) | ||
pkgnames=(toltec-deletions) | ||
pkgdesc="Metapackage to handle package deletions between OS versions" | ||
url=https://toltec-dev.org/ | ||
pkgver=0.1-4 | ||
pkgver=0.1-6 | ||
timestamp=2023-12-03T04:51:58Z | ||
section="utils" | ||
maintainer="Eeems <[email protected]>" | ||
license=MIT | ||
installdepends=(toltec-bootstrap) | ||
conflicts_rmallos2=() | ||
replaces_rmallos2=() | ||
conflicts_rmallos3=( | ||
conflicts_rm1os3=( | ||
ddvk-hacks | ||
fuse | ||
wireguard | ||
innernet-client | ||
gocryptfs | ||
remarkable-stylus | ||
) | ||
replaces_rm1os3=( | ||
ddvk-hacks | ||
fuse | ||
wireguard | ||
innernet-client | ||
gocryptfs | ||
remarkable-stylus | ||
) | ||
conflicts_rm2os3=( | ||
ddvk-hacks | ||
fuse | ||
wireguard | ||
innernet-client | ||
gocryptfs | ||
linux-mainline | ||
remarkable-stylus | ||
open-remarkable-shutdown | ||
) | ||
replaces_rmallos3=( | ||
replaces_rm2os3=( | ||
ddvk-hacks | ||
fuse | ||
wireguard | ||
innernet-client | ||
gocryptfs | ||
linux-mainline | ||
remarkable-stylus | ||
open-remarkable-shutdown | ||
) | ||
|