mirror of
https://github.com/ps5-linux/ps5-linux-patches.git
synced 2026-07-18 03:50:53 +00:00
Compare commits
12 Commits
kernel-7.1
...
kernel-7.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cb839ab600 | ||
|
|
1926418e4e | ||
|
|
c445e9adf3 | ||
|
|
e81e281f38 | ||
|
|
050704a2f5 | ||
|
|
bf16f7e8b7 | ||
|
|
8fbb1b2057 | ||
|
|
935dc3e322 | ||
|
|
9ee33721e4 | ||
|
|
a57d783d89 | ||
|
|
07f9d7f847 | ||
|
|
6cfe53c6d3 |
14
.config
14
.config
@@ -1,6 +1,6 @@
|
|||||||
#
|
#
|
||||||
# Automatically generated file; DO NOT EDIT.
|
# Automatically generated file; DO NOT EDIT.
|
||||||
# Linux/x86 7.1.1 Kernel Configuration
|
# Linux/x86 7.1.3 Kernel Configuration
|
||||||
#
|
#
|
||||||
CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 15.2.0-16ubuntu1) 15.2.0"
|
CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 15.2.0-16ubuntu1) 15.2.0"
|
||||||
CONFIG_CC_IS_GCC=y
|
CONFIG_CC_IS_GCC=y
|
||||||
@@ -11,9 +11,9 @@ CONFIG_AS_VERSION=24600
|
|||||||
CONFIG_LD_IS_BFD=y
|
CONFIG_LD_IS_BFD=y
|
||||||
CONFIG_LD_VERSION=24600
|
CONFIG_LD_VERSION=24600
|
||||||
CONFIG_LLD_VERSION=0
|
CONFIG_LLD_VERSION=0
|
||||||
CONFIG_RUSTC_VERSION=0
|
CONFIG_RUSTC_VERSION=109600
|
||||||
CONFIG_RUSTC_LLVM_VERSION=0
|
CONFIG_RUSTC_LLVM_VERSION=220102
|
||||||
CONFIG_RUSTC_LLVM_MAJOR_VERSION=0
|
CONFIG_RUSTC_LLVM_MAJOR_VERSION=22
|
||||||
CONFIG_CC_CAN_LINK=y
|
CONFIG_CC_CAN_LINK=y
|
||||||
CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y
|
CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y
|
||||||
CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT=y
|
CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT=y
|
||||||
@@ -24,6 +24,10 @@ CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y
|
|||||||
CONFIG_CC_HAS_COUNTED_BY=y
|
CONFIG_CC_HAS_COUNTED_BY=y
|
||||||
CONFIG_CC_HAS_MULTIDIMENSIONAL_NONSTRING=y
|
CONFIG_CC_HAS_MULTIDIMENSIONAL_NONSTRING=y
|
||||||
CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY=y
|
CONFIG_LD_CAN_USE_KEEP_IN_OVERLAY=y
|
||||||
|
CONFIG_RUSTC_HAS_SPAN_FILE=y
|
||||||
|
CONFIG_RUSTC_HAS_UNNECESSARY_TRANSMUTES=y
|
||||||
|
CONFIG_RUSTC_HAS_FILE_WITH_NUL=y
|
||||||
|
CONFIG_RUSTC_HAS_FILE_AS_C_STR=y
|
||||||
CONFIG_PAHOLE_VERSION=131
|
CONFIG_PAHOLE_VERSION=131
|
||||||
CONFIG_IRQ_WORK=y
|
CONFIG_IRQ_WORK=y
|
||||||
CONFIG_BUILDTIME_TABLE_SORT=y
|
CONFIG_BUILDTIME_TABLE_SORT=y
|
||||||
@@ -5637,7 +5641,7 @@ CONFIG_DEBUG_INFO_COMPRESSED_NONE=y
|
|||||||
CONFIG_DEBUG_INFO_BTF=y
|
CONFIG_DEBUG_INFO_BTF=y
|
||||||
CONFIG_PAHOLE_HAS_LANG_EXCLUDE=y
|
CONFIG_PAHOLE_HAS_LANG_EXCLUDE=y
|
||||||
CONFIG_DEBUG_INFO_BTF_MODULES=y
|
CONFIG_DEBUG_INFO_BTF_MODULES=y
|
||||||
# CONFIG_MODULE_ALLOW_BTF_MISMATCH is not set
|
CONFIG_MODULE_ALLOW_BTF_MISMATCH=y
|
||||||
CONFIG_GDB_SCRIPTS=y
|
CONFIG_GDB_SCRIPTS=y
|
||||||
CONFIG_FRAME_WARN=2048
|
CONFIG_FRAME_WARN=2048
|
||||||
# CONFIG_STRIP_ASM_SYMS is not set
|
# CONFIG_STRIP_ASM_SYMS is not set
|
||||||
|
|||||||
18
.github/workflows/build-kernel.yml
vendored
18
.github/workflows/build-kernel.yml
vendored
@@ -8,7 +8,7 @@ on:
|
|||||||
description: 'Package format'
|
description: 'Package format'
|
||||||
default: 'all'
|
default: 'all'
|
||||||
type: choice
|
type: choice
|
||||||
options: [deb, arch, all]
|
options: [deb, arch, rpm, all]
|
||||||
patches_ref:
|
patches_ref:
|
||||||
description: 'Patches branch/tag/SHA (empty = default)'
|
description: 'Patches branch/tag/SHA (empty = default)'
|
||||||
default: ''
|
default: ''
|
||||||
@@ -43,6 +43,18 @@ jobs:
|
|||||||
bash image/build_image.sh --kernel-only \
|
bash image/build_image.sh --kernel-only \
|
||||||
--distro "$FORMAT" \
|
--distro "$FORMAT" \
|
||||||
--patches-ref "$PATCHES_REF"
|
--patches-ref "$PATCHES_REF"
|
||||||
|
# build_image.sh's --distro all skips the rpm packager, and each
|
||||||
|
# kernel-build call wipes image/linux-bin/. Stash the deb + pkg.tar.zst
|
||||||
|
# from the "all" run before firing the rpm-producing "fedora" run,
|
||||||
|
# then restore so the release ships all three formats.
|
||||||
|
if [ "$FORMAT" = "all" ]; then
|
||||||
|
mkdir -p /tmp/kernel-stash
|
||||||
|
cp image/linux-bin/*.deb image/linux-bin/*.pkg.tar.zst /tmp/kernel-stash/
|
||||||
|
bash image/build_image.sh --kernel-only \
|
||||||
|
--distro fedora \
|
||||||
|
--patches-ref "$PATCHES_REF"
|
||||||
|
cp /tmp/kernel-stash/*.deb /tmp/kernel-stash/*.pkg.tar.zst image/linux-bin/
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Read kernel and patches version
|
- name: Read kernel and patches version
|
||||||
id: version
|
id: version
|
||||||
@@ -61,6 +73,7 @@ jobs:
|
|||||||
path: |
|
path: |
|
||||||
image/linux-bin/*.deb
|
image/linux-bin/*.deb
|
||||||
image/linux-bin/*.pkg.tar.zst
|
image/linux-bin/*.pkg.tar.zst
|
||||||
|
image/linux-bin/*.rpm
|
||||||
retention-days: 7
|
retention-days: 7
|
||||||
|
|
||||||
- name: Compute checksums
|
- name: Compute checksums
|
||||||
@@ -68,7 +81,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
{
|
{
|
||||||
echo 'sums<<SHAEOF'
|
echo 'sums<<SHAEOF'
|
||||||
sha256sum image/linux-bin/*.deb image/linux-bin/*.pkg.tar.zst | sed 's|image/linux-bin/||'
|
sha256sum image/linux-bin/*.deb image/linux-bin/*.pkg.tar.zst image/linux-bin/*.rpm 2>/dev/null | sed 's|image/linux-bin/||'
|
||||||
echo 'SHAEOF'
|
echo 'SHAEOF'
|
||||||
} >> "$GITHUB_OUTPUT"
|
} >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
@@ -90,4 +103,5 @@ jobs:
|
|||||||
files: |
|
files: |
|
||||||
image/linux-bin/*.deb
|
image/linux-bin/*.deb
|
||||||
image/linux-bin/*.pkg.tar.zst
|
image/linux-bin/*.pkg.tar.zst
|
||||||
|
image/linux-bin/*.rpm
|
||||||
make_latest: true
|
make_latest: true
|
||||||
|
|||||||
@@ -24,7 +24,6 @@ sudo make install
|
|||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
- amdgpu smu driver to show correct gpu frequency and temperature
|
- amdgpu smu driver to show correct gpu frequency and temperature
|
||||||
- xhci driver adjustment for 0x104d:0x9108 to enable bluetooth
|
|
||||||
- hdmi converter improvments: hdr, rgb range, 120hz
|
- hdmi converter improvments: hdr, rgb range, 120hz
|
||||||
|
|
||||||
## Bugs
|
## Bugs
|
||||||
|
|||||||
1204
linux.patch
1204
linux.patch
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user