-
-
Notifications
You must be signed in to change notification settings - Fork 919
microsoft/surface: Update to Kernel 6.19.8 #1820
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
Draft
mexisme
wants to merge
15
commits into
NixOS:master
Choose a base branch
from
mexisme:microsoft-surface/update-kernel-6.19.8
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 3 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
4593bb1
fix(raspberry-pi): Explicitly convert integers to strings
k0ral f3c3e3f
(chore) Add a Python script for getting the hash for particular Kerne…
mexisme 815459e
microsoft/surface: Update to Kernel 6.19.8
mexisme ee0833f
Merge master into microsoft-surface/update-kernel-6.19.8
mexisme 1b0b842
framework/12th-gen-intel: fix blacklistedKernelModules using lib.mkIf
gcugnet bd363ef
Merge pull request #1796 from gcugnet/fix/framework-12th-gen-blacklis…
JohnAZoidberg c775c27
Merge pull request #1817 from k0ral/fix/int-tostring
gador cbf2dc3
Add Dependabot for nix flake updates
JamieMagee 7dd4ad0
Merge master into microsoft-surface/update-kernel-6.19.8
mexisme bacd3ee
framework: Add Laptop 13 Intel Core Ultra Series 3
JohnAZoidberg 0e2bafe
framework: ultra 3: 6.17 minimum kernel
JohnAZoidberg 132bbca
framework: ultra3: Allow unl0kr in initrd
JohnAZoidberg ba0deeb
Merge pull request #1831 from FrameworkComputer/framework13-intel-cor…
Mic92 72674a6
Merge pull request #1825 from JamieMagee/dependabot-nix
Mic92 2c86492
Merge master into microsoft-surface/update-kernel-6.19.8
mexisme File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,165 @@ | ||
| { | ||
| lib, | ||
| kernel ? lib.kernel, | ||
| patchSrc, | ||
| version, | ||
| }: | ||
|
|
||
| [ | ||
| { | ||
| name = "microsoft-surface-patches-linux-${version}"; | ||
| patch = null; | ||
| structuredExtraConfig = with kernel; { | ||
| ## | ||
| ## Surface Aggregator Module | ||
| ## | ||
| CONFIG_SURFACE_AGGREGATOR = module; | ||
| # CONFIG_SURFACE_AGGREGATOR_ERROR_INJECTION is not set | ||
| CONFIG_SURFACE_AGGREGATOR_BUS = yes; | ||
| CONFIG_SURFACE_AGGREGATOR_CDEV = module; | ||
| CONFIG_SURFACE_AGGREGATOR_HUB = module; | ||
| CONFIG_SURFACE_AGGREGATOR_REGISTRY = module; | ||
| CONFIG_SURFACE_AGGREGATOR_TABLET_SWITCH = module; | ||
|
|
||
| CONFIG_SURFACE_ACPI_NOTIFY = module; | ||
| CONFIG_SURFACE_DTX = module; | ||
| CONFIG_SURFACE_PLATFORM_PROFILE = module; | ||
|
|
||
| CONFIG_SURFACE_HID = module; | ||
| CONFIG_SURFACE_KBD = module; | ||
|
|
||
| CONFIG_BATTERY_SURFACE = module; | ||
| CONFIG_CHARGER_SURFACE = module; | ||
|
|
||
| CONFIG_SENSORS_SURFACE_TEMP = module; | ||
| CONFIG_SENSORS_SURFACE_FAN = module; | ||
|
|
||
| CONFIG_RTC_DRV_SURFACE = module; | ||
|
|
||
| ## | ||
| ## Surface Hotplug | ||
| ## | ||
| CONFIG_SURFACE_HOTPLUG = module; | ||
|
|
||
| ## | ||
| ## IPTS and ITHC touchscreen | ||
| ## | ||
| ## This only enables the user interface for IPTS/ITHC data. | ||
| ## For the touchscreen to work, you need to install iptsd. | ||
| ## | ||
| CONFIG_HID_IPTS = module; | ||
| CONFIG_HID_ITHC = module; | ||
| CONFIG_INTEL_THC_HID = module; | ||
| CONFIG_INTEL_QUICKSPI = module; | ||
|
|
||
| ## | ||
| ## Cameras: IPU3 | ||
| ## | ||
| CONFIG_VIDEO_DW9719 = module; | ||
| CONFIG_VIDEO_IPU3_IMGU = module; | ||
| CONFIG_VIDEO_IPU3_CIO2 = module; | ||
| CONFIG_IPU_BRIDGE = module; | ||
| CONFIG_INTEL_SKL_INT3472 = module; | ||
| CONFIG_REGULATOR_TPS68470 = module; | ||
| CONFIG_COMMON_CLK_TPS68470 = module; | ||
| CONFIG_LEDS_TPS68470 = module; | ||
|
|
||
| ## | ||
| ## Cameras: Sensor drivers | ||
| ## | ||
| CONFIG_VIDEO_OV5693 = module; | ||
| CONFIG_VIDEO_OV7251 = module; | ||
| CONFIG_VIDEO_OV8865 = module; | ||
|
|
||
| ## | ||
| ## Surface 3: atomisp causes problems (see issue #1095). Disable it for now. | ||
| ## | ||
| # CONFIG_INTEL_ATOMISP is not set | ||
|
|
||
| ## | ||
| ## ALS Sensor for Surface Book 3, Surface Laptop 3, Surface Pro 7 | ||
| ## | ||
| CONFIG_APDS9960 = module; | ||
|
|
||
| ## | ||
| ## Build-in UFS support (required for some Surface Go devices) | ||
| ## | ||
| CONFIG_SCSI_UFSHCD = module; | ||
| CONFIG_SCSI_UFSHCD_PCI = module; | ||
|
|
||
| ## | ||
| ## Other Drivers | ||
| ## | ||
| CONFIG_INPUT_SOC_BUTTON_ARRAY = module; | ||
| CONFIG_SURFACE_3_POWER_OPREGION = module; | ||
| CONFIG_SURFACE_PRO3_BUTTON = module; | ||
| CONFIG_SURFACE_GPE = module; | ||
| CONFIG_SURFACE_BOOK1_DGPU_SWITCH = module; | ||
| CONFIG_HID_SURFACE = module; | ||
| }; | ||
| } | ||
| { | ||
| name = "ms-surface/0001-secureboot"; | ||
| patch = patchSrc + "/0001-secureboot.patch"; | ||
| } | ||
| { | ||
| name = "ms-surface/0002-surface3"; | ||
| patch = patchSrc + "/0002-surface3.patch"; | ||
| } | ||
| { | ||
| name = "ms-surface/0003-mwifiex"; | ||
| patch = patchSrc + "/0003-mwifiex.patch"; | ||
| } | ||
| { | ||
| name = "ms-surface/0004-ath10k"; | ||
| patch = patchSrc + "/0004-ath10k.patch"; | ||
| } | ||
| { | ||
| name = "ms-surface/0005-ipts"; | ||
| patch = patchSrc + "/0005-ipts.patch"; | ||
| } | ||
| { | ||
| name = "ms-surface/0006-ithc"; | ||
| patch = patchSrc + "/0006-ithc.patch"; | ||
| } | ||
| { | ||
| name = "ms-surface/0007-surface-sam"; | ||
| patch = patchSrc + "/0007-surface-sam.patch"; | ||
| } | ||
| { | ||
| name = "ms-surface/0008-surface-sam-over-hid"; | ||
| patch = patchSrc + "/0008-surface-sam-over-hid.patch"; | ||
| } | ||
| { | ||
| name = "ms-surface/0009-surface-button"; | ||
| patch = patchSrc + "/0009-surface-button.patch"; | ||
| } | ||
| { | ||
| name = "ms-surface/0010-surface-typecover"; | ||
| patch = patchSrc + "/0010-surface-typecover.patch"; | ||
| } | ||
| { | ||
| name = "ms-surface/0011-surface-shutdown"; | ||
| patch = patchSrc + "/0011-surface-shutdown.patch"; | ||
| } | ||
| { | ||
| name = "ms-surface/0012-surface-gpe"; | ||
| patch = patchSrc + "/0012-surface-gpe.patch"; | ||
| } | ||
| { | ||
| name = "ms-surface/0013-cameras"; | ||
| patch = patchSrc + "/0013-cameras.patch"; | ||
| } | ||
| { | ||
| name = "ms-surface/0014-amd-gpio"; | ||
| patch = patchSrc + "/0014-amd-gpio.patch"; | ||
| } | ||
| { | ||
| name = "ms-surface/0015-rtc"; | ||
| patch = patchSrc + "/0015-rtc.patch"; | ||
| } | ||
| { | ||
| name = "ms-surface/0016-hid-surface"; | ||
| patch = patchSrc + "/0016-hid-surface.patch"; | ||
| } | ||
| ] |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,136 @@ | ||
| #!/usr/bin/env python3 | ||
|
|
||
| import json | ||
| import os | ||
| import re | ||
| import subprocess | ||
|
|
||
| KERNEL_VERSION = os.getenv("KERNEL", "6.19.8") | ||
| LINUX_SURFACE_VERSION = os.getenv("LINUX_SURFACE", "debian-6.19.8-1") | ||
|
|
||
|
|
||
| class Version: | ||
| def __init__(self, version: str): | ||
| self.version = version | ||
|
|
||
| def __str__(self) -> str: | ||
| return self.version | ||
|
|
||
| @property | ||
| def version(self) -> str: | ||
| return self.__version | ||
|
|
||
| @version.setter | ||
| def version(self, version): | ||
| self.__version = version | ||
| self.__split() | ||
|
|
||
| def __split(self): | ||
| suffix = "" | ||
| numbers = self.__version.split(".", 2) | ||
| self.major = numbers[0] | ||
| self.minor = numbers[1] | ||
| try: | ||
| suffix = re.match(r'(\d+|)(\D.*|)$', numbers[2]) | ||
| except Exception: | ||
| print(f"{numbers=}") | ||
| raise | ||
|
|
||
| try: | ||
| self.patch = suffix.group(1) | ||
| self.pre_release = suffix.group(2) | ||
| except Exception: | ||
| print(f"{numbers=} {suffix=}") | ||
| raise | ||
|
|
||
|
|
||
| class NixPrefetchMessage: | ||
| def __init__(self, version: str, download_type: str): | ||
| self.version = Version(version) | ||
| self.download_type = download_type | ||
|
|
||
| def message(self): | ||
| return f"# Version {self.version}, {self.download_type}: {self.download_hash!r}" | ||
|
|
||
|
|
||
| class NixPrefetch(NixPrefetchMessage): | ||
| def __init__(self, **kwargs): | ||
| super().__init__(**kwargs) | ||
| self.download_metadata = {} | ||
|
|
||
| @property | ||
| def download_hash(self): | ||
| try: | ||
| return self.download_metadata["hash"] | ||
| except Exception: | ||
| print(f"{self.download_metadata=}") | ||
| raise | ||
|
|
||
| def extract_metadata(self, json_output): | ||
| self.download_metadata = json.loads(json_output) | ||
| return self | ||
|
|
||
| def prefetch(self): | ||
| out = subprocess.run(self.command, stdout=subprocess.PIPE) | ||
| out.check_returncode() | ||
| try: | ||
| self.extract_metadata(out.stdout) | ||
| except subprocess.CalledProcessError as e: | ||
| print(out.stdout) | ||
| print(e) | ||
| raise | ||
| return self | ||
|
|
||
|
|
||
| class NixPrefetchFile(NixPrefetch): | ||
| @property | ||
| def command(self): | ||
| return ["nix", "store", "prefetch-file", "--json", self.url] | ||
|
|
||
|
|
||
| class NixPrefetchGithub(NixPrefetch): | ||
| def __init__(self, owner: str, repo: str, **kwargs): | ||
| super().__init__(**kwargs) | ||
| self.owner = owner | ||
| self.repo = repo | ||
|
|
||
| @property | ||
| def command(self): | ||
| return ["nix-prefetch-github", "--rev", str(self.version), self.owner, self.repo] | ||
|
|
||
|
|
||
| class NixPrefetchLinuxKernel(NixPrefetchFile): | ||
| def __init__(self, **kwargs): | ||
| super().__init__(download_type="Linux Kernel", **kwargs) | ||
|
|
||
| @property | ||
| def url(self): | ||
| return f"https://cdn.kernel.org/pub/linux/kernel/v{self.version.major}.x/linux-{self.version}.tar.xz" | ||
|
|
||
|
|
||
| class NixPrefetchSurfacePatch(NixPrefetchGithub): | ||
| def __init__(self, **kwargs): | ||
| super().__init__( | ||
| download_type="Microsoft Surface Kernel Patch", | ||
| owner="linux-surface", | ||
| repo="linux-surface", | ||
| **kwargs, | ||
| ) | ||
|
|
||
|
|
||
| ##### | ||
|
|
||
|
|
||
| def main(): | ||
| message = "\n".join( | ||
| [ | ||
| NixPrefetchLinuxKernel(version=KERNEL_VERSION).prefetch().message(), | ||
| NixPrefetchSurfacePatch(version=LINUX_SURFACE_VERSION).prefetch().message(), | ||
| ] | ||
| ) | ||
| print(message) | ||
| with open("../default.nix", "a") as file: | ||
| print(message, file=file) | ||
|
|
||
|
|
||
| main() |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's possible there's already a more cared for or battle-tested script than this, @Mic92 ?