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
| commit 7097b510060d52631504c066faaf684bea8689ad | |
| Author: JS Deck <jsdeckerido@gmail.com> | |
| Date: Sat May 9 15:29:32 2026 -0300 | |
| drm/msm: displayport dsc support and misc fixes | |
| ported from https://lore.kernel.org/lkml/1674498274-6010-1-git-send-email-quic_khsieh@quicinc.com/ | |
| diff --git a/drivers/gpu/drm/msm/Makefile b/drivers/gpu/drm/msm/Makefile | |
| index 8b94c5f1cb68..2f6abcf4f429 100644 | |
| --- a/drivers/gpu/drm/msm/Makefile |
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
| #!/bin/sh | |
| BOOT_DISTROS=$(cat <<EOF | |
| Rocknix,boot_rocknix | |
| Fedora Arm,boot_fedora | |
| EOF | |
| ) | |
| boot_rocknix() { | |
| clear |
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
| <domain type="kvm"> | |
| <name>win10</name> | |
| <uuid>be35a556-23a9-462b-82c7-883061be25d5</uuid> | |
| <metadata> | |
| <libosinfo:libosinfo xmlns:libosinfo="http://libosinfo.org/xmlns/libvirt/domain/1.0"> | |
| <libosinfo:os id="http://microsoft.com/win/10"/> | |
| </libosinfo:libosinfo> | |
| </metadata> | |
| <memory unit="KiB">12582912</memory> | |
| <currentMemory unit="KiB">12582912</currentMemory> |
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
| #!/usr/bin/env bash | |
| cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" | |
| MEM=Windows_mem | |
| IMG=Windows_img | |
| IMG_O=Windows_img_o | |
| IMG_P=Windows_img_p | |
| MBR=Windows_mbr | |
| SIZE_MBR=2048 | |
| # dd if=/dev/zero of=$MBR count=$SIZE_MBR |
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
| @echo off | |
| setlocal EnableDelayedExpansion | |
| set "WD=%__CD__%" | |
| if NOT EXIST "%WD%msys-2.0.dll" set "WD=%~dp0usr\bin\" | |
| set "LOGINSHELL=bash" | |
| set /a msys2_shiftCounter=0 | |
| rem To activate windows native symlinks uncomment next line | |
| REM set MSYS=winsymlinks:nativestrict |