Skip to content

Commit f8ccd7a

Browse files
alistair23Eeems
andcommitted
package/linux-mainline: Use a custom defconfig (#723)
* package/linux-mainline: Use a custom defconfig Use a reMarkable specific defconfig that is checked into toltec. Currently this is an exact copy of the mainline defconfig (so no functional changes) but in the future this can be patched to enable/disable features as required. Signed-off-by: Alistair Francis <[email protected]> Co-authored-by: Nathaniel van Diepen <[email protected]>
1 parent 88ee504 commit f8ccd7a

File tree

2 files changed

+498
-4
lines changed

2 files changed

+498
-4
lines changed

package/linux-mainline/package

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ archs=(rm2)
66
pkgnames=(linux-mainline)
77
pkgdesc="reMarkable 2 kernel based on the mainline kernel"
88
url=https://www.kernel.org
9-
pkgver=6.2.0-1
9+
pkgver=6.2.0-2
1010
timestamp=2022-05-22T21:50:09Z
1111
section=kernel
1212
maintainer="Alistair Francis <[email protected]>"
@@ -15,11 +15,18 @@ license=GPL-2.0-only
1515
flags=(nostrip)
1616

1717
image=base:v2.3
18-
source=("https://github.com/alistair23/linux/archive/8241218883331bfdc0800f30eb337ff97b7c648c.tar.gz")
19-
sha256sums=(de69fc74f1d25f447da170967eeea13b24354e9b8aa1927addcaa88c2ea9cd7c)
18+
source=(
19+
https://github.com/alistair23/linux/archive/8241218883331bfdc0800f30eb337ff97b7c648c.tar.gz
20+
remarkable_defconfig
21+
)
22+
sha256sums=(
23+
de69fc74f1d25f447da170967eeea13b24354e9b8aa1927addcaa88c2ea9cd7c
24+
f4d8cbb2c0e7bff5b151729b45064eb9e95005cb91899f0a9df038343d95ebf2
25+
)
2026

2127
build() {
22-
ARCH=arm make imx_v6_v7_defconfig
28+
cp remarkable_defconfig arch/arm/configs/
29+
ARCH=arm make remarkable_defconfig
2330
ARCH=arm make -j8
2431
}
2532

0 commit comments

Comments
 (0)