commit 69e0e95118afe307ac9da57c2cc7f80673a41423

OBS-URL: https://build.opensuse.org/package/show/Kernel:stable/kernel-source?expand=0&rev=1888
This commit is contained in:
Kernel Bugs 2023-02-28 08:18:38 +00:00 committed by Git OBS Bridge
parent 639641e8c4
commit 0d2234b0df
40 changed files with 1792 additions and 88 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d90aff0ce1c0b9b590f5371b74defe062221141b42d7ed16be9c6eff84494bee
size 290886
oid sha256:77ca402d7587285df539d671d1c371937c83bccfbd6dfd8ef8a1af4907997a2d
size 290674

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -17,7 +17,7 @@
%define srcversion 6.2
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -29,9 +29,9 @@
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh,mkspec-dtb,check-module-license,klp-symbols,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
Name: dtb-aarch64
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -17,7 +17,7 @@
%define srcversion 6.2
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -29,9 +29,9 @@
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh,mkspec-dtb,check-module-license,klp-symbols,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
Name: dtb-armv6l
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -17,7 +17,7 @@
%define srcversion 6.2
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -29,9 +29,9 @@
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh,mkspec-dtb,check-module-license,klp-symbols,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
Name: dtb-armv7l
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -17,7 +17,7 @@
%define srcversion 6.2
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -29,9 +29,9 @@
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,mkspec,compute-PATCHVERSION.sh,arch-symbols,log.sh,try-disable-staging-driver,compress-vmlinux.sh,mkspec-dtb,check-module-license,klp-symbols,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
Name: dtb-riscv64
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -18,7 +18,7 @@
%define srcversion 6.2
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%define vanilla_only 0
%define compress_modules zstd
@ -111,9 +111,9 @@ Name: kernel-64kb
Summary: Kernel with 64kb PAGE_SIZE
License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-%build_flavor-base-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
Provides: kernel-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
# END COMMON DEPS
Provides: %name-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: %name-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
%obsolete_rebuilds %name
Source0: https://www.kernel.org/pub/linux/kernel/v6.x/linux-%srcversion.tar.xz
Source3: kernel-source.rpmlintrc

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -18,7 +18,7 @@
%define srcversion 6.2
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%define vanilla_only 0
%define compress_modules zstd
@ -111,9 +111,9 @@ Name: kernel-debug
Summary: A Debug Version of the Kernel
License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-%build_flavor-base-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
Provides: kernel-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
# END COMMON DEPS
Provides: %name-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: %name-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
%ifarch ppc64
Provides: kernel-kdump = 2.6.28
Obsoletes: kernel-kdump <= 2.6.28

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -18,7 +18,7 @@
%define srcversion 6.2
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%define vanilla_only 0
%define compress_modules zstd
@ -111,9 +111,9 @@ Name: kernel-default
Summary: The Standard Kernel
License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-%build_flavor-base-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
Provides: kernel-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
# END COMMON DEPS
Provides: %name-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: %name-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
%ifarch %ix86
Provides: kernel-smp = 2.6.17
Obsoletes: kernel-smp <= 2.6.17

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -17,7 +17,7 @@
%define srcversion 6.2
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -31,9 +31,9 @@ Name: kernel-docs
Summary: Kernel Documentation
License: GPL-2.0-only
Group: Documentation/Man
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif
@ -67,7 +67,7 @@ BuildRequires: texlive-zapfding
%endif
URL: https://www.kernel.org/
Provides: %name = %version-%source_rel
Provides: %name-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: %name-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Source0: https://www.kernel.org/pub/linux/kernel/v6.x/linux-%srcversion.tar.xz

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -18,7 +18,7 @@
%define srcversion 6.2
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%define vanilla_only 0
%define compress_modules zstd
@ -111,9 +111,9 @@ Name: kernel-kvmsmall
Summary: The Small Developer Kernel for KVM
License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-%build_flavor-base-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
Provides: kernel-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
# END COMMON DEPS
Provides: %name-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: %name-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
%obsolete_rebuilds %name
Source0: https://www.kernel.org/pub/linux/kernel/v6.x/linux-%srcversion.tar.xz
Source3: kernel-source.rpmlintrc

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -18,7 +18,7 @@
%define srcversion 6.2
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%define vanilla_only 0
%define compress_modules zstd
@ -111,9 +111,9 @@ Name: kernel-lpae
Summary: Kernel for LPAE enabled systems
License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-%build_flavor-base-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
Provides: kernel-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
# END COMMON DEPS
Provides: %name-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: %name-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
%obsolete_rebuilds %name
Source0: https://www.kernel.org/pub/linux/kernel/v6.x/linux-%srcversion.tar.xz
Source3: kernel-source.rpmlintrc

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -19,7 +19,7 @@
#!BuildIgnore: post-build-checks
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%define vanilla_only 0
@ -45,7 +45,7 @@ BuildRequires: util-linux
%endif
%endif
%endif
BuildRequires: kernel%kernel_flavor-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
BuildRequires: kernel%kernel_flavor-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
%if 0%{?rhel_version}
BuildRequires: kernel
@ -64,9 +64,9 @@ BuildRequires: dracut
Summary: package kernel and initrd for OBS VM builds
License: GPL-2.0-only
Group: SLES
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -17,7 +17,7 @@
# needsrootforbuild
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%include %_sourcedir/kernel-spec-macros
@ -36,9 +36,9 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
Summary: Basic QA tests for the kernel
License: GPL-2.0-only
Group: SLES
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -18,7 +18,7 @@
%define srcversion 6.2
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%define vanilla_only 0
%define compress_modules zstd
@ -111,9 +111,9 @@ Name: kernel-pae
Summary: Kernel with PAE Support
License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-%build_flavor-base-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
Provides: kernel-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
# END COMMON DEPS
Provides: %name-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: %name-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
%ifarch %ix86
Provides: kernel-bigsmp = 2.6.17
Obsoletes: kernel-bigsmp <= 2.6.17

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -17,7 +17,7 @@
%define srcversion 6.2
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%define vanilla_only 0
@ -31,9 +31,9 @@
%endif
Name: kernel-source
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif
@ -50,7 +50,7 @@ BuildRequires: fdupes
BuildRequires: sed
Requires(post): coreutils sed
Provides: %name = %version-%source_rel
Provides: %name-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: %name-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
Provides: linux
Provides: multiversion(kernel)
Source0: https://www.kernel.org/pub/linux/kernel/v6.x/linux-%srcversion.tar.xz

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -24,10 +24,10 @@ Name: kernel-syms
Summary: Kernel Symbol Versions (modversions)
License: GPL-2.0-only
Group: Development/Sources
Version: 6.2.0
Version: 6.2.1
%if %using_buildservice
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif
@ -52,7 +52,7 @@ Requires: kernel-pae-devel = %version-%source_rel
%endif
Requires: pesign-obs-integration
Provides: %name = %version-%source_rel
Provides: %name-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: %name-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
Provides: multiversion(kernel)
Source: README.KSYMS
Requires: kernel-devel%variant = %version-%source_rel

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -18,7 +18,7 @@
%define srcversion 6.2
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%define vanilla_only 0
%define compress_modules zstd
@ -111,9 +111,9 @@ Name: kernel-vanilla
Summary: The Standard Kernel - without any SUSE patches
License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-%build_flavor-base-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
Provides: kernel-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
# END COMMON DEPS
Provides: %name-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: %name-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
%obsolete_rebuilds %name
Source0: https://www.kernel.org/pub/linux/kernel/v6.x/linux-%srcversion.tar.xz
Source3: kernel-source.rpmlintrc

View File

@ -1,3 +1,82 @@
-------------------------------------------------------------------
Mon Feb 27 12:39:20 CET 2023 - jslaby@suse.cz
- Linux 6.2.1 (bsc#1012628).
- bpf: add missing header file include (bsc#1012628).
- randstruct: disable Clang 15 support (bsc#1012628).
- ext4: Fix function prototype mismatch for ext4_feat_ktype
(bsc#1012628).
- platform/x86: nvidia-wmi-ec-backlight: Add force module
parameter (bsc#1012628).
- platform/x86/amd/pmf: Add depends on CONFIG_POWER_SUPPLY
(bsc#1012628).
- audit: update the mailing list in MAINTAINERS (bsc#1012628).
- wifi: mwifiex: Add missing compatible string for SD8787
(bsc#1012628).
- HID: mcp-2221: prevent UAF in delayed work (bsc#1012628).
- x86/static_call: Add support for Jcc tail-calls (bsc#1012628).
- x86/alternatives: Teach text_poke_bp() to patch Jcc.d32
instructions (bsc#1012628).
- x86/alternatives: Introduce int3_emulate_jcc() (bsc#1012628).
- uaccess: Add speculation barrier to copy_from_user()
(bsc#1012628).
- commit 15796ef
-------------------------------------------------------------------
Fri Feb 24 15:32:06 CET 2023 - msuchanek@suse.de
- Disable PS3 support
The PS3 hardware cannot be used with up-to-date firmware.
- commit 484fa63
-------------------------------------------------------------------
Fri Feb 24 14:53:02 CET 2023 - tzimmermann@suse.com
- uvesafb: Disable fbdev driver (boo#1208662)
A VESA-based driver. Dropped in favor of generic DRM drivers.
- commit f0d0f1a
-------------------------------------------------------------------
Fri Feb 24 14:39:16 CET 2023 - tzimmermann@suse.com
- ocfb: Disable fbdev driver (boo#1208660)
The OpenCores fbdev driver is for an old homebrew chip design. Probably
unused.
- commit 00dd263
-------------------------------------------------------------------
Fri Feb 24 14:10:24 CET 2023 - tzimmermann@suse.com
- udlfb: Disable fbdev driver (boo#1208658)
We've long shipped the DRM-based udl driver, which handles the same
devices.
- commit 8a53173
-------------------------------------------------------------------
Fri Feb 24 13:16:18 CET 2023 - tzimmermann@suse.com
- ssd1307fb: Replace with ssd130x (boo#1208656)
Replace fbdev's ssd1307fb driver with the new DRM-based driver
ssd130x. Adds support for SPI and Wayland-based userspace.
- commit 1fe1b4c
-------------------------------------------------------------------
Fri Feb 24 10:30:43 CET 2023 - tzimmermann@suse.com
- vfb: Disable fbdev driver (boo#1208646)
The vfb fbdev driver is backed by system memory and only relevant for
testing. Disable it. There is DRM's vkms, if a software-only driver is
required.
- commit b1c9331
-------------------------------------------------------------------
Fri Feb 24 09:43:37 CET 2023 - tzimmermann@suse.com
- Disable gxt4500 fbdev driver (boo#1208642)
The gxt4500 driver serves a 20yrs-old graphics hardware for
IBM RS/6000 system. Probably not in use any longer.
- commit 5313a19
-------------------------------------------------------------------
Tue Feb 21 07:32:10 CET 2023 - jslaby@suse.cz
@ -12,6 +91,26 @@ Mon Feb 20 00:02:32 CET 2023 - mkubecek@suse.cz
- refresh configs
- commit 28fe266
-------------------------------------------------------------------
Sat Feb 18 08:02:26 CET 2023 - jlee@suse.com
- arm64: lock down kernel in secure boot mode (jsc#SLE-15020, bsc#1198101).
- efi: Lock down the kernel at the integrity level if booted in
secure boot mode (jsc#SLE-9870, bsc#1198101).
- efi: Lock down the kernel if booted in secure boot mode
(jsc#SLE-9870, bsc#1198101).
- Update config files.
- The shim for openSUSE Tumbleweed needs to be reviewed by upstream
and signed by Microsoft. So we need to lockdown kernel on x86_64
and arm64 because EFI secure boot.
- We disable CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT in other
architectures.
- efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode
(jsc#SLE-9870, bsc#1198101).
- security: lockdown: expose a hook to lock the kernel down
(jsc#SLE-9870, bsc#1198101).
- commit a7d5b50
-------------------------------------------------------------------
Thu Feb 16 18:56:58 CET 2023 - mkoutny@suse.com

View File

@ -18,7 +18,7 @@
%define srcversion 6.2
%define patchversion 6.2.0
%define patchversion 6.2.1
%define variant %{nil}
%define vanilla_only 0
%define compress_modules zstd
@ -111,9 +111,9 @@ Name: kernel-zfcpdump
Summary: The IBM System Z zfcpdump Kernel
License: GPL-2.0-only
Group: System/Kernel
Version: 6.2.0
Version: 6.2.1
%if 0%{?is_kotd}
Release: <RELEASE>.g09a9a65
Release: <RELEASE>.g69e0e95
%else
Release: 0
%endif
@ -240,10 +240,10 @@ Conflicts: hyper-v < 4
Conflicts: libc.so.6()(64bit)
%endif
Provides: kernel = %version-%source_rel
Provides: kernel-%build_flavor-base-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: kernel-%build_flavor-base-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
Provides: kernel-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
# END COMMON DEPS
Provides: %name-srchash-09a9a65d31e41dcd7b8e3abd7752b433891768e0
Provides: %name-srchash-69e0e95118afe307ac9da57c2cc7f80673a41423
%obsolete_rebuilds %name
Source0: https://www.kernel.org/pub/linux/kernel/v6.x/linux-%srcversion.tar.xz
Source3: kernel-source.rpmlintrc

BIN
patches.kernel.org.tar.bz2 (Stored with Git LFS)

Binary file not shown.

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:69beb0e5d7010d7d6db729d36a06be2d74f75aca4434c9924a5fbbedc865a5a8
size 32499
oid sha256:0e8a1afa78c7ff8b27739808564dbc57937cea713a962e5ca2a58c2bff3a213d
size 36009

View File

@ -27,6 +27,19 @@
# DO NOT MODIFY THEM!
# Send separate patches upstream if you find a problem...
########################################################
patches.kernel.org/6.2.1-001-uaccess-Add-speculation-barrier-to-copy_from_us.patch
patches.kernel.org/6.2.1-002-x86-alternatives-Introduce-int3_emulate_jcc.patch
patches.kernel.org/6.2.1-003-x86-alternatives-Teach-text_poke_bp-to-patch-Jc.patch
patches.kernel.org/6.2.1-004-x86-static_call-Add-support-for-Jcc-tail-calls.patch
patches.kernel.org/6.2.1-005-HID-mcp-2221-prevent-UAF-in-delayed-work.patch
patches.kernel.org/6.2.1-006-wifi-mwifiex-Add-missing-compatible-string-for-.patch
patches.kernel.org/6.2.1-007-audit-update-the-mailing-list-in-MAINTAINERS.patch
patches.kernel.org/6.2.1-008-platform-x86-amd-pmf-Add-depends-on-CONFIG_POWE.patch
patches.kernel.org/6.2.1-009-platform-x86-nvidia-wmi-ec-backlight-Add-force-.patch
patches.kernel.org/6.2.1-010-ext4-Fix-function-prototype-mismatch-for-ext4_f.patch
patches.kernel.org/6.2.1-011-randstruct-disable-Clang-15-support.patch
patches.kernel.org/6.2.1-012-bpf-add-missing-header-file-include.patch
patches.kernel.org/6.2.1-013-Linux-6.2.1.patch
########################################################
# Build fixes that apply to the vanilla kernel too.
@ -147,6 +160,14 @@
# Security
########################################################
# Bug 1198101 - VUL-0: shim: openSUSE tumbleweed not fully locked down? Add opensuse-cert-prompt back to openSUSE shim
# Lock down functions for secure boot
patches.suse/0001-security-lockdown-expose-a-hook-to-lock-the-kernel-down.patch
patches.suse/0002-efi-Add-an-EFI_SECURE_BOOT-flag-to-indicate-secure-boot-mode.patch
patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
patches.suse/0004-efi-Lock-down-the-kernel-at-the-integrity-level-if-b.patch
patches.suse/arm64-lock-down-kernel-in-secure-boot-mode.patch
# crypto
########################################################

View File

@ -1,3 +1,3 @@
2023-02-23 11:58:33 +0000
GIT Revision: 09a9a65d31e41dcd7b8e3abd7752b433891768e0
2023-02-27 11:39:51 +0000
GIT Revision: 69e0e95118afe307ac9da57c2cc7f80673a41423
GIT Branch: stable

View File

@ -3443,8 +3443,8 @@
- drivers/video/fbdev/metronomefb
- drivers/video/fbdev/ocfb
- drivers/video/fbdev/smscufx
drivers/video/fbdev/uvesafb
drivers/video/fbdev/vfb
- drivers/video/fbdev/uvesafb
- drivers/video/fbdev/vfb
+base drivers/video/fbdev/xen-fbfront
- drivers/video/fbdev/xilinxfb
drivers/video/macmodes # Standard MacOS video modes