Skip to content

Commit d436b08

Browse files
authored
Merge branch 'testing' into package/perf/initial
2 parents 84b5f00 + 80690ec commit d436b08

15 files changed

Lines changed: 831 additions & 44 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Documentation Issue
3+
about: Report an issue with the documentation
4+
title: ''
5+
labels: bug, documentation
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the issue**
11+
A clear and concise description of what the issue with the documentation is.
12+
13+
**Potential resolution**
14+
A clear and concise description of what you expected to happen.
15+
16+
**Links**
17+
If applicable, add links to the documentation in question.
18+
19+
**Additional context**
20+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Documentation request
3+
about: Request changes to the documentation
4+
title: ''
5+
labels: documentation
6+
assignees: ''
7+
8+
---
9+
10+
**Is your documentation request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: Installation issue
3+
about: Report an issue with the installation process
4+
title: ''
5+
labels: bug, install
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the issue**
11+
A clear and concise description of what the issue is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behaviour:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behaviour**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Device information (please complete the following information):**
27+
- Device: [e.g. reMarkable 2]
28+
- OS version: [e.g. 2.15]
29+
30+
**Additional context**
31+
Add any other context about the problem here.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: Package Issue
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug, packages
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the issue**
11+
A clear and concise description of what the issue is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behaviour:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behaviour**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Upstream issue**
24+
If applicable, add the link to the upstream issue here.
25+
26+
**Screenshots**
27+
If applicable, add screenshots to help explain your problem.
28+
29+
**Device/Package information (please complete the following information):**
30+
- Device: [e.g. reMarkable 2]
31+
- OS version: [e.g. 2.15]
32+
- Package: [e.g. toltec-base 0.0.1-1]
33+
34+
**Additional context**
35+
Add any other context about the problem here.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Package request
3+
about: Request a package be added to toltec
4+
title: Add [package] to toltec
5+
labels: packages
6+
assignees: ''
7+
8+
---
9+
10+
**Package information**
11+
Add the name of the package, and a link to where the source can be found.
12+
13+
**Reason for addition**
14+
Provide some basic information about why you'd need this package, and what it provides that existing packages don't.

package/linux-mainline/package

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,29 @@
44

55
archs=(rm2)
66
pkgnames=(linux-mainline linux-mainline-perf)
7-
pkgver=6.0.0-1
8-
timestamp=2022-10-02T21:43:31Z
7+
pkgdesc="reMarkable 2 kernel based on the mainline kernel"
8+
url=https://www.kernel.org
9+
pkgver=6.2.0-2
10+
timestamp=2022-05-22T21:50:09Z
11+
section=kernel
912
maintainer="Alistair Francis <alistair@alistair23.me>"
1013
makedepends=(build:flex build:bison build:libssl-dev build:bc build:lzop build:libgmp-dev build:libmpc-dev build:python-is-python3)
1114
license=GPL-2.0-only
1215
flags=(nostrip)
1316

1417
image=base:v2.3
15-
source=("https://github.com/alistair23/linux/archive/4c2ef4e3bba89a8d767eccb85a242b2cd8850146.tar.gz")
16-
sha256sums=(1583d553380a656ecaac8dab89558051e9165983381adc9c3d52fb8ac0ce19fd)
18+
source=(
19+
https://github.com/alistair23/linux/archive/8241218883331bfdc0800f30eb337ff97b7c648c.tar.gz
20+
remarkable_defconfig
21+
)
22+
sha256sums=(
23+
de69fc74f1d25f447da170967eeea13b24354e9b8aa1927addcaa88c2ea9cd7c
24+
f4d8cbb2c0e7bff5b151729b45064eb9e95005cb91899f0a9df038343d95ebf2
25+
)
1726

1827
build() {
19-
ARCH=arm make imx_v6_v7_defconfig
28+
cp remarkable_defconfig arch/arm/configs/
29+
ARCH=arm make remarkable_defconfig
2030
ARCH=arm make -j8
2131
ARCH=arm make -j8 tools/perf
2232
}
@@ -52,9 +62,10 @@ linux-mainline() {
5262
echo
5363
echo "Known issues with the mainline kernel:"
5464
echo " - No support for low power mode (suspend uses more power then it should)"
55-
echo " - WiFi sometimes is off on boot (can be turned on again though)"
65+
echo " - Device doesn't always resume from suspend, a reboot is required"
5666
echo " - GUI shutdown in Oxide doesn't work"
57-
echo " - Wacom stylus doesn't work in Xochitl (works everywhere else though)"
67+
echo " - Wacom stylus doesn't work in Xochitl (https://github.com/reMarkable/linux/issues/15)"
68+
echo " - Finger input doesn't work in Koreader (https://github.com/koreader/koreader/issues/10012)"
5869
echo " - No OTG control support"
5970
}
6071
}

0 commit comments

Comments
 (0)