Skip to content
This repository was archived by the owner on Nov 3, 2020. It is now read-only.

Commit bf023aa

Browse files
committed
Move from jakeday's repository to qzed's - update to 5.3
1 parent 8217afc commit bf023aa

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ This is an Arch Linux packager that applies
44
[jakeday's patches for Surface devices](https://github.com/jakeday/linux-surface)
55
to the Linux kernel of your choice.
66

7+
As of November 2019,
8+
the master branch has officially switched over to
9+
using [qzed's version of these patches](https://github.com/qzed/linux-surface/)
10+
since jakeday's repository appears to be no longer
11+
actively maintained. If you wish to only apply
12+
jakeday's patches, checkout the branch `jakeday`.
13+
714
## Pre-Installation
815

916
First thing you're going to want to do is to clone this repository:
File renamed without changes.
File renamed without changes.

base/templates/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ makedepends=('xmlto' 'kmod' 'inetutils' 'bc' 'libelf')
1717
options=('!strip')
1818
source=(
1919
git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
20-
git://github.com/jakeday/linux-surface.git
20+
git://github.com/qzed/linux-surface.git
2121
.config # kernel configuration file
2222
60-linux.hook # pacman hook for depmod
2323
90-linux.hook # pacman hook for initramfs regeneration

configure.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# User did not enter a major version selection, prompt for one
66
if [ "$1" = "" ]; then
77
echo "Which kernel version do you want to build?"
8-
select major_version in "4.19" "5.1"; do
8+
select major_version in "4.19" "5.3"; do
99
break;
1010
done
1111
else
@@ -17,8 +17,8 @@ case $major_version in
1717
"4.19")
1818
version="4.19.56"
1919
;;
20-
"5.1")
21-
version="5.1.15"
20+
"5.3")
21+
version="5.3.10"
2222
;;
2323
*)
2424
echo "Invalid selection!"
@@ -32,7 +32,7 @@ cache_folder=.cache
3232
build_folder=build-${version}
3333
kernel_repository=git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git
3434
kernel_src_folder=linux-stable
35-
patches_repository=git://github.com/jakeday/linux-surface.git
35+
patches_repository=git://github.com/qzed/linux-surface.git
3636
patches_src_folder=linux-surface
3737

3838
kernel_suffix="-surface"

0 commit comments

Comments
 (0)