From bc631312346cae72e2a13e9e820ef71655bf203f Mon Sep 17 00:00:00 2001 From: Peter Jung Date: Fri, 27 Sep 2024 21:46:38 +0200 Subject: [PATCH 1/3] handheld: ally: Replace hhd with inputplumber Signed-off-by: Peter Jung --- profiles/pci/handhelds/profiles.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/profiles/pci/handhelds/profiles.toml b/profiles/pci/handhelds/profiles.toml index 7790c3f..3aa0291 100644 --- a/profiles/pci/handhelds/profiles.toml +++ b/profiles/pci/handhelds/profiles.toml @@ -97,11 +97,11 @@ vendor_ids = "1002" device_ids = "15bf" hwd_product_name_pattern = '(ROG Ally).*' priority = 6 -packages = 'hhd hhd-ui adjustor jupiter-hw-support steam cachyos-handheld mesa lib32-mesa vulkan-radeon lib32-vulkan-radeon libva-mesa-driver lib32-libva-mesa-driver mesa-vdpau lib32-mesa-vdpau opencl-rusticl-mesa lib32-opencl-rusticl-mesa rocm-opencl-runtime' +packages = 'jupiter-hw-support steam cachyos-handheld mesa lib32-mesa vulkan-radeon lib32-vulkan-radeon libva-mesa-driver lib32-libva-mesa-driver mesa-vdpau lib32-mesa-vdpau opencl-rusticl-mesa lib32-opencl-rusticl-mesa rocm-opencl-runtime' post_install = """ echo "Ally chwd installing..." username=$(id -nu 1000) - services=("hhd@${username}") + services=("inputplumber") maskservices=("jupiter-biosupdate" "jupiter-controller-update" "jupiter-fan-control") echo "Enabling services..." for service in ${services[@]}; do @@ -115,7 +115,7 @@ post_install = """ post_remove = """ echo "Ally chwd removing..." username=$(id -nu 1000) - services=("hhd@${username}") + services=("inputplumber") maskservices=("jupiter-biosupdate" "jupiter-controller-update" "jupiter-fan-control") echo "Disabling services..." for service in ${services[@]}; do From 9d83150eb8a4626e8bebc30cfef81cf5a0f08271 Mon Sep 17 00:00:00 2001 From: Peter Jung Date: Fri, 27 Sep 2024 21:48:15 +0200 Subject: [PATCH 2/3] handheld: ally: Add package Signed-off-by: Peter Jung --- profiles/pci/handhelds/profiles.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/pci/handhelds/profiles.toml b/profiles/pci/handhelds/profiles.toml index 3aa0291..b86b988 100644 --- a/profiles/pci/handhelds/profiles.toml +++ b/profiles/pci/handhelds/profiles.toml @@ -97,7 +97,7 @@ vendor_ids = "1002" device_ids = "15bf" hwd_product_name_pattern = '(ROG Ally).*' priority = 6 -packages = 'jupiter-hw-support steam cachyos-handheld mesa lib32-mesa vulkan-radeon lib32-vulkan-radeon libva-mesa-driver lib32-libva-mesa-driver mesa-vdpau lib32-mesa-vdpau opencl-rusticl-mesa lib32-opencl-rusticl-mesa rocm-opencl-runtime' +packages = 'inputplumber jupiter-hw-support steam cachyos-handheld mesa lib32-mesa vulkan-radeon lib32-vulkan-radeon libva-mesa-driver lib32-libva-mesa-driver mesa-vdpau lib32-mesa-vdpau opencl-rusticl-mesa lib32-opencl-rusticl-mesa rocm-opencl-runtime' post_install = """ echo "Ally chwd installing..." username=$(id -nu 1000) From 927239140c354ebc65c77afcea88a726142d4469 Mon Sep 17 00:00:00 2001 From: Peter Jung Date: Fri, 27 Sep 2024 21:53:21 +0200 Subject: [PATCH 3/3] remove username variable Signed-off-by: Peter Jung --- profiles/pci/handhelds/profiles.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/profiles/pci/handhelds/profiles.toml b/profiles/pci/handhelds/profiles.toml index b86b988..0fff5e3 100644 --- a/profiles/pci/handhelds/profiles.toml +++ b/profiles/pci/handhelds/profiles.toml @@ -100,7 +100,6 @@ priority = 6 packages = 'inputplumber jupiter-hw-support steam cachyos-handheld mesa lib32-mesa vulkan-radeon lib32-vulkan-radeon libva-mesa-driver lib32-libva-mesa-driver mesa-vdpau lib32-mesa-vdpau opencl-rusticl-mesa lib32-opencl-rusticl-mesa rocm-opencl-runtime' post_install = """ echo "Ally chwd installing..." - username=$(id -nu 1000) services=("inputplumber") maskservices=("jupiter-biosupdate" "jupiter-controller-update" "jupiter-fan-control") echo "Enabling services..." @@ -114,7 +113,6 @@ post_install = """ """ post_remove = """ echo "Ally chwd removing..." - username=$(id -nu 1000) services=("inputplumber") maskservices=("jupiter-biosupdate" "jupiter-controller-update" "jupiter-fan-control") echo "Disabling services..."