-
-
Notifications
You must be signed in to change notification settings - Fork 669
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'NixOS:master' into tuxedo-pulse-15-gen-2
- Loading branch information
Showing
23 changed files
with
99 additions
and
177 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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# [ROG Ally (2023)](https://rog.asus.com/gaming-handhelds/rog-ally/rog-ally-2023/) | ||
|
||
## BIOS | ||
|
||
The ROG Ally has a troublesome history with different BIOS versions creating different issues. | ||
At the time of writing, the current BIOS version 330 allows for working audio without further kernel patches. | ||
|
||
## Further resources | ||
|
||
- The steam module from https://github.com/Jovian-Experiments/Jovian-NixOS can be used to boot into the Steam Deck UI |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ pkgs, lib, ... }: | ||
{ | ||
imports = [ | ||
../../../common/cpu/amd | ||
../../../common/cpu/amd/pstate.nix | ||
../../../common/gpu/amd | ||
../../../common/pc/laptop | ||
../../../common/pc/laptop/ssd | ||
../../battery.nix | ||
]; | ||
|
||
# 6.5 adds many fixes and improvements for the Ally | ||
# This includes for example performance, audio and bluetooth | ||
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.5") (lib.mkDefault pkgs.linuxPackages_latest); | ||
} |
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
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
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
27 changes: 14 additions & 13 deletions
27
microchip/common/bsp/patches/0001-Boot-environment-for-Microchip-Iciclle-Kit.patch
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 |
---|---|---|
@@ -1,26 +1,27 @@ | ||
From 2085960b5dfc7058d572cfb90fa349efe9bacdf2 Mon Sep 17 00:00:00 2001 | ||
From: Ganga Ram <[email protected]> | ||
Date: Mon, 24 Apr 2023 10:15:22 +0400 | ||
From 313309c07e904ba48386568c361f4a3265829a81 Mon Sep 17 00:00:00 2001 | ||
From: Ganga Ram <[email protected]> | ||
Date: Tue, 10 Oct 2023 17:07:49 +0400 | ||
Subject: [PATCH] Boot environment for Microchip Iciclle Kit | ||
|
||
Signed-off-by: Ganga Ram <[email protected]> | ||
Signed-off-by: Ganga Ram <[email protected]> | ||
--- | ||
include/configs/microchip_mpfs_icicle.h | 3 +++ | ||
1 file changed, 3 insertions(+) | ||
|
||
diff --git a/include/configs/microchip_mpfs_icicle.h b/include/configs/microchip_mpfs_icicle.h | ||
index 9ef5425c9f..c8a1f7c9df 100644 | ||
index 0b9eb59bc4..59b4465f1e 100644 | ||
--- a/include/configs/microchip_mpfs_icicle.h | ||
+++ b/include/configs/microchip_mpfs_icicle.h | ||
@@ -71,6 +71,9 @@ | ||
#define CONFIG_EXTRA_ENV_SETTINGS \ | ||
"bootm_size=0x10000000\0" \ | ||
"scriptaddr=0x8e000000\0" \ | ||
@@ -125,6 +125,9 @@ | ||
#define CFG_EXTRA_ENV_SETTINGS \ | ||
"bootm_size=0x10000000\0" \ | ||
"scriptaddr=0x8e000000\0" \ | ||
+ "kernel_addr_r=0x8e000000\0" \ | ||
+ "ramdisk_addr_r=0x90000000\0" \ | ||
+ "fdt_addr_r=0x92000000\0" \ | ||
BOOTENV_DESIGN_OVERLAYS \ | ||
BOOTENV \ | ||
|
||
-- | ||
BOOTENV_DESIGN_OVERLAYS \ | ||
BOOTENV \ | ||
-- | ||
2.39.2 | ||
|
51 changes: 0 additions & 51 deletions
51
microchip/common/bsp/patches/0002-Riscv-Fix-build-against-binutils-2.38.patch
This file was deleted.
Oops, something went wrong.
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
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
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
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# HP Omen 16-n0005ne | ||
|
||
## ACPI platform profiles | ||
This config enables `hp-wmi`, which allows switch between cool, balanced, and performance modes on the platform EC, used by power management tools like `power-profile-daemon` and `tlp`. |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ lib, pkgs, ... }: | ||
|
||
{ | ||
imports = [ | ||
../../common/cpu/amd | ||
../../common/cpu/amd/pstate.nix | ||
../../common/gpu/amd | ||
../../common/pc/laptop | ||
../../common/pc/ssd | ||
]; | ||
|
||
# Enables ACPI platform profiles | ||
boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") { | ||
kernelModules = [ "hp-wmi" ]; | ||
}; | ||
} |
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
final: prev: { | ||
linuxPackages_librem5_6_4_14 = final.linuxPackagesFor (final.callPackage ./6.4.14.nix { }); | ||
linuxPackages_librem5 = final.linuxPackages_librem5_6_4_14; | ||
linuxPackages_librem5 = final.linuxPackagesFor (final.callPackage ./kernel.nix { }); | ||
} |
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
Oops, something went wrong.