forked from kernelbugs/kernel-source
Compare commits
25 Commits
Kernel/HEA
...
Kernel/HEA
| Author | SHA256 | Date | |
|---|---|---|---|
| 04f90c7c0e | |||
| abca4406f7 | |||
| ce9086365b | |||
| 79cf705252 | |||
| 6ca7867667 | |||
| 867ac65862 | |||
| 7e7c1bf865 | |||
| b6613982a3 | |||
| fc0d684a0e | |||
| ab553517f2 | |||
| 7b9511c451 | |||
| 3c369db16c | |||
| ea54d84a6e | |||
| 58eb96ac54 | |||
| 6b0b93a4e2 | |||
| 04d8798452 | |||
| 9a2e2c702a | |||
| 878fda9b68 | |||
| c64c072da5 | |||
| c877a3b35d | |||
| 7f57adb7de | |||
| 1f06c9e128 | |||
| b14c7191d2 | |||
| 1d1c0cf8e0 | |||
| 31c19ca5e3 |
@@ -31,7 +31,7 @@ fi
|
||||
if [ -n "$1" ]; then
|
||||
ARCH="$1"
|
||||
else
|
||||
ARCH="$(arch)"
|
||||
ARCH="$(uname -m)"
|
||||
fi
|
||||
case "$ARCH" in
|
||||
# from rpm --eval '%ix86'
|
||||
|
||||
@@ -36,6 +36,7 @@ declare -a IGNORED_CONFIGS_RE=(
|
||||
'LD_VERSION'
|
||||
'LLD_VERSION'
|
||||
'OBJTOOL'
|
||||
'OPENSSL_SUPPORTS_[A-Z0-9_]*'
|
||||
'PAHOLE_HAS_[A-Z0-9_]*'
|
||||
'PAHOLE_VERSION'
|
||||
'RISCV_ISA_[A-Z_]*'
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# The version of the main tarball to use
|
||||
SRCVERSION=6.19-rc4
|
||||
SRCVERSION=7.0-rc3
|
||||
# variant of the kernel-source package, either empty or "-rt"
|
||||
VARIANT=
|
||||
# enable kernel module compression
|
||||
|
||||
BIN
config.tar.bz2
LFS
BIN
config.tar.bz2
LFS
Binary file not shown.
@@ -1,3 +1,540 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 11:56:41 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.rpmify/certs-Replace-openssl-invocation-with-OPENSSL.patch
|
||||
Improved the patch to allow the alternative openssl more generically
|
||||
- commit 332afe7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 01:13:29 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc3
|
||||
- Delete upstream patch kbuild-Leave-objtool-binary-around-with-make-clean.patch
|
||||
- refresh configs
|
||||
- commit 0e787eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 09:14:17 CET 2026 - msuchanek@suse.de
|
||||
|
||||
- Move dummy openssl from kernel-source to kernel
|
||||
Fixes: eb95320d3295 ("scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)")
|
||||
- commit dd3697c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 14:26:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- certs: Replace openssl invocation with $OPENSSL (bsc#1259065).
|
||||
- commit 104ab06
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:53:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Update config files: re-enable CONFIG_OPENSSL_SUPPORTS_ML_DSA (bsc#1259065)
|
||||
- commit 0bfc1b0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:50:22 CET 2026 - tiwai@suse.de
|
||||
|
||||
- scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)
|
||||
Needed for CONFIG_OPENSSL_SUPPORTS_ML_DSA introduced in 7.0 kernel.
|
||||
- commit eb95320
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 01:08:04 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc2
|
||||
- refresh config files
|
||||
- commit 1b18c75
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 28 13:12:05 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- kbuild: Leave objtool binary around with 'make clean' (kmp-fix).
|
||||
- commit 3f3f246
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 24 08:34:34 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: refresh
|
||||
- commit 440de45
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 17:50:45 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: add OPENSSL_SUPPORTS_ to IGNORED_CONFIGS_RE
|
||||
Config option OPENSSL_SUPPORTS_ML_DSA was introduced by mainline commit
|
||||
0ad9a71933e7 ("modsign: Enable ML-DSA module signing") in 7.0-rc1
|
||||
- commit 21b4616
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 15:51:53 CET 2026 - tzimmermann@suse.com
|
||||
|
||||
- config: Enable coreboot support (bsc#1258262)
|
||||
Enable kernel support for coreboot firmware. Enabling these options
|
||||
provides various interfaces under /sys/firmware/. One of the next
|
||||
releases of the Linux kernel will feature corebootdrm, a dedicated
|
||||
DRM driver for coreboot's system framebuffer. The driver relies on
|
||||
support for coreboot firmware.
|
||||
Leave out s390x and ppc64le, as coreboot apparently does not support
|
||||
them.
|
||||
- commit 14b0853
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:14:56 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 7.0-rc1
|
||||
- drop 77 patches (72 stable, 5 mainline):
|
||||
- patches.kernel.org/*
|
||||
- patches.rpmify/gendwarfksyms-Fix-build-on-32-bit-hosts.patch (ddc54f912a55)
|
||||
- patches.suse/accel-amdxdna-Enable-temporal-sharing-only-mode.patch
|
||||
- patches.suse/accel-amdxdna-Remove-NPU2-support.patch
|
||||
- patches.suse/accel-amdxdna-Remove-amdxdna_flush.patch
|
||||
- patches.suse/accel-amdxdna-Update-firmware-version-check-for-late.patch
|
||||
- refresh
|
||||
- patches.rpmify/btf-pahole-j1-option.patch
|
||||
- patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
|
||||
- patches.suse/Restore-kABI-for-NVidia-vGPU-driver.patch
|
||||
- patches.suse/btrfs-provide-super_operations-get_inode_dev
|
||||
- patches.suse/iwlwifi-declare-missing-firmware-files.patch
|
||||
- patches.suse/vfs-add-super_operations-get_inode_dev
|
||||
- patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch
|
||||
- disable ARM architectures (need config update)
|
||||
- new config options
|
||||
- General setup
|
||||
- CONFIG_RSEQ_SLICE_EXTENSION=n
|
||||
- Memory Management options
|
||||
- CONFIG_BALLOON_MIGRATION=y
|
||||
- Networking support
|
||||
- CONFIG_NET_DSA_TAG_MXL_862XX=m
|
||||
- File systems
|
||||
- CONFIG_EROFS_FS_PAGE_CACHE_SHARE=n
|
||||
- CONFIG_NFS_V4_0=n
|
||||
- CONFIG_NFSD_V4_POSIX_ACLS=n
|
||||
- Cryptographic API
|
||||
- CONFIG_CRYPTO_MLDSA=m
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_44=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_65=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_87=n
|
||||
- Kernel hacking
|
||||
- CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=0
|
||||
- CONFIG_BOOTPARAM_WQ_STALL_PANIC=0
|
||||
- CONFIG_DEBUG_ATOMIC=n
|
||||
- CONFIG_CONTEXT_ANALYSIS_TEST=n
|
||||
- Cryptographic API
|
||||
- CONFIG_PKCS7_WAIVE_AUTHATTRS_REJECTION_FOR_MLDSA=n
|
||||
- Network device support
|
||||
- CONFIG_NET_DSA_MXL862=m
|
||||
- CONFIG_DWMAC_MOTORCOMM=m
|
||||
- Hardware Monitoring support
|
||||
- CONFIG_SENSORS_HAC300S=m
|
||||
- CONFIG_SENSORS_MP5926=m
|
||||
- CONFIG_SENSORS_STEF48H28=m
|
||||
- Voltage and Current Regulator Support
|
||||
- CONFIG_REGULATOR_RT8092=m
|
||||
- CONFIG_REGULATOR_TPS65185=m
|
||||
- Multimedia support
|
||||
- CONFIG_VIDEO_OS05B10=m
|
||||
- CONFIG_VIDEO_S5K3M5=m
|
||||
- CONFIG_VIDEO_S5KJN1=m
|
||||
- Graphics support
|
||||
- CONFIG_DRM_ST7571=m
|
||||
- CONFIG_DRM_ST7571_SPI=m
|
||||
- CONFIG_DRM_ST7920=m
|
||||
- Sound card support
|
||||
- CONFIG_SND_SOC_RT5575=m
|
||||
- CONFIG_SND_SOC_RT5575_SPI=y
|
||||
- LED Support
|
||||
- CONFIG_LEDS_OSRAM_AMS_AS3668=m
|
||||
- CONFIG_LEDS_LP5812=m
|
||||
- Staging drivers
|
||||
- CONFIG_FB_TFT=m
|
||||
- CONFIG_FB_TFT_AGM1264K_FL=m
|
||||
- CONFIG_FB_TFT_BD663474=m
|
||||
- CONFIG_FB_TFT_HX8340BN=m
|
||||
- CONFIG_FB_TFT_HX8347D=m
|
||||
- CONFIG_FB_TFT_HX8353D=m
|
||||
- CONFIG_FB_TFT_HX8357D=m
|
||||
- CONFIG_FB_TFT_ILI9163=m
|
||||
- CONFIG_FB_TFT_ILI9320=m
|
||||
- CONFIG_FB_TFT_ILI9325=m
|
||||
- CONFIG_FB_TFT_ILI9340=m
|
||||
- CONFIG_FB_TFT_ILI9341=m
|
||||
- CONFIG_FB_TFT_ILI9481=m
|
||||
- CONFIG_FB_TFT_ILI9486=m
|
||||
- CONFIG_FB_TFT_PCD8544=m
|
||||
- CONFIG_FB_TFT_RA8875=m
|
||||
- CONFIG_FB_TFT_S6D02A1=m
|
||||
- CONFIG_FB_TFT_S6D1121=m
|
||||
- CONFIG_FB_TFT_SEPS525=m
|
||||
- CONFIG_FB_TFT_SH1106=m
|
||||
- CONFIG_FB_TFT_SSD1289=m
|
||||
- CONFIG_FB_TFT_SSD1305=m
|
||||
- CONFIG_FB_TFT_SSD1306=m
|
||||
- CONFIG_FB_TFT_SSD1331=m
|
||||
- CONFIG_FB_TFT_SSD1351=m
|
||||
- CONFIG_FB_TFT_ST7735R=m
|
||||
- CONFIG_FB_TFT_ST7789V=m
|
||||
- CONFIG_FB_TFT_TINYLCD=m
|
||||
- CONFIG_FB_TFT_TLS8204=m
|
||||
- CONFIG_FB_TFT_UC1611=m
|
||||
- CONFIG_FB_TFT_UC1701=m
|
||||
- CONFIG_FB_TFT_UPD161704=m
|
||||
- Industrial I/O support
|
||||
- CONFIG_ADXL345_I2C=n
|
||||
- CONFIG_ADXL345_SPI=n
|
||||
- CONFIG_AD4062=n
|
||||
- CONFIG_AD4134=n
|
||||
- CONFIG_TI_ADS1018=n
|
||||
- CONFIG_TI_ADS131M02=n
|
||||
- CONFIG_ADL8113=n
|
||||
- CONFIG_MAX22007=n
|
||||
- CONFIG_MCP47FEB02=n
|
||||
- CONFIG_MMC5633=n
|
||||
- CONFIG_ABP2030PA_I2C=n
|
||||
- CONFIG_ABP2030PA_SPI=n
|
||||
- CONFIG_MPRLS0025PA_I2C=n
|
||||
- CONFIG_MPRLS0025PA_SPI=n
|
||||
- misc drivers
|
||||
- CONFIG_PHY_GOOGLE_USB=m
|
||||
- CONFIG_DPLL_REFCNT_TRACKER=n
|
||||
- CONFIG_HID_RAPOO=m
|
||||
- CONFIG_USB_DWC3_GOOGLE=m
|
||||
- CONFIG_IOMMU_DEBUG_PAGEALLOC=n
|
||||
- OF dependent (i386, ppc64le, riscv64)
|
||||
- GPIO_LINE_MUX=m
|
||||
- POWER_SEQUENCING_PCIE_M2=m
|
||||
- i386
|
||||
- REGULATOR_MAX77675=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- ppc64le
|
||||
- INTEL_MEI=n
|
||||
- LOGO_LINUX_VGA16_FILE="drivers/video/logo/logo_linux_vga16.ppm"
|
||||
- LOGO_LINUX_CLUT224_FILE="drivers/video/logo/logo_linux_clut224.ppm"
|
||||
- TRUSTED_KEYS_PKWM=y
|
||||
- s390x
|
||||
- INTEL_MEI=n
|
||||
- s390x/zfcpdump
|
||||
- KEXEC_SIG=y
|
||||
- PKCS8_PRIVATE_KEY_PARSER=y
|
||||
- PKCS7_TEST_KEY=n
|
||||
- SIGNED_PE_FILE_VERIFICATION=y
|
||||
- FIPS_SIGNATURE_SELFTEST=n
|
||||
- SYSTEM_TRUSTED_KEYS=""
|
||||
- SYSTEM_EXTRA_CERTIFICATE=n
|
||||
- SECONDARY_TRUSTED_KEYRING=y
|
||||
- SECONDARY_TRUSTED_KEYRING_SIGNED_BY_BUILTIN=n
|
||||
- riscv64
|
||||
- RISCV_USER_CFI=y
|
||||
- INTEL_MEI=n
|
||||
- SPI_ATCSPI200=m
|
||||
- REGULATOR_MAX77675=m
|
||||
- VIDEO_DW_MIPI_CSI2RX=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- FIRMWARE_EDID=y
|
||||
- SND_SOC_CV1800B_TDM=m
|
||||
- SND_SOC_CV1800B_ADC_CODEC=m
|
||||
- SND_SOC_CV1800B_DAC_CODEC=m
|
||||
- SPACEMIT_K3_CCU=m
|
||||
- RESET_SPACEMIT_K1=m
|
||||
- RESET_SPACEMIT_K3=m
|
||||
- PHY_SPACEMIT_K1_PCIE=m
|
||||
- PHY_SPACEMIT_K1_USB2=m
|
||||
- commit 96fa923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 06:28:12 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.3 (bsc#1012628).
|
||||
- scsi: qla2xxx: Fix bsg_done() causing double free (bsc#1012628).
|
||||
- arm64: dts: mediatek: mt8183: Add missing endpoint IDs to
|
||||
display graph (bsc#1012628).
|
||||
- LoongArch: Rework KASAN initialization for PTW-enabled systems
|
||||
(bsc#1012628).
|
||||
- fbdev: rivafb: fix divide error in nv3_arb() (bsc#1012628).
|
||||
- fbdev: smscufx: properly copy ioctl memory to kernelspace
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to add gc count stat in f2fs_gc_range (bsc#1012628).
|
||||
- f2fs: fix to check sysfs filename w/ gc_pin_file_thresh
|
||||
correctly (bsc#1012628).
|
||||
- f2fs: fix IS_CHECKPOINTED flag inconsistency issue caused by
|
||||
concurrent atomic commit and checkpoint writes (bsc#1012628).
|
||||
- f2fs: fix out-of-bounds access in sysfs attribute read/write
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid UAF in f2fs_write_end_io() (bsc#1012628).
|
||||
- f2fs: support non-4KB block size without packed_ssa feature
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid mapping wrong physical block for swapfile
|
||||
(bsc#1012628).
|
||||
- f2fs: optimize f2fs_overwrite_io() for f2fs_iomap_begin
|
||||
(bsc#1012628).
|
||||
- Revert "f2fs: block cache/dio write during
|
||||
f2fs_enable_checkpoint()" (bsc#1012628).
|
||||
- USB: serial: option: add Telit FN920C04 RNDIS compositions
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
__write_node_folio() (bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
{read,write}_end_io (bsc#1012628).
|
||||
- f2fs: fix incomplete block usage in compact SSA summaries
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.3-014-iommu-arm-smmu-qcom-do-not-register-driver-in-.patch.
|
||||
- commit fcdf9c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 18 15:43:45 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Move upstreamed amdxdna patches into sorted section
|
||||
- commit 787d692
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:36:29 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- iommu/arm-smmu-qcom: do not register driver in probe()
|
||||
(git-fixes).
|
||||
- commit 7b303f4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:47 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.2 (bsc#1012628).
|
||||
- Revert "driver core: enforce device_lock for
|
||||
driver_match_device()" (bsc#1012628).
|
||||
- commit 57aa524
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:02 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.1 (bsc#1012628).
|
||||
- smb: client: split cached_fid bitfields to avoid shared-byte
|
||||
RMW races (bsc#1012628).
|
||||
- ksmbd: fix infinite loop caused by next_smb2_rcv_hdr_off reset
|
||||
in error paths (bsc#1012628).
|
||||
- ksmbd: add chann_lock to protect ksmbd_chann_list xarray
|
||||
(bsc#1012628).
|
||||
- smb: server: fix leak of active_num_conn in
|
||||
ksmbd_tcp_new_connection() (bsc#1012628).
|
||||
- smb: smbdirect: introduce
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: smbdirect: introduce smbdirect_socket.send_io.bcredits.*
|
||||
(bsc#1012628).
|
||||
- smb: server: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: server: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: server: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: server: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: server: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- smb: client: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: client: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: client: let smbd_post_send() make use of request->wr
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->recv_io.credits.count rollback
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->send_io.pending handling in
|
||||
smbd_post_send_iter() (bsc#1012628).
|
||||
- smb: client: port and use the wait_for_credits logic used by
|
||||
server (bsc#1012628).
|
||||
- smb: client: split out smbd_ib_post_send() (bsc#1012628).
|
||||
- smb: client: introduce and use smbd_{alloc, free}_send_io()
|
||||
(bsc#1012628).
|
||||
- smb: client: use smbdirect_send_batch processing (bsc#1012628).
|
||||
- smb: client: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: client: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: client: let smbd_post_send_negotiate_req() use
|
||||
smbd_post_send() (bsc#1012628).
|
||||
- smb: client: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- driver core: enforce device_lock for driver_match_device()
|
||||
(bsc#1012628).
|
||||
- Bluetooth: btusb: Add USB ID 7392:e611 for Edimax EW-7611UXB
|
||||
(bsc#1012628).
|
||||
- ALSA: hda/conexant: Add quirk for HP ZBook Studio G4
|
||||
(bsc#1012628).
|
||||
- crypto: iaa - Fix out-of-bounds index in
|
||||
find_empty_iaa_compression_mode (bsc#1012628).
|
||||
- crypto: octeontx - Fix length check to avoid truncation in
|
||||
ucode_load_store (bsc#1012628).
|
||||
- crypto: omap - Allocate OMAP_CRYPTO_FORCE_COPY scatterlists
|
||||
correctly (bsc#1012628).
|
||||
- crypto: virtio - Add spinlock protection with virtqueue
|
||||
notification (bsc#1012628).
|
||||
- crypto: virtio - Remove duplicated virtqueue_kick in
|
||||
virtio_crypto_skcipher_crypt_req (bsc#1012628).
|
||||
- nilfs2: Fix potential block overflow that cause system hang
|
||||
(bsc#1012628).
|
||||
- hfs: ensure sb->s_fs_info is always cleaned up (bsc#1012628).
|
||||
- wifi: rtw88: Fix alignment fault in rtw_core_enable_beacon()
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Validate sp before freeing associated memory
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Allow recovery for tape devices (bsc#1012628).
|
||||
- scsi: qla2xxx: Delay module unload while fabric scan in progress
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Free sp in error path to fix system crash
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Query FW again before proceeding with login
|
||||
(bsc#1012628).
|
||||
- sched/mmcid: Don't assume CID is CPU owned on mode switch
|
||||
(bsc#1012628).
|
||||
- bus: fsl-mc: fix use-after-free in driver_override_show()
|
||||
(bsc#1012628).
|
||||
- erofs: fix UAF issue for file-backed mounts w/ directio option
|
||||
(bsc#1012628).
|
||||
- xfs: fix UAF in xchk_btree_check_block_owner (bsc#1012628).
|
||||
- drm/exynos: vidi: use ctx->lock to protect struct vidi_context
|
||||
member variables related to memory alloc/free (bsc#1012628).
|
||||
- PCI: endpoint: Avoid creating sub-groups asynchronously
|
||||
(bsc#1012628).
|
||||
- wifi: rtl8xxxu: fix slab-out-of-bounds in rtl8xxxu_sta_add
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-001-io_uring-io-wq-add-exit-on-idle-state.patch.
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-002-io_uring-allow-io-wq-workers-to-exit-when-unus.patch.
|
||||
- commit 2f9cad9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 12 07:11:01 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- io_uring: allow io-wq workers to exit when unused
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- io_uring/io-wq: add exit-on-idle state
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- commit b7d1ad1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:33:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19 final
|
||||
- refresh configs (headers only)
|
||||
- commit 8f6da03
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:31:10 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv6hl configs
|
||||
- option values copied from armv7hl
|
||||
- commit 7ef7460
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:28:36 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv7hl configs
|
||||
- option values copied from arm64 except
|
||||
- MACH_MT6582=y
|
||||
- CLK_RK3506=y
|
||||
- commit e113f66
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:16:37 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable arm64 configs
|
||||
- option values copied from x86_64, i386 and riscv64 except
|
||||
- ARCH_BST=y
|
||||
- ARM64_MPAM=y
|
||||
- PCI_SKY1_HOST=m
|
||||
- PCIE_NXP_S32G=y
|
||||
- CACHEMAINT_FOR_HOTPLUG=y
|
||||
- HISI_SOC_HHA=m
|
||||
- PINCTRL_SKY1=m
|
||||
- PINCTRL_MT6878=y
|
||||
- PINCTRL_KAANAPALI=m
|
||||
- GPIO_SHARED_PROXY=m
|
||||
- CHARGER_BD71828=m
|
||||
- SENSORS_MACSMC_HWMON=m
|
||||
- IMX91_THERMAL=m
|
||||
- VIDEO_ROCKCHIP_CIF=m
|
||||
- DRM_IMX8MP_HDMI_PAI=m
|
||||
- DRM_DW_HDMI_QP_CEC=y
|
||||
- DRM_MEDIATEK_HDMI_V2=m
|
||||
- SND_HDA_CIX_IPBLOQ=m
|
||||
- SND_SOC_MT8189=m
|
||||
- SND_SOC_MT8189_NAU8825=m
|
||||
- USB_DWC3_APPLE=m
|
||||
- SCSI_UFS_AMD_VERSAL2=m
|
||||
- RTC_DRV_MACSMC=m
|
||||
- IPQ_NSSCC_5424=m
|
||||
- SM_VIDEOCC_8750=m
|
||||
- CLK_RV1126B=y
|
||||
- RTK_SYSTIMER=y
|
||||
- MTK_MFG_PM_DOMAIN=y
|
||||
- PWM_AIROHA=m
|
||||
- NVMEM_QNAP_MCU_EEPROM=m
|
||||
- INTERCONNECT_QCOM_KAANAPALI=m
|
||||
- ARM64_MPAM_DRIVER_DEBUG=n
|
||||
- commit 0e2d85d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 13:36:06 CET 2026 - tiwai@suse.de
|
||||
|
||||
- accel/amdxdna: Update firmware version check for latest firmware
|
||||
(bsc#1257724).
|
||||
- accel/amdxdna: Enable temporal sharing only mode (bsc#1257724).
|
||||
- accel/amdxdna: Remove NPU2 support (bsc#1257724).
|
||||
- accel/amdxdna: Remove amdxdna_flush() (bsc#1257724).
|
||||
- commit 6eaf1bb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 12:25:17 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch (bsc#1252084)
|
||||
The upstream didn't release *-101.ucode for some models.
|
||||
- commit 33ced68
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 23:11:15 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc8
|
||||
- commit 41a428c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 26 00:11:33 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc7
|
||||
- drop no longer needed patch (obsoleted by 3f2de814c059)
|
||||
- patches.rpmify/Revert-objtool-fix-build-failure-due-to-missing-libopcodes.patch
|
||||
- update configs
|
||||
- DRM_XE_USERPTR_INVAL_INJECT=n (on i386)
|
||||
- commit 3fe5a20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 21 16:03:32 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- Revert "objtool: fix build failure due to missing libopcodes
|
||||
check".
|
||||
- commit 50c998d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 09:23:32 CET 2026 - jdelvare@suse.com
|
||||
|
||||
- Enable NCT6694 support on x86_64
|
||||
This multi-function device is platform-independent and can be found
|
||||
on both ARM and x86 platforms.
|
||||
- commit e5dd94d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 06:20:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc6
|
||||
- refresh configs
|
||||
- commit e5456de
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 09:08:40 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc5
|
||||
- update configs
|
||||
- MISC_RP1=n (i386)
|
||||
- commit 444cfba
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:10:18 CET 2026 - tiwai@suse.de
|
||||
|
||||
|
||||
@@ -16,8 +16,8 @@
|
||||
#
|
||||
|
||||
|
||||
%define srcversion 6.19-rc4
|
||||
%define patchversion 6.19.0-rc4
|
||||
%define srcversion 7.0-rc3
|
||||
%define patchversion 7.0.0-rc3
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@@ -25,9 +25,9 @@
|
||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,arch-symbols,check-module-license,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
|
||||
|
||||
Name: dtb-aarch64
|
||||
Version: 6.19~rc4
|
||||
Version: 7.0~rc3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g5352249
|
||||
Release: <RELEASE>.g2efdd9c
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
||||
@@ -1,3 +1,540 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 11:56:41 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.rpmify/certs-Replace-openssl-invocation-with-OPENSSL.patch
|
||||
Improved the patch to allow the alternative openssl more generically
|
||||
- commit 332afe7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 01:13:29 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc3
|
||||
- Delete upstream patch kbuild-Leave-objtool-binary-around-with-make-clean.patch
|
||||
- refresh configs
|
||||
- commit 0e787eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 09:14:17 CET 2026 - msuchanek@suse.de
|
||||
|
||||
- Move dummy openssl from kernel-source to kernel
|
||||
Fixes: eb95320d3295 ("scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)")
|
||||
- commit dd3697c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 14:26:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- certs: Replace openssl invocation with $OPENSSL (bsc#1259065).
|
||||
- commit 104ab06
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:53:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Update config files: re-enable CONFIG_OPENSSL_SUPPORTS_ML_DSA (bsc#1259065)
|
||||
- commit 0bfc1b0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:50:22 CET 2026 - tiwai@suse.de
|
||||
|
||||
- scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)
|
||||
Needed for CONFIG_OPENSSL_SUPPORTS_ML_DSA introduced in 7.0 kernel.
|
||||
- commit eb95320
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 01:08:04 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc2
|
||||
- refresh config files
|
||||
- commit 1b18c75
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 28 13:12:05 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- kbuild: Leave objtool binary around with 'make clean' (kmp-fix).
|
||||
- commit 3f3f246
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 24 08:34:34 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: refresh
|
||||
- commit 440de45
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 17:50:45 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: add OPENSSL_SUPPORTS_ to IGNORED_CONFIGS_RE
|
||||
Config option OPENSSL_SUPPORTS_ML_DSA was introduced by mainline commit
|
||||
0ad9a71933e7 ("modsign: Enable ML-DSA module signing") in 7.0-rc1
|
||||
- commit 21b4616
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 15:51:53 CET 2026 - tzimmermann@suse.com
|
||||
|
||||
- config: Enable coreboot support (bsc#1258262)
|
||||
Enable kernel support for coreboot firmware. Enabling these options
|
||||
provides various interfaces under /sys/firmware/. One of the next
|
||||
releases of the Linux kernel will feature corebootdrm, a dedicated
|
||||
DRM driver for coreboot's system framebuffer. The driver relies on
|
||||
support for coreboot firmware.
|
||||
Leave out s390x and ppc64le, as coreboot apparently does not support
|
||||
them.
|
||||
- commit 14b0853
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:14:56 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 7.0-rc1
|
||||
- drop 77 patches (72 stable, 5 mainline):
|
||||
- patches.kernel.org/*
|
||||
- patches.rpmify/gendwarfksyms-Fix-build-on-32-bit-hosts.patch (ddc54f912a55)
|
||||
- patches.suse/accel-amdxdna-Enable-temporal-sharing-only-mode.patch
|
||||
- patches.suse/accel-amdxdna-Remove-NPU2-support.patch
|
||||
- patches.suse/accel-amdxdna-Remove-amdxdna_flush.patch
|
||||
- patches.suse/accel-amdxdna-Update-firmware-version-check-for-late.patch
|
||||
- refresh
|
||||
- patches.rpmify/btf-pahole-j1-option.patch
|
||||
- patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
|
||||
- patches.suse/Restore-kABI-for-NVidia-vGPU-driver.patch
|
||||
- patches.suse/btrfs-provide-super_operations-get_inode_dev
|
||||
- patches.suse/iwlwifi-declare-missing-firmware-files.patch
|
||||
- patches.suse/vfs-add-super_operations-get_inode_dev
|
||||
- patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch
|
||||
- disable ARM architectures (need config update)
|
||||
- new config options
|
||||
- General setup
|
||||
- CONFIG_RSEQ_SLICE_EXTENSION=n
|
||||
- Memory Management options
|
||||
- CONFIG_BALLOON_MIGRATION=y
|
||||
- Networking support
|
||||
- CONFIG_NET_DSA_TAG_MXL_862XX=m
|
||||
- File systems
|
||||
- CONFIG_EROFS_FS_PAGE_CACHE_SHARE=n
|
||||
- CONFIG_NFS_V4_0=n
|
||||
- CONFIG_NFSD_V4_POSIX_ACLS=n
|
||||
- Cryptographic API
|
||||
- CONFIG_CRYPTO_MLDSA=m
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_44=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_65=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_87=n
|
||||
- Kernel hacking
|
||||
- CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=0
|
||||
- CONFIG_BOOTPARAM_WQ_STALL_PANIC=0
|
||||
- CONFIG_DEBUG_ATOMIC=n
|
||||
- CONFIG_CONTEXT_ANALYSIS_TEST=n
|
||||
- Cryptographic API
|
||||
- CONFIG_PKCS7_WAIVE_AUTHATTRS_REJECTION_FOR_MLDSA=n
|
||||
- Network device support
|
||||
- CONFIG_NET_DSA_MXL862=m
|
||||
- CONFIG_DWMAC_MOTORCOMM=m
|
||||
- Hardware Monitoring support
|
||||
- CONFIG_SENSORS_HAC300S=m
|
||||
- CONFIG_SENSORS_MP5926=m
|
||||
- CONFIG_SENSORS_STEF48H28=m
|
||||
- Voltage and Current Regulator Support
|
||||
- CONFIG_REGULATOR_RT8092=m
|
||||
- CONFIG_REGULATOR_TPS65185=m
|
||||
- Multimedia support
|
||||
- CONFIG_VIDEO_OS05B10=m
|
||||
- CONFIG_VIDEO_S5K3M5=m
|
||||
- CONFIG_VIDEO_S5KJN1=m
|
||||
- Graphics support
|
||||
- CONFIG_DRM_ST7571=m
|
||||
- CONFIG_DRM_ST7571_SPI=m
|
||||
- CONFIG_DRM_ST7920=m
|
||||
- Sound card support
|
||||
- CONFIG_SND_SOC_RT5575=m
|
||||
- CONFIG_SND_SOC_RT5575_SPI=y
|
||||
- LED Support
|
||||
- CONFIG_LEDS_OSRAM_AMS_AS3668=m
|
||||
- CONFIG_LEDS_LP5812=m
|
||||
- Staging drivers
|
||||
- CONFIG_FB_TFT=m
|
||||
- CONFIG_FB_TFT_AGM1264K_FL=m
|
||||
- CONFIG_FB_TFT_BD663474=m
|
||||
- CONFIG_FB_TFT_HX8340BN=m
|
||||
- CONFIG_FB_TFT_HX8347D=m
|
||||
- CONFIG_FB_TFT_HX8353D=m
|
||||
- CONFIG_FB_TFT_HX8357D=m
|
||||
- CONFIG_FB_TFT_ILI9163=m
|
||||
- CONFIG_FB_TFT_ILI9320=m
|
||||
- CONFIG_FB_TFT_ILI9325=m
|
||||
- CONFIG_FB_TFT_ILI9340=m
|
||||
- CONFIG_FB_TFT_ILI9341=m
|
||||
- CONFIG_FB_TFT_ILI9481=m
|
||||
- CONFIG_FB_TFT_ILI9486=m
|
||||
- CONFIG_FB_TFT_PCD8544=m
|
||||
- CONFIG_FB_TFT_RA8875=m
|
||||
- CONFIG_FB_TFT_S6D02A1=m
|
||||
- CONFIG_FB_TFT_S6D1121=m
|
||||
- CONFIG_FB_TFT_SEPS525=m
|
||||
- CONFIG_FB_TFT_SH1106=m
|
||||
- CONFIG_FB_TFT_SSD1289=m
|
||||
- CONFIG_FB_TFT_SSD1305=m
|
||||
- CONFIG_FB_TFT_SSD1306=m
|
||||
- CONFIG_FB_TFT_SSD1331=m
|
||||
- CONFIG_FB_TFT_SSD1351=m
|
||||
- CONFIG_FB_TFT_ST7735R=m
|
||||
- CONFIG_FB_TFT_ST7789V=m
|
||||
- CONFIG_FB_TFT_TINYLCD=m
|
||||
- CONFIG_FB_TFT_TLS8204=m
|
||||
- CONFIG_FB_TFT_UC1611=m
|
||||
- CONFIG_FB_TFT_UC1701=m
|
||||
- CONFIG_FB_TFT_UPD161704=m
|
||||
- Industrial I/O support
|
||||
- CONFIG_ADXL345_I2C=n
|
||||
- CONFIG_ADXL345_SPI=n
|
||||
- CONFIG_AD4062=n
|
||||
- CONFIG_AD4134=n
|
||||
- CONFIG_TI_ADS1018=n
|
||||
- CONFIG_TI_ADS131M02=n
|
||||
- CONFIG_ADL8113=n
|
||||
- CONFIG_MAX22007=n
|
||||
- CONFIG_MCP47FEB02=n
|
||||
- CONFIG_MMC5633=n
|
||||
- CONFIG_ABP2030PA_I2C=n
|
||||
- CONFIG_ABP2030PA_SPI=n
|
||||
- CONFIG_MPRLS0025PA_I2C=n
|
||||
- CONFIG_MPRLS0025PA_SPI=n
|
||||
- misc drivers
|
||||
- CONFIG_PHY_GOOGLE_USB=m
|
||||
- CONFIG_DPLL_REFCNT_TRACKER=n
|
||||
- CONFIG_HID_RAPOO=m
|
||||
- CONFIG_USB_DWC3_GOOGLE=m
|
||||
- CONFIG_IOMMU_DEBUG_PAGEALLOC=n
|
||||
- OF dependent (i386, ppc64le, riscv64)
|
||||
- GPIO_LINE_MUX=m
|
||||
- POWER_SEQUENCING_PCIE_M2=m
|
||||
- i386
|
||||
- REGULATOR_MAX77675=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- ppc64le
|
||||
- INTEL_MEI=n
|
||||
- LOGO_LINUX_VGA16_FILE="drivers/video/logo/logo_linux_vga16.ppm"
|
||||
- LOGO_LINUX_CLUT224_FILE="drivers/video/logo/logo_linux_clut224.ppm"
|
||||
- TRUSTED_KEYS_PKWM=y
|
||||
- s390x
|
||||
- INTEL_MEI=n
|
||||
- s390x/zfcpdump
|
||||
- KEXEC_SIG=y
|
||||
- PKCS8_PRIVATE_KEY_PARSER=y
|
||||
- PKCS7_TEST_KEY=n
|
||||
- SIGNED_PE_FILE_VERIFICATION=y
|
||||
- FIPS_SIGNATURE_SELFTEST=n
|
||||
- SYSTEM_TRUSTED_KEYS=""
|
||||
- SYSTEM_EXTRA_CERTIFICATE=n
|
||||
- SECONDARY_TRUSTED_KEYRING=y
|
||||
- SECONDARY_TRUSTED_KEYRING_SIGNED_BY_BUILTIN=n
|
||||
- riscv64
|
||||
- RISCV_USER_CFI=y
|
||||
- INTEL_MEI=n
|
||||
- SPI_ATCSPI200=m
|
||||
- REGULATOR_MAX77675=m
|
||||
- VIDEO_DW_MIPI_CSI2RX=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- FIRMWARE_EDID=y
|
||||
- SND_SOC_CV1800B_TDM=m
|
||||
- SND_SOC_CV1800B_ADC_CODEC=m
|
||||
- SND_SOC_CV1800B_DAC_CODEC=m
|
||||
- SPACEMIT_K3_CCU=m
|
||||
- RESET_SPACEMIT_K1=m
|
||||
- RESET_SPACEMIT_K3=m
|
||||
- PHY_SPACEMIT_K1_PCIE=m
|
||||
- PHY_SPACEMIT_K1_USB2=m
|
||||
- commit 96fa923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 06:28:12 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.3 (bsc#1012628).
|
||||
- scsi: qla2xxx: Fix bsg_done() causing double free (bsc#1012628).
|
||||
- arm64: dts: mediatek: mt8183: Add missing endpoint IDs to
|
||||
display graph (bsc#1012628).
|
||||
- LoongArch: Rework KASAN initialization for PTW-enabled systems
|
||||
(bsc#1012628).
|
||||
- fbdev: rivafb: fix divide error in nv3_arb() (bsc#1012628).
|
||||
- fbdev: smscufx: properly copy ioctl memory to kernelspace
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to add gc count stat in f2fs_gc_range (bsc#1012628).
|
||||
- f2fs: fix to check sysfs filename w/ gc_pin_file_thresh
|
||||
correctly (bsc#1012628).
|
||||
- f2fs: fix IS_CHECKPOINTED flag inconsistency issue caused by
|
||||
concurrent atomic commit and checkpoint writes (bsc#1012628).
|
||||
- f2fs: fix out-of-bounds access in sysfs attribute read/write
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid UAF in f2fs_write_end_io() (bsc#1012628).
|
||||
- f2fs: support non-4KB block size without packed_ssa feature
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid mapping wrong physical block for swapfile
|
||||
(bsc#1012628).
|
||||
- f2fs: optimize f2fs_overwrite_io() for f2fs_iomap_begin
|
||||
(bsc#1012628).
|
||||
- Revert "f2fs: block cache/dio write during
|
||||
f2fs_enable_checkpoint()" (bsc#1012628).
|
||||
- USB: serial: option: add Telit FN920C04 RNDIS compositions
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
__write_node_folio() (bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
{read,write}_end_io (bsc#1012628).
|
||||
- f2fs: fix incomplete block usage in compact SSA summaries
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.3-014-iommu-arm-smmu-qcom-do-not-register-driver-in-.patch.
|
||||
- commit fcdf9c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 18 15:43:45 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Move upstreamed amdxdna patches into sorted section
|
||||
- commit 787d692
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:36:29 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- iommu/arm-smmu-qcom: do not register driver in probe()
|
||||
(git-fixes).
|
||||
- commit 7b303f4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:47 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.2 (bsc#1012628).
|
||||
- Revert "driver core: enforce device_lock for
|
||||
driver_match_device()" (bsc#1012628).
|
||||
- commit 57aa524
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:02 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.1 (bsc#1012628).
|
||||
- smb: client: split cached_fid bitfields to avoid shared-byte
|
||||
RMW races (bsc#1012628).
|
||||
- ksmbd: fix infinite loop caused by next_smb2_rcv_hdr_off reset
|
||||
in error paths (bsc#1012628).
|
||||
- ksmbd: add chann_lock to protect ksmbd_chann_list xarray
|
||||
(bsc#1012628).
|
||||
- smb: server: fix leak of active_num_conn in
|
||||
ksmbd_tcp_new_connection() (bsc#1012628).
|
||||
- smb: smbdirect: introduce
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: smbdirect: introduce smbdirect_socket.send_io.bcredits.*
|
||||
(bsc#1012628).
|
||||
- smb: server: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: server: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: server: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: server: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: server: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- smb: client: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: client: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: client: let smbd_post_send() make use of request->wr
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->recv_io.credits.count rollback
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->send_io.pending handling in
|
||||
smbd_post_send_iter() (bsc#1012628).
|
||||
- smb: client: port and use the wait_for_credits logic used by
|
||||
server (bsc#1012628).
|
||||
- smb: client: split out smbd_ib_post_send() (bsc#1012628).
|
||||
- smb: client: introduce and use smbd_{alloc, free}_send_io()
|
||||
(bsc#1012628).
|
||||
- smb: client: use smbdirect_send_batch processing (bsc#1012628).
|
||||
- smb: client: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: client: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: client: let smbd_post_send_negotiate_req() use
|
||||
smbd_post_send() (bsc#1012628).
|
||||
- smb: client: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- driver core: enforce device_lock for driver_match_device()
|
||||
(bsc#1012628).
|
||||
- Bluetooth: btusb: Add USB ID 7392:e611 for Edimax EW-7611UXB
|
||||
(bsc#1012628).
|
||||
- ALSA: hda/conexant: Add quirk for HP ZBook Studio G4
|
||||
(bsc#1012628).
|
||||
- crypto: iaa - Fix out-of-bounds index in
|
||||
find_empty_iaa_compression_mode (bsc#1012628).
|
||||
- crypto: octeontx - Fix length check to avoid truncation in
|
||||
ucode_load_store (bsc#1012628).
|
||||
- crypto: omap - Allocate OMAP_CRYPTO_FORCE_COPY scatterlists
|
||||
correctly (bsc#1012628).
|
||||
- crypto: virtio - Add spinlock protection with virtqueue
|
||||
notification (bsc#1012628).
|
||||
- crypto: virtio - Remove duplicated virtqueue_kick in
|
||||
virtio_crypto_skcipher_crypt_req (bsc#1012628).
|
||||
- nilfs2: Fix potential block overflow that cause system hang
|
||||
(bsc#1012628).
|
||||
- hfs: ensure sb->s_fs_info is always cleaned up (bsc#1012628).
|
||||
- wifi: rtw88: Fix alignment fault in rtw_core_enable_beacon()
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Validate sp before freeing associated memory
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Allow recovery for tape devices (bsc#1012628).
|
||||
- scsi: qla2xxx: Delay module unload while fabric scan in progress
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Free sp in error path to fix system crash
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Query FW again before proceeding with login
|
||||
(bsc#1012628).
|
||||
- sched/mmcid: Don't assume CID is CPU owned on mode switch
|
||||
(bsc#1012628).
|
||||
- bus: fsl-mc: fix use-after-free in driver_override_show()
|
||||
(bsc#1012628).
|
||||
- erofs: fix UAF issue for file-backed mounts w/ directio option
|
||||
(bsc#1012628).
|
||||
- xfs: fix UAF in xchk_btree_check_block_owner (bsc#1012628).
|
||||
- drm/exynos: vidi: use ctx->lock to protect struct vidi_context
|
||||
member variables related to memory alloc/free (bsc#1012628).
|
||||
- PCI: endpoint: Avoid creating sub-groups asynchronously
|
||||
(bsc#1012628).
|
||||
- wifi: rtl8xxxu: fix slab-out-of-bounds in rtl8xxxu_sta_add
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-001-io_uring-io-wq-add-exit-on-idle-state.patch.
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-002-io_uring-allow-io-wq-workers-to-exit-when-unus.patch.
|
||||
- commit 2f9cad9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 12 07:11:01 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- io_uring: allow io-wq workers to exit when unused
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- io_uring/io-wq: add exit-on-idle state
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- commit b7d1ad1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:33:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19 final
|
||||
- refresh configs (headers only)
|
||||
- commit 8f6da03
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:31:10 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv6hl configs
|
||||
- option values copied from armv7hl
|
||||
- commit 7ef7460
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:28:36 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv7hl configs
|
||||
- option values copied from arm64 except
|
||||
- MACH_MT6582=y
|
||||
- CLK_RK3506=y
|
||||
- commit e113f66
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:16:37 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable arm64 configs
|
||||
- option values copied from x86_64, i386 and riscv64 except
|
||||
- ARCH_BST=y
|
||||
- ARM64_MPAM=y
|
||||
- PCI_SKY1_HOST=m
|
||||
- PCIE_NXP_S32G=y
|
||||
- CACHEMAINT_FOR_HOTPLUG=y
|
||||
- HISI_SOC_HHA=m
|
||||
- PINCTRL_SKY1=m
|
||||
- PINCTRL_MT6878=y
|
||||
- PINCTRL_KAANAPALI=m
|
||||
- GPIO_SHARED_PROXY=m
|
||||
- CHARGER_BD71828=m
|
||||
- SENSORS_MACSMC_HWMON=m
|
||||
- IMX91_THERMAL=m
|
||||
- VIDEO_ROCKCHIP_CIF=m
|
||||
- DRM_IMX8MP_HDMI_PAI=m
|
||||
- DRM_DW_HDMI_QP_CEC=y
|
||||
- DRM_MEDIATEK_HDMI_V2=m
|
||||
- SND_HDA_CIX_IPBLOQ=m
|
||||
- SND_SOC_MT8189=m
|
||||
- SND_SOC_MT8189_NAU8825=m
|
||||
- USB_DWC3_APPLE=m
|
||||
- SCSI_UFS_AMD_VERSAL2=m
|
||||
- RTC_DRV_MACSMC=m
|
||||
- IPQ_NSSCC_5424=m
|
||||
- SM_VIDEOCC_8750=m
|
||||
- CLK_RV1126B=y
|
||||
- RTK_SYSTIMER=y
|
||||
- MTK_MFG_PM_DOMAIN=y
|
||||
- PWM_AIROHA=m
|
||||
- NVMEM_QNAP_MCU_EEPROM=m
|
||||
- INTERCONNECT_QCOM_KAANAPALI=m
|
||||
- ARM64_MPAM_DRIVER_DEBUG=n
|
||||
- commit 0e2d85d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 13:36:06 CET 2026 - tiwai@suse.de
|
||||
|
||||
- accel/amdxdna: Update firmware version check for latest firmware
|
||||
(bsc#1257724).
|
||||
- accel/amdxdna: Enable temporal sharing only mode (bsc#1257724).
|
||||
- accel/amdxdna: Remove NPU2 support (bsc#1257724).
|
||||
- accel/amdxdna: Remove amdxdna_flush() (bsc#1257724).
|
||||
- commit 6eaf1bb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 12:25:17 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch (bsc#1252084)
|
||||
The upstream didn't release *-101.ucode for some models.
|
||||
- commit 33ced68
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 23:11:15 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc8
|
||||
- commit 41a428c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 26 00:11:33 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc7
|
||||
- drop no longer needed patch (obsoleted by 3f2de814c059)
|
||||
- patches.rpmify/Revert-objtool-fix-build-failure-due-to-missing-libopcodes.patch
|
||||
- update configs
|
||||
- DRM_XE_USERPTR_INVAL_INJECT=n (on i386)
|
||||
- commit 3fe5a20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 21 16:03:32 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- Revert "objtool: fix build failure due to missing libopcodes
|
||||
check".
|
||||
- commit 50c998d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 09:23:32 CET 2026 - jdelvare@suse.com
|
||||
|
||||
- Enable NCT6694 support on x86_64
|
||||
This multi-function device is platform-independent and can be found
|
||||
on both ARM and x86 platforms.
|
||||
- commit e5dd94d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 06:20:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc6
|
||||
- refresh configs
|
||||
- commit e5456de
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 09:08:40 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc5
|
||||
- update configs
|
||||
- MISC_RP1=n (i386)
|
||||
- commit 444cfba
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:10:18 CET 2026 - tiwai@suse.de
|
||||
|
||||
|
||||
@@ -16,8 +16,8 @@
|
||||
#
|
||||
|
||||
|
||||
%define srcversion 6.19-rc4
|
||||
%define patchversion 6.19.0-rc4
|
||||
%define srcversion 7.0-rc3
|
||||
%define patchversion 7.0.0-rc3
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@@ -25,9 +25,9 @@
|
||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,arch-symbols,check-module-license,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
|
||||
|
||||
Name: dtb-armv6l
|
||||
Version: 6.19~rc4
|
||||
Version: 7.0~rc3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g5352249
|
||||
Release: <RELEASE>.g2efdd9c
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
||||
@@ -1,3 +1,540 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 11:56:41 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.rpmify/certs-Replace-openssl-invocation-with-OPENSSL.patch
|
||||
Improved the patch to allow the alternative openssl more generically
|
||||
- commit 332afe7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 01:13:29 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc3
|
||||
- Delete upstream patch kbuild-Leave-objtool-binary-around-with-make-clean.patch
|
||||
- refresh configs
|
||||
- commit 0e787eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 09:14:17 CET 2026 - msuchanek@suse.de
|
||||
|
||||
- Move dummy openssl from kernel-source to kernel
|
||||
Fixes: eb95320d3295 ("scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)")
|
||||
- commit dd3697c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 14:26:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- certs: Replace openssl invocation with $OPENSSL (bsc#1259065).
|
||||
- commit 104ab06
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:53:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Update config files: re-enable CONFIG_OPENSSL_SUPPORTS_ML_DSA (bsc#1259065)
|
||||
- commit 0bfc1b0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:50:22 CET 2026 - tiwai@suse.de
|
||||
|
||||
- scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)
|
||||
Needed for CONFIG_OPENSSL_SUPPORTS_ML_DSA introduced in 7.0 kernel.
|
||||
- commit eb95320
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 01:08:04 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc2
|
||||
- refresh config files
|
||||
- commit 1b18c75
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 28 13:12:05 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- kbuild: Leave objtool binary around with 'make clean' (kmp-fix).
|
||||
- commit 3f3f246
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 24 08:34:34 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: refresh
|
||||
- commit 440de45
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 17:50:45 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: add OPENSSL_SUPPORTS_ to IGNORED_CONFIGS_RE
|
||||
Config option OPENSSL_SUPPORTS_ML_DSA was introduced by mainline commit
|
||||
0ad9a71933e7 ("modsign: Enable ML-DSA module signing") in 7.0-rc1
|
||||
- commit 21b4616
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 15:51:53 CET 2026 - tzimmermann@suse.com
|
||||
|
||||
- config: Enable coreboot support (bsc#1258262)
|
||||
Enable kernel support for coreboot firmware. Enabling these options
|
||||
provides various interfaces under /sys/firmware/. One of the next
|
||||
releases of the Linux kernel will feature corebootdrm, a dedicated
|
||||
DRM driver for coreboot's system framebuffer. The driver relies on
|
||||
support for coreboot firmware.
|
||||
Leave out s390x and ppc64le, as coreboot apparently does not support
|
||||
them.
|
||||
- commit 14b0853
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:14:56 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 7.0-rc1
|
||||
- drop 77 patches (72 stable, 5 mainline):
|
||||
- patches.kernel.org/*
|
||||
- patches.rpmify/gendwarfksyms-Fix-build-on-32-bit-hosts.patch (ddc54f912a55)
|
||||
- patches.suse/accel-amdxdna-Enable-temporal-sharing-only-mode.patch
|
||||
- patches.suse/accel-amdxdna-Remove-NPU2-support.patch
|
||||
- patches.suse/accel-amdxdna-Remove-amdxdna_flush.patch
|
||||
- patches.suse/accel-amdxdna-Update-firmware-version-check-for-late.patch
|
||||
- refresh
|
||||
- patches.rpmify/btf-pahole-j1-option.patch
|
||||
- patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
|
||||
- patches.suse/Restore-kABI-for-NVidia-vGPU-driver.patch
|
||||
- patches.suse/btrfs-provide-super_operations-get_inode_dev
|
||||
- patches.suse/iwlwifi-declare-missing-firmware-files.patch
|
||||
- patches.suse/vfs-add-super_operations-get_inode_dev
|
||||
- patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch
|
||||
- disable ARM architectures (need config update)
|
||||
- new config options
|
||||
- General setup
|
||||
- CONFIG_RSEQ_SLICE_EXTENSION=n
|
||||
- Memory Management options
|
||||
- CONFIG_BALLOON_MIGRATION=y
|
||||
- Networking support
|
||||
- CONFIG_NET_DSA_TAG_MXL_862XX=m
|
||||
- File systems
|
||||
- CONFIG_EROFS_FS_PAGE_CACHE_SHARE=n
|
||||
- CONFIG_NFS_V4_0=n
|
||||
- CONFIG_NFSD_V4_POSIX_ACLS=n
|
||||
- Cryptographic API
|
||||
- CONFIG_CRYPTO_MLDSA=m
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_44=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_65=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_87=n
|
||||
- Kernel hacking
|
||||
- CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=0
|
||||
- CONFIG_BOOTPARAM_WQ_STALL_PANIC=0
|
||||
- CONFIG_DEBUG_ATOMIC=n
|
||||
- CONFIG_CONTEXT_ANALYSIS_TEST=n
|
||||
- Cryptographic API
|
||||
- CONFIG_PKCS7_WAIVE_AUTHATTRS_REJECTION_FOR_MLDSA=n
|
||||
- Network device support
|
||||
- CONFIG_NET_DSA_MXL862=m
|
||||
- CONFIG_DWMAC_MOTORCOMM=m
|
||||
- Hardware Monitoring support
|
||||
- CONFIG_SENSORS_HAC300S=m
|
||||
- CONFIG_SENSORS_MP5926=m
|
||||
- CONFIG_SENSORS_STEF48H28=m
|
||||
- Voltage and Current Regulator Support
|
||||
- CONFIG_REGULATOR_RT8092=m
|
||||
- CONFIG_REGULATOR_TPS65185=m
|
||||
- Multimedia support
|
||||
- CONFIG_VIDEO_OS05B10=m
|
||||
- CONFIG_VIDEO_S5K3M5=m
|
||||
- CONFIG_VIDEO_S5KJN1=m
|
||||
- Graphics support
|
||||
- CONFIG_DRM_ST7571=m
|
||||
- CONFIG_DRM_ST7571_SPI=m
|
||||
- CONFIG_DRM_ST7920=m
|
||||
- Sound card support
|
||||
- CONFIG_SND_SOC_RT5575=m
|
||||
- CONFIG_SND_SOC_RT5575_SPI=y
|
||||
- LED Support
|
||||
- CONFIG_LEDS_OSRAM_AMS_AS3668=m
|
||||
- CONFIG_LEDS_LP5812=m
|
||||
- Staging drivers
|
||||
- CONFIG_FB_TFT=m
|
||||
- CONFIG_FB_TFT_AGM1264K_FL=m
|
||||
- CONFIG_FB_TFT_BD663474=m
|
||||
- CONFIG_FB_TFT_HX8340BN=m
|
||||
- CONFIG_FB_TFT_HX8347D=m
|
||||
- CONFIG_FB_TFT_HX8353D=m
|
||||
- CONFIG_FB_TFT_HX8357D=m
|
||||
- CONFIG_FB_TFT_ILI9163=m
|
||||
- CONFIG_FB_TFT_ILI9320=m
|
||||
- CONFIG_FB_TFT_ILI9325=m
|
||||
- CONFIG_FB_TFT_ILI9340=m
|
||||
- CONFIG_FB_TFT_ILI9341=m
|
||||
- CONFIG_FB_TFT_ILI9481=m
|
||||
- CONFIG_FB_TFT_ILI9486=m
|
||||
- CONFIG_FB_TFT_PCD8544=m
|
||||
- CONFIG_FB_TFT_RA8875=m
|
||||
- CONFIG_FB_TFT_S6D02A1=m
|
||||
- CONFIG_FB_TFT_S6D1121=m
|
||||
- CONFIG_FB_TFT_SEPS525=m
|
||||
- CONFIG_FB_TFT_SH1106=m
|
||||
- CONFIG_FB_TFT_SSD1289=m
|
||||
- CONFIG_FB_TFT_SSD1305=m
|
||||
- CONFIG_FB_TFT_SSD1306=m
|
||||
- CONFIG_FB_TFT_SSD1331=m
|
||||
- CONFIG_FB_TFT_SSD1351=m
|
||||
- CONFIG_FB_TFT_ST7735R=m
|
||||
- CONFIG_FB_TFT_ST7789V=m
|
||||
- CONFIG_FB_TFT_TINYLCD=m
|
||||
- CONFIG_FB_TFT_TLS8204=m
|
||||
- CONFIG_FB_TFT_UC1611=m
|
||||
- CONFIG_FB_TFT_UC1701=m
|
||||
- CONFIG_FB_TFT_UPD161704=m
|
||||
- Industrial I/O support
|
||||
- CONFIG_ADXL345_I2C=n
|
||||
- CONFIG_ADXL345_SPI=n
|
||||
- CONFIG_AD4062=n
|
||||
- CONFIG_AD4134=n
|
||||
- CONFIG_TI_ADS1018=n
|
||||
- CONFIG_TI_ADS131M02=n
|
||||
- CONFIG_ADL8113=n
|
||||
- CONFIG_MAX22007=n
|
||||
- CONFIG_MCP47FEB02=n
|
||||
- CONFIG_MMC5633=n
|
||||
- CONFIG_ABP2030PA_I2C=n
|
||||
- CONFIG_ABP2030PA_SPI=n
|
||||
- CONFIG_MPRLS0025PA_I2C=n
|
||||
- CONFIG_MPRLS0025PA_SPI=n
|
||||
- misc drivers
|
||||
- CONFIG_PHY_GOOGLE_USB=m
|
||||
- CONFIG_DPLL_REFCNT_TRACKER=n
|
||||
- CONFIG_HID_RAPOO=m
|
||||
- CONFIG_USB_DWC3_GOOGLE=m
|
||||
- CONFIG_IOMMU_DEBUG_PAGEALLOC=n
|
||||
- OF dependent (i386, ppc64le, riscv64)
|
||||
- GPIO_LINE_MUX=m
|
||||
- POWER_SEQUENCING_PCIE_M2=m
|
||||
- i386
|
||||
- REGULATOR_MAX77675=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- ppc64le
|
||||
- INTEL_MEI=n
|
||||
- LOGO_LINUX_VGA16_FILE="drivers/video/logo/logo_linux_vga16.ppm"
|
||||
- LOGO_LINUX_CLUT224_FILE="drivers/video/logo/logo_linux_clut224.ppm"
|
||||
- TRUSTED_KEYS_PKWM=y
|
||||
- s390x
|
||||
- INTEL_MEI=n
|
||||
- s390x/zfcpdump
|
||||
- KEXEC_SIG=y
|
||||
- PKCS8_PRIVATE_KEY_PARSER=y
|
||||
- PKCS7_TEST_KEY=n
|
||||
- SIGNED_PE_FILE_VERIFICATION=y
|
||||
- FIPS_SIGNATURE_SELFTEST=n
|
||||
- SYSTEM_TRUSTED_KEYS=""
|
||||
- SYSTEM_EXTRA_CERTIFICATE=n
|
||||
- SECONDARY_TRUSTED_KEYRING=y
|
||||
- SECONDARY_TRUSTED_KEYRING_SIGNED_BY_BUILTIN=n
|
||||
- riscv64
|
||||
- RISCV_USER_CFI=y
|
||||
- INTEL_MEI=n
|
||||
- SPI_ATCSPI200=m
|
||||
- REGULATOR_MAX77675=m
|
||||
- VIDEO_DW_MIPI_CSI2RX=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- FIRMWARE_EDID=y
|
||||
- SND_SOC_CV1800B_TDM=m
|
||||
- SND_SOC_CV1800B_ADC_CODEC=m
|
||||
- SND_SOC_CV1800B_DAC_CODEC=m
|
||||
- SPACEMIT_K3_CCU=m
|
||||
- RESET_SPACEMIT_K1=m
|
||||
- RESET_SPACEMIT_K3=m
|
||||
- PHY_SPACEMIT_K1_PCIE=m
|
||||
- PHY_SPACEMIT_K1_USB2=m
|
||||
- commit 96fa923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 06:28:12 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.3 (bsc#1012628).
|
||||
- scsi: qla2xxx: Fix bsg_done() causing double free (bsc#1012628).
|
||||
- arm64: dts: mediatek: mt8183: Add missing endpoint IDs to
|
||||
display graph (bsc#1012628).
|
||||
- LoongArch: Rework KASAN initialization for PTW-enabled systems
|
||||
(bsc#1012628).
|
||||
- fbdev: rivafb: fix divide error in nv3_arb() (bsc#1012628).
|
||||
- fbdev: smscufx: properly copy ioctl memory to kernelspace
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to add gc count stat in f2fs_gc_range (bsc#1012628).
|
||||
- f2fs: fix to check sysfs filename w/ gc_pin_file_thresh
|
||||
correctly (bsc#1012628).
|
||||
- f2fs: fix IS_CHECKPOINTED flag inconsistency issue caused by
|
||||
concurrent atomic commit and checkpoint writes (bsc#1012628).
|
||||
- f2fs: fix out-of-bounds access in sysfs attribute read/write
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid UAF in f2fs_write_end_io() (bsc#1012628).
|
||||
- f2fs: support non-4KB block size without packed_ssa feature
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid mapping wrong physical block for swapfile
|
||||
(bsc#1012628).
|
||||
- f2fs: optimize f2fs_overwrite_io() for f2fs_iomap_begin
|
||||
(bsc#1012628).
|
||||
- Revert "f2fs: block cache/dio write during
|
||||
f2fs_enable_checkpoint()" (bsc#1012628).
|
||||
- USB: serial: option: add Telit FN920C04 RNDIS compositions
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
__write_node_folio() (bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
{read,write}_end_io (bsc#1012628).
|
||||
- f2fs: fix incomplete block usage in compact SSA summaries
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.3-014-iommu-arm-smmu-qcom-do-not-register-driver-in-.patch.
|
||||
- commit fcdf9c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 18 15:43:45 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Move upstreamed amdxdna patches into sorted section
|
||||
- commit 787d692
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:36:29 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- iommu/arm-smmu-qcom: do not register driver in probe()
|
||||
(git-fixes).
|
||||
- commit 7b303f4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:47 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.2 (bsc#1012628).
|
||||
- Revert "driver core: enforce device_lock for
|
||||
driver_match_device()" (bsc#1012628).
|
||||
- commit 57aa524
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:02 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.1 (bsc#1012628).
|
||||
- smb: client: split cached_fid bitfields to avoid shared-byte
|
||||
RMW races (bsc#1012628).
|
||||
- ksmbd: fix infinite loop caused by next_smb2_rcv_hdr_off reset
|
||||
in error paths (bsc#1012628).
|
||||
- ksmbd: add chann_lock to protect ksmbd_chann_list xarray
|
||||
(bsc#1012628).
|
||||
- smb: server: fix leak of active_num_conn in
|
||||
ksmbd_tcp_new_connection() (bsc#1012628).
|
||||
- smb: smbdirect: introduce
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: smbdirect: introduce smbdirect_socket.send_io.bcredits.*
|
||||
(bsc#1012628).
|
||||
- smb: server: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: server: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: server: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: server: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: server: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- smb: client: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: client: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: client: let smbd_post_send() make use of request->wr
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->recv_io.credits.count rollback
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->send_io.pending handling in
|
||||
smbd_post_send_iter() (bsc#1012628).
|
||||
- smb: client: port and use the wait_for_credits logic used by
|
||||
server (bsc#1012628).
|
||||
- smb: client: split out smbd_ib_post_send() (bsc#1012628).
|
||||
- smb: client: introduce and use smbd_{alloc, free}_send_io()
|
||||
(bsc#1012628).
|
||||
- smb: client: use smbdirect_send_batch processing (bsc#1012628).
|
||||
- smb: client: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: client: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: client: let smbd_post_send_negotiate_req() use
|
||||
smbd_post_send() (bsc#1012628).
|
||||
- smb: client: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- driver core: enforce device_lock for driver_match_device()
|
||||
(bsc#1012628).
|
||||
- Bluetooth: btusb: Add USB ID 7392:e611 for Edimax EW-7611UXB
|
||||
(bsc#1012628).
|
||||
- ALSA: hda/conexant: Add quirk for HP ZBook Studio G4
|
||||
(bsc#1012628).
|
||||
- crypto: iaa - Fix out-of-bounds index in
|
||||
find_empty_iaa_compression_mode (bsc#1012628).
|
||||
- crypto: octeontx - Fix length check to avoid truncation in
|
||||
ucode_load_store (bsc#1012628).
|
||||
- crypto: omap - Allocate OMAP_CRYPTO_FORCE_COPY scatterlists
|
||||
correctly (bsc#1012628).
|
||||
- crypto: virtio - Add spinlock protection with virtqueue
|
||||
notification (bsc#1012628).
|
||||
- crypto: virtio - Remove duplicated virtqueue_kick in
|
||||
virtio_crypto_skcipher_crypt_req (bsc#1012628).
|
||||
- nilfs2: Fix potential block overflow that cause system hang
|
||||
(bsc#1012628).
|
||||
- hfs: ensure sb->s_fs_info is always cleaned up (bsc#1012628).
|
||||
- wifi: rtw88: Fix alignment fault in rtw_core_enable_beacon()
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Validate sp before freeing associated memory
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Allow recovery for tape devices (bsc#1012628).
|
||||
- scsi: qla2xxx: Delay module unload while fabric scan in progress
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Free sp in error path to fix system crash
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Query FW again before proceeding with login
|
||||
(bsc#1012628).
|
||||
- sched/mmcid: Don't assume CID is CPU owned on mode switch
|
||||
(bsc#1012628).
|
||||
- bus: fsl-mc: fix use-after-free in driver_override_show()
|
||||
(bsc#1012628).
|
||||
- erofs: fix UAF issue for file-backed mounts w/ directio option
|
||||
(bsc#1012628).
|
||||
- xfs: fix UAF in xchk_btree_check_block_owner (bsc#1012628).
|
||||
- drm/exynos: vidi: use ctx->lock to protect struct vidi_context
|
||||
member variables related to memory alloc/free (bsc#1012628).
|
||||
- PCI: endpoint: Avoid creating sub-groups asynchronously
|
||||
(bsc#1012628).
|
||||
- wifi: rtl8xxxu: fix slab-out-of-bounds in rtl8xxxu_sta_add
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-001-io_uring-io-wq-add-exit-on-idle-state.patch.
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-002-io_uring-allow-io-wq-workers-to-exit-when-unus.patch.
|
||||
- commit 2f9cad9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 12 07:11:01 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- io_uring: allow io-wq workers to exit when unused
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- io_uring/io-wq: add exit-on-idle state
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- commit b7d1ad1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:33:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19 final
|
||||
- refresh configs (headers only)
|
||||
- commit 8f6da03
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:31:10 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv6hl configs
|
||||
- option values copied from armv7hl
|
||||
- commit 7ef7460
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:28:36 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv7hl configs
|
||||
- option values copied from arm64 except
|
||||
- MACH_MT6582=y
|
||||
- CLK_RK3506=y
|
||||
- commit e113f66
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:16:37 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable arm64 configs
|
||||
- option values copied from x86_64, i386 and riscv64 except
|
||||
- ARCH_BST=y
|
||||
- ARM64_MPAM=y
|
||||
- PCI_SKY1_HOST=m
|
||||
- PCIE_NXP_S32G=y
|
||||
- CACHEMAINT_FOR_HOTPLUG=y
|
||||
- HISI_SOC_HHA=m
|
||||
- PINCTRL_SKY1=m
|
||||
- PINCTRL_MT6878=y
|
||||
- PINCTRL_KAANAPALI=m
|
||||
- GPIO_SHARED_PROXY=m
|
||||
- CHARGER_BD71828=m
|
||||
- SENSORS_MACSMC_HWMON=m
|
||||
- IMX91_THERMAL=m
|
||||
- VIDEO_ROCKCHIP_CIF=m
|
||||
- DRM_IMX8MP_HDMI_PAI=m
|
||||
- DRM_DW_HDMI_QP_CEC=y
|
||||
- DRM_MEDIATEK_HDMI_V2=m
|
||||
- SND_HDA_CIX_IPBLOQ=m
|
||||
- SND_SOC_MT8189=m
|
||||
- SND_SOC_MT8189_NAU8825=m
|
||||
- USB_DWC3_APPLE=m
|
||||
- SCSI_UFS_AMD_VERSAL2=m
|
||||
- RTC_DRV_MACSMC=m
|
||||
- IPQ_NSSCC_5424=m
|
||||
- SM_VIDEOCC_8750=m
|
||||
- CLK_RV1126B=y
|
||||
- RTK_SYSTIMER=y
|
||||
- MTK_MFG_PM_DOMAIN=y
|
||||
- PWM_AIROHA=m
|
||||
- NVMEM_QNAP_MCU_EEPROM=m
|
||||
- INTERCONNECT_QCOM_KAANAPALI=m
|
||||
- ARM64_MPAM_DRIVER_DEBUG=n
|
||||
- commit 0e2d85d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 13:36:06 CET 2026 - tiwai@suse.de
|
||||
|
||||
- accel/amdxdna: Update firmware version check for latest firmware
|
||||
(bsc#1257724).
|
||||
- accel/amdxdna: Enable temporal sharing only mode (bsc#1257724).
|
||||
- accel/amdxdna: Remove NPU2 support (bsc#1257724).
|
||||
- accel/amdxdna: Remove amdxdna_flush() (bsc#1257724).
|
||||
- commit 6eaf1bb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 12:25:17 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch (bsc#1252084)
|
||||
The upstream didn't release *-101.ucode for some models.
|
||||
- commit 33ced68
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 23:11:15 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc8
|
||||
- commit 41a428c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 26 00:11:33 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc7
|
||||
- drop no longer needed patch (obsoleted by 3f2de814c059)
|
||||
- patches.rpmify/Revert-objtool-fix-build-failure-due-to-missing-libopcodes.patch
|
||||
- update configs
|
||||
- DRM_XE_USERPTR_INVAL_INJECT=n (on i386)
|
||||
- commit 3fe5a20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 21 16:03:32 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- Revert "objtool: fix build failure due to missing libopcodes
|
||||
check".
|
||||
- commit 50c998d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 09:23:32 CET 2026 - jdelvare@suse.com
|
||||
|
||||
- Enable NCT6694 support on x86_64
|
||||
This multi-function device is platform-independent and can be found
|
||||
on both ARM and x86 platforms.
|
||||
- commit e5dd94d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 06:20:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc6
|
||||
- refresh configs
|
||||
- commit e5456de
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 09:08:40 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc5
|
||||
- update configs
|
||||
- MISC_RP1=n (i386)
|
||||
- commit 444cfba
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:10:18 CET 2026 - tiwai@suse.de
|
||||
|
||||
|
||||
@@ -16,8 +16,8 @@
|
||||
#
|
||||
|
||||
|
||||
%define srcversion 6.19-rc4
|
||||
%define patchversion 6.19.0-rc4
|
||||
%define srcversion 7.0-rc3
|
||||
%define patchversion 7.0.0-rc3
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@@ -25,9 +25,9 @@
|
||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,arch-symbols,check-module-license,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
|
||||
|
||||
Name: dtb-armv7l
|
||||
Version: 6.19~rc4
|
||||
Version: 7.0~rc3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g5352249
|
||||
Release: <RELEASE>.g2efdd9c
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
||||
@@ -1,3 +1,540 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 11:56:41 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.rpmify/certs-Replace-openssl-invocation-with-OPENSSL.patch
|
||||
Improved the patch to allow the alternative openssl more generically
|
||||
- commit 332afe7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 01:13:29 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc3
|
||||
- Delete upstream patch kbuild-Leave-objtool-binary-around-with-make-clean.patch
|
||||
- refresh configs
|
||||
- commit 0e787eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 09:14:17 CET 2026 - msuchanek@suse.de
|
||||
|
||||
- Move dummy openssl from kernel-source to kernel
|
||||
Fixes: eb95320d3295 ("scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)")
|
||||
- commit dd3697c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 14:26:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- certs: Replace openssl invocation with $OPENSSL (bsc#1259065).
|
||||
- commit 104ab06
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:53:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Update config files: re-enable CONFIG_OPENSSL_SUPPORTS_ML_DSA (bsc#1259065)
|
||||
- commit 0bfc1b0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:50:22 CET 2026 - tiwai@suse.de
|
||||
|
||||
- scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)
|
||||
Needed for CONFIG_OPENSSL_SUPPORTS_ML_DSA introduced in 7.0 kernel.
|
||||
- commit eb95320
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 01:08:04 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc2
|
||||
- refresh config files
|
||||
- commit 1b18c75
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 28 13:12:05 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- kbuild: Leave objtool binary around with 'make clean' (kmp-fix).
|
||||
- commit 3f3f246
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 24 08:34:34 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: refresh
|
||||
- commit 440de45
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 17:50:45 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: add OPENSSL_SUPPORTS_ to IGNORED_CONFIGS_RE
|
||||
Config option OPENSSL_SUPPORTS_ML_DSA was introduced by mainline commit
|
||||
0ad9a71933e7 ("modsign: Enable ML-DSA module signing") in 7.0-rc1
|
||||
- commit 21b4616
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 15:51:53 CET 2026 - tzimmermann@suse.com
|
||||
|
||||
- config: Enable coreboot support (bsc#1258262)
|
||||
Enable kernel support for coreboot firmware. Enabling these options
|
||||
provides various interfaces under /sys/firmware/. One of the next
|
||||
releases of the Linux kernel will feature corebootdrm, a dedicated
|
||||
DRM driver for coreboot's system framebuffer. The driver relies on
|
||||
support for coreboot firmware.
|
||||
Leave out s390x and ppc64le, as coreboot apparently does not support
|
||||
them.
|
||||
- commit 14b0853
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:14:56 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 7.0-rc1
|
||||
- drop 77 patches (72 stable, 5 mainline):
|
||||
- patches.kernel.org/*
|
||||
- patches.rpmify/gendwarfksyms-Fix-build-on-32-bit-hosts.patch (ddc54f912a55)
|
||||
- patches.suse/accel-amdxdna-Enable-temporal-sharing-only-mode.patch
|
||||
- patches.suse/accel-amdxdna-Remove-NPU2-support.patch
|
||||
- patches.suse/accel-amdxdna-Remove-amdxdna_flush.patch
|
||||
- patches.suse/accel-amdxdna-Update-firmware-version-check-for-late.patch
|
||||
- refresh
|
||||
- patches.rpmify/btf-pahole-j1-option.patch
|
||||
- patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
|
||||
- patches.suse/Restore-kABI-for-NVidia-vGPU-driver.patch
|
||||
- patches.suse/btrfs-provide-super_operations-get_inode_dev
|
||||
- patches.suse/iwlwifi-declare-missing-firmware-files.patch
|
||||
- patches.suse/vfs-add-super_operations-get_inode_dev
|
||||
- patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch
|
||||
- disable ARM architectures (need config update)
|
||||
- new config options
|
||||
- General setup
|
||||
- CONFIG_RSEQ_SLICE_EXTENSION=n
|
||||
- Memory Management options
|
||||
- CONFIG_BALLOON_MIGRATION=y
|
||||
- Networking support
|
||||
- CONFIG_NET_DSA_TAG_MXL_862XX=m
|
||||
- File systems
|
||||
- CONFIG_EROFS_FS_PAGE_CACHE_SHARE=n
|
||||
- CONFIG_NFS_V4_0=n
|
||||
- CONFIG_NFSD_V4_POSIX_ACLS=n
|
||||
- Cryptographic API
|
||||
- CONFIG_CRYPTO_MLDSA=m
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_44=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_65=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_87=n
|
||||
- Kernel hacking
|
||||
- CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=0
|
||||
- CONFIG_BOOTPARAM_WQ_STALL_PANIC=0
|
||||
- CONFIG_DEBUG_ATOMIC=n
|
||||
- CONFIG_CONTEXT_ANALYSIS_TEST=n
|
||||
- Cryptographic API
|
||||
- CONFIG_PKCS7_WAIVE_AUTHATTRS_REJECTION_FOR_MLDSA=n
|
||||
- Network device support
|
||||
- CONFIG_NET_DSA_MXL862=m
|
||||
- CONFIG_DWMAC_MOTORCOMM=m
|
||||
- Hardware Monitoring support
|
||||
- CONFIG_SENSORS_HAC300S=m
|
||||
- CONFIG_SENSORS_MP5926=m
|
||||
- CONFIG_SENSORS_STEF48H28=m
|
||||
- Voltage and Current Regulator Support
|
||||
- CONFIG_REGULATOR_RT8092=m
|
||||
- CONFIG_REGULATOR_TPS65185=m
|
||||
- Multimedia support
|
||||
- CONFIG_VIDEO_OS05B10=m
|
||||
- CONFIG_VIDEO_S5K3M5=m
|
||||
- CONFIG_VIDEO_S5KJN1=m
|
||||
- Graphics support
|
||||
- CONFIG_DRM_ST7571=m
|
||||
- CONFIG_DRM_ST7571_SPI=m
|
||||
- CONFIG_DRM_ST7920=m
|
||||
- Sound card support
|
||||
- CONFIG_SND_SOC_RT5575=m
|
||||
- CONFIG_SND_SOC_RT5575_SPI=y
|
||||
- LED Support
|
||||
- CONFIG_LEDS_OSRAM_AMS_AS3668=m
|
||||
- CONFIG_LEDS_LP5812=m
|
||||
- Staging drivers
|
||||
- CONFIG_FB_TFT=m
|
||||
- CONFIG_FB_TFT_AGM1264K_FL=m
|
||||
- CONFIG_FB_TFT_BD663474=m
|
||||
- CONFIG_FB_TFT_HX8340BN=m
|
||||
- CONFIG_FB_TFT_HX8347D=m
|
||||
- CONFIG_FB_TFT_HX8353D=m
|
||||
- CONFIG_FB_TFT_HX8357D=m
|
||||
- CONFIG_FB_TFT_ILI9163=m
|
||||
- CONFIG_FB_TFT_ILI9320=m
|
||||
- CONFIG_FB_TFT_ILI9325=m
|
||||
- CONFIG_FB_TFT_ILI9340=m
|
||||
- CONFIG_FB_TFT_ILI9341=m
|
||||
- CONFIG_FB_TFT_ILI9481=m
|
||||
- CONFIG_FB_TFT_ILI9486=m
|
||||
- CONFIG_FB_TFT_PCD8544=m
|
||||
- CONFIG_FB_TFT_RA8875=m
|
||||
- CONFIG_FB_TFT_S6D02A1=m
|
||||
- CONFIG_FB_TFT_S6D1121=m
|
||||
- CONFIG_FB_TFT_SEPS525=m
|
||||
- CONFIG_FB_TFT_SH1106=m
|
||||
- CONFIG_FB_TFT_SSD1289=m
|
||||
- CONFIG_FB_TFT_SSD1305=m
|
||||
- CONFIG_FB_TFT_SSD1306=m
|
||||
- CONFIG_FB_TFT_SSD1331=m
|
||||
- CONFIG_FB_TFT_SSD1351=m
|
||||
- CONFIG_FB_TFT_ST7735R=m
|
||||
- CONFIG_FB_TFT_ST7789V=m
|
||||
- CONFIG_FB_TFT_TINYLCD=m
|
||||
- CONFIG_FB_TFT_TLS8204=m
|
||||
- CONFIG_FB_TFT_UC1611=m
|
||||
- CONFIG_FB_TFT_UC1701=m
|
||||
- CONFIG_FB_TFT_UPD161704=m
|
||||
- Industrial I/O support
|
||||
- CONFIG_ADXL345_I2C=n
|
||||
- CONFIG_ADXL345_SPI=n
|
||||
- CONFIG_AD4062=n
|
||||
- CONFIG_AD4134=n
|
||||
- CONFIG_TI_ADS1018=n
|
||||
- CONFIG_TI_ADS131M02=n
|
||||
- CONFIG_ADL8113=n
|
||||
- CONFIG_MAX22007=n
|
||||
- CONFIG_MCP47FEB02=n
|
||||
- CONFIG_MMC5633=n
|
||||
- CONFIG_ABP2030PA_I2C=n
|
||||
- CONFIG_ABP2030PA_SPI=n
|
||||
- CONFIG_MPRLS0025PA_I2C=n
|
||||
- CONFIG_MPRLS0025PA_SPI=n
|
||||
- misc drivers
|
||||
- CONFIG_PHY_GOOGLE_USB=m
|
||||
- CONFIG_DPLL_REFCNT_TRACKER=n
|
||||
- CONFIG_HID_RAPOO=m
|
||||
- CONFIG_USB_DWC3_GOOGLE=m
|
||||
- CONFIG_IOMMU_DEBUG_PAGEALLOC=n
|
||||
- OF dependent (i386, ppc64le, riscv64)
|
||||
- GPIO_LINE_MUX=m
|
||||
- POWER_SEQUENCING_PCIE_M2=m
|
||||
- i386
|
||||
- REGULATOR_MAX77675=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- ppc64le
|
||||
- INTEL_MEI=n
|
||||
- LOGO_LINUX_VGA16_FILE="drivers/video/logo/logo_linux_vga16.ppm"
|
||||
- LOGO_LINUX_CLUT224_FILE="drivers/video/logo/logo_linux_clut224.ppm"
|
||||
- TRUSTED_KEYS_PKWM=y
|
||||
- s390x
|
||||
- INTEL_MEI=n
|
||||
- s390x/zfcpdump
|
||||
- KEXEC_SIG=y
|
||||
- PKCS8_PRIVATE_KEY_PARSER=y
|
||||
- PKCS7_TEST_KEY=n
|
||||
- SIGNED_PE_FILE_VERIFICATION=y
|
||||
- FIPS_SIGNATURE_SELFTEST=n
|
||||
- SYSTEM_TRUSTED_KEYS=""
|
||||
- SYSTEM_EXTRA_CERTIFICATE=n
|
||||
- SECONDARY_TRUSTED_KEYRING=y
|
||||
- SECONDARY_TRUSTED_KEYRING_SIGNED_BY_BUILTIN=n
|
||||
- riscv64
|
||||
- RISCV_USER_CFI=y
|
||||
- INTEL_MEI=n
|
||||
- SPI_ATCSPI200=m
|
||||
- REGULATOR_MAX77675=m
|
||||
- VIDEO_DW_MIPI_CSI2RX=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- FIRMWARE_EDID=y
|
||||
- SND_SOC_CV1800B_TDM=m
|
||||
- SND_SOC_CV1800B_ADC_CODEC=m
|
||||
- SND_SOC_CV1800B_DAC_CODEC=m
|
||||
- SPACEMIT_K3_CCU=m
|
||||
- RESET_SPACEMIT_K1=m
|
||||
- RESET_SPACEMIT_K3=m
|
||||
- PHY_SPACEMIT_K1_PCIE=m
|
||||
- PHY_SPACEMIT_K1_USB2=m
|
||||
- commit 96fa923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 06:28:12 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.3 (bsc#1012628).
|
||||
- scsi: qla2xxx: Fix bsg_done() causing double free (bsc#1012628).
|
||||
- arm64: dts: mediatek: mt8183: Add missing endpoint IDs to
|
||||
display graph (bsc#1012628).
|
||||
- LoongArch: Rework KASAN initialization for PTW-enabled systems
|
||||
(bsc#1012628).
|
||||
- fbdev: rivafb: fix divide error in nv3_arb() (bsc#1012628).
|
||||
- fbdev: smscufx: properly copy ioctl memory to kernelspace
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to add gc count stat in f2fs_gc_range (bsc#1012628).
|
||||
- f2fs: fix to check sysfs filename w/ gc_pin_file_thresh
|
||||
correctly (bsc#1012628).
|
||||
- f2fs: fix IS_CHECKPOINTED flag inconsistency issue caused by
|
||||
concurrent atomic commit and checkpoint writes (bsc#1012628).
|
||||
- f2fs: fix out-of-bounds access in sysfs attribute read/write
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid UAF in f2fs_write_end_io() (bsc#1012628).
|
||||
- f2fs: support non-4KB block size without packed_ssa feature
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid mapping wrong physical block for swapfile
|
||||
(bsc#1012628).
|
||||
- f2fs: optimize f2fs_overwrite_io() for f2fs_iomap_begin
|
||||
(bsc#1012628).
|
||||
- Revert "f2fs: block cache/dio write during
|
||||
f2fs_enable_checkpoint()" (bsc#1012628).
|
||||
- USB: serial: option: add Telit FN920C04 RNDIS compositions
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
__write_node_folio() (bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
{read,write}_end_io (bsc#1012628).
|
||||
- f2fs: fix incomplete block usage in compact SSA summaries
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.3-014-iommu-arm-smmu-qcom-do-not-register-driver-in-.patch.
|
||||
- commit fcdf9c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 18 15:43:45 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Move upstreamed amdxdna patches into sorted section
|
||||
- commit 787d692
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:36:29 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- iommu/arm-smmu-qcom: do not register driver in probe()
|
||||
(git-fixes).
|
||||
- commit 7b303f4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:47 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.2 (bsc#1012628).
|
||||
- Revert "driver core: enforce device_lock for
|
||||
driver_match_device()" (bsc#1012628).
|
||||
- commit 57aa524
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:02 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.1 (bsc#1012628).
|
||||
- smb: client: split cached_fid bitfields to avoid shared-byte
|
||||
RMW races (bsc#1012628).
|
||||
- ksmbd: fix infinite loop caused by next_smb2_rcv_hdr_off reset
|
||||
in error paths (bsc#1012628).
|
||||
- ksmbd: add chann_lock to protect ksmbd_chann_list xarray
|
||||
(bsc#1012628).
|
||||
- smb: server: fix leak of active_num_conn in
|
||||
ksmbd_tcp_new_connection() (bsc#1012628).
|
||||
- smb: smbdirect: introduce
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: smbdirect: introduce smbdirect_socket.send_io.bcredits.*
|
||||
(bsc#1012628).
|
||||
- smb: server: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: server: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: server: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: server: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: server: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- smb: client: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: client: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: client: let smbd_post_send() make use of request->wr
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->recv_io.credits.count rollback
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->send_io.pending handling in
|
||||
smbd_post_send_iter() (bsc#1012628).
|
||||
- smb: client: port and use the wait_for_credits logic used by
|
||||
server (bsc#1012628).
|
||||
- smb: client: split out smbd_ib_post_send() (bsc#1012628).
|
||||
- smb: client: introduce and use smbd_{alloc, free}_send_io()
|
||||
(bsc#1012628).
|
||||
- smb: client: use smbdirect_send_batch processing (bsc#1012628).
|
||||
- smb: client: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: client: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: client: let smbd_post_send_negotiate_req() use
|
||||
smbd_post_send() (bsc#1012628).
|
||||
- smb: client: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- driver core: enforce device_lock for driver_match_device()
|
||||
(bsc#1012628).
|
||||
- Bluetooth: btusb: Add USB ID 7392:e611 for Edimax EW-7611UXB
|
||||
(bsc#1012628).
|
||||
- ALSA: hda/conexant: Add quirk for HP ZBook Studio G4
|
||||
(bsc#1012628).
|
||||
- crypto: iaa - Fix out-of-bounds index in
|
||||
find_empty_iaa_compression_mode (bsc#1012628).
|
||||
- crypto: octeontx - Fix length check to avoid truncation in
|
||||
ucode_load_store (bsc#1012628).
|
||||
- crypto: omap - Allocate OMAP_CRYPTO_FORCE_COPY scatterlists
|
||||
correctly (bsc#1012628).
|
||||
- crypto: virtio - Add spinlock protection with virtqueue
|
||||
notification (bsc#1012628).
|
||||
- crypto: virtio - Remove duplicated virtqueue_kick in
|
||||
virtio_crypto_skcipher_crypt_req (bsc#1012628).
|
||||
- nilfs2: Fix potential block overflow that cause system hang
|
||||
(bsc#1012628).
|
||||
- hfs: ensure sb->s_fs_info is always cleaned up (bsc#1012628).
|
||||
- wifi: rtw88: Fix alignment fault in rtw_core_enable_beacon()
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Validate sp before freeing associated memory
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Allow recovery for tape devices (bsc#1012628).
|
||||
- scsi: qla2xxx: Delay module unload while fabric scan in progress
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Free sp in error path to fix system crash
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Query FW again before proceeding with login
|
||||
(bsc#1012628).
|
||||
- sched/mmcid: Don't assume CID is CPU owned on mode switch
|
||||
(bsc#1012628).
|
||||
- bus: fsl-mc: fix use-after-free in driver_override_show()
|
||||
(bsc#1012628).
|
||||
- erofs: fix UAF issue for file-backed mounts w/ directio option
|
||||
(bsc#1012628).
|
||||
- xfs: fix UAF in xchk_btree_check_block_owner (bsc#1012628).
|
||||
- drm/exynos: vidi: use ctx->lock to protect struct vidi_context
|
||||
member variables related to memory alloc/free (bsc#1012628).
|
||||
- PCI: endpoint: Avoid creating sub-groups asynchronously
|
||||
(bsc#1012628).
|
||||
- wifi: rtl8xxxu: fix slab-out-of-bounds in rtl8xxxu_sta_add
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-001-io_uring-io-wq-add-exit-on-idle-state.patch.
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-002-io_uring-allow-io-wq-workers-to-exit-when-unus.patch.
|
||||
- commit 2f9cad9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 12 07:11:01 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- io_uring: allow io-wq workers to exit when unused
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- io_uring/io-wq: add exit-on-idle state
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- commit b7d1ad1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:33:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19 final
|
||||
- refresh configs (headers only)
|
||||
- commit 8f6da03
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:31:10 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv6hl configs
|
||||
- option values copied from armv7hl
|
||||
- commit 7ef7460
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:28:36 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv7hl configs
|
||||
- option values copied from arm64 except
|
||||
- MACH_MT6582=y
|
||||
- CLK_RK3506=y
|
||||
- commit e113f66
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:16:37 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable arm64 configs
|
||||
- option values copied from x86_64, i386 and riscv64 except
|
||||
- ARCH_BST=y
|
||||
- ARM64_MPAM=y
|
||||
- PCI_SKY1_HOST=m
|
||||
- PCIE_NXP_S32G=y
|
||||
- CACHEMAINT_FOR_HOTPLUG=y
|
||||
- HISI_SOC_HHA=m
|
||||
- PINCTRL_SKY1=m
|
||||
- PINCTRL_MT6878=y
|
||||
- PINCTRL_KAANAPALI=m
|
||||
- GPIO_SHARED_PROXY=m
|
||||
- CHARGER_BD71828=m
|
||||
- SENSORS_MACSMC_HWMON=m
|
||||
- IMX91_THERMAL=m
|
||||
- VIDEO_ROCKCHIP_CIF=m
|
||||
- DRM_IMX8MP_HDMI_PAI=m
|
||||
- DRM_DW_HDMI_QP_CEC=y
|
||||
- DRM_MEDIATEK_HDMI_V2=m
|
||||
- SND_HDA_CIX_IPBLOQ=m
|
||||
- SND_SOC_MT8189=m
|
||||
- SND_SOC_MT8189_NAU8825=m
|
||||
- USB_DWC3_APPLE=m
|
||||
- SCSI_UFS_AMD_VERSAL2=m
|
||||
- RTC_DRV_MACSMC=m
|
||||
- IPQ_NSSCC_5424=m
|
||||
- SM_VIDEOCC_8750=m
|
||||
- CLK_RV1126B=y
|
||||
- RTK_SYSTIMER=y
|
||||
- MTK_MFG_PM_DOMAIN=y
|
||||
- PWM_AIROHA=m
|
||||
- NVMEM_QNAP_MCU_EEPROM=m
|
||||
- INTERCONNECT_QCOM_KAANAPALI=m
|
||||
- ARM64_MPAM_DRIVER_DEBUG=n
|
||||
- commit 0e2d85d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 13:36:06 CET 2026 - tiwai@suse.de
|
||||
|
||||
- accel/amdxdna: Update firmware version check for latest firmware
|
||||
(bsc#1257724).
|
||||
- accel/amdxdna: Enable temporal sharing only mode (bsc#1257724).
|
||||
- accel/amdxdna: Remove NPU2 support (bsc#1257724).
|
||||
- accel/amdxdna: Remove amdxdna_flush() (bsc#1257724).
|
||||
- commit 6eaf1bb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 12:25:17 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch (bsc#1252084)
|
||||
The upstream didn't release *-101.ucode for some models.
|
||||
- commit 33ced68
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 23:11:15 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc8
|
||||
- commit 41a428c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 26 00:11:33 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc7
|
||||
- drop no longer needed patch (obsoleted by 3f2de814c059)
|
||||
- patches.rpmify/Revert-objtool-fix-build-failure-due-to-missing-libopcodes.patch
|
||||
- update configs
|
||||
- DRM_XE_USERPTR_INVAL_INJECT=n (on i386)
|
||||
- commit 3fe5a20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 21 16:03:32 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- Revert "objtool: fix build failure due to missing libopcodes
|
||||
check".
|
||||
- commit 50c998d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 09:23:32 CET 2026 - jdelvare@suse.com
|
||||
|
||||
- Enable NCT6694 support on x86_64
|
||||
This multi-function device is platform-independent and can be found
|
||||
on both ARM and x86 platforms.
|
||||
- commit e5dd94d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 06:20:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc6
|
||||
- refresh configs
|
||||
- commit e5456de
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 09:08:40 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc5
|
||||
- update configs
|
||||
- MISC_RP1=n (i386)
|
||||
- commit 444cfba
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:10:18 CET 2026 - tiwai@suse.de
|
||||
|
||||
|
||||
@@ -16,8 +16,8 @@
|
||||
#
|
||||
|
||||
|
||||
%define srcversion 6.19-rc4
|
||||
%define patchversion 6.19.0-rc4
|
||||
%define srcversion 7.0-rc3
|
||||
%define patchversion 7.0.0-rc3
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@@ -25,9 +25,9 @@
|
||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,arch-symbols,check-module-license,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
|
||||
|
||||
Name: dtb-riscv64
|
||||
Version: 6.19~rc4
|
||||
Version: 7.0~rc3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g5352249
|
||||
Release: <RELEASE>.g2efdd9c
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
||||
@@ -1,3 +1,540 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 11:56:41 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.rpmify/certs-Replace-openssl-invocation-with-OPENSSL.patch
|
||||
Improved the patch to allow the alternative openssl more generically
|
||||
- commit 332afe7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 01:13:29 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc3
|
||||
- Delete upstream patch kbuild-Leave-objtool-binary-around-with-make-clean.patch
|
||||
- refresh configs
|
||||
- commit 0e787eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 09:14:17 CET 2026 - msuchanek@suse.de
|
||||
|
||||
- Move dummy openssl from kernel-source to kernel
|
||||
Fixes: eb95320d3295 ("scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)")
|
||||
- commit dd3697c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 14:26:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- certs: Replace openssl invocation with $OPENSSL (bsc#1259065).
|
||||
- commit 104ab06
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:53:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Update config files: re-enable CONFIG_OPENSSL_SUPPORTS_ML_DSA (bsc#1259065)
|
||||
- commit 0bfc1b0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:50:22 CET 2026 - tiwai@suse.de
|
||||
|
||||
- scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)
|
||||
Needed for CONFIG_OPENSSL_SUPPORTS_ML_DSA introduced in 7.0 kernel.
|
||||
- commit eb95320
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 01:08:04 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc2
|
||||
- refresh config files
|
||||
- commit 1b18c75
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 28 13:12:05 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- kbuild: Leave objtool binary around with 'make clean' (kmp-fix).
|
||||
- commit 3f3f246
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 24 08:34:34 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: refresh
|
||||
- commit 440de45
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 17:50:45 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: add OPENSSL_SUPPORTS_ to IGNORED_CONFIGS_RE
|
||||
Config option OPENSSL_SUPPORTS_ML_DSA was introduced by mainline commit
|
||||
0ad9a71933e7 ("modsign: Enable ML-DSA module signing") in 7.0-rc1
|
||||
- commit 21b4616
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 15:51:53 CET 2026 - tzimmermann@suse.com
|
||||
|
||||
- config: Enable coreboot support (bsc#1258262)
|
||||
Enable kernel support for coreboot firmware. Enabling these options
|
||||
provides various interfaces under /sys/firmware/. One of the next
|
||||
releases of the Linux kernel will feature corebootdrm, a dedicated
|
||||
DRM driver for coreboot's system framebuffer. The driver relies on
|
||||
support for coreboot firmware.
|
||||
Leave out s390x and ppc64le, as coreboot apparently does not support
|
||||
them.
|
||||
- commit 14b0853
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:14:56 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 7.0-rc1
|
||||
- drop 77 patches (72 stable, 5 mainline):
|
||||
- patches.kernel.org/*
|
||||
- patches.rpmify/gendwarfksyms-Fix-build-on-32-bit-hosts.patch (ddc54f912a55)
|
||||
- patches.suse/accel-amdxdna-Enable-temporal-sharing-only-mode.patch
|
||||
- patches.suse/accel-amdxdna-Remove-NPU2-support.patch
|
||||
- patches.suse/accel-amdxdna-Remove-amdxdna_flush.patch
|
||||
- patches.suse/accel-amdxdna-Update-firmware-version-check-for-late.patch
|
||||
- refresh
|
||||
- patches.rpmify/btf-pahole-j1-option.patch
|
||||
- patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
|
||||
- patches.suse/Restore-kABI-for-NVidia-vGPU-driver.patch
|
||||
- patches.suse/btrfs-provide-super_operations-get_inode_dev
|
||||
- patches.suse/iwlwifi-declare-missing-firmware-files.patch
|
||||
- patches.suse/vfs-add-super_operations-get_inode_dev
|
||||
- patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch
|
||||
- disable ARM architectures (need config update)
|
||||
- new config options
|
||||
- General setup
|
||||
- CONFIG_RSEQ_SLICE_EXTENSION=n
|
||||
- Memory Management options
|
||||
- CONFIG_BALLOON_MIGRATION=y
|
||||
- Networking support
|
||||
- CONFIG_NET_DSA_TAG_MXL_862XX=m
|
||||
- File systems
|
||||
- CONFIG_EROFS_FS_PAGE_CACHE_SHARE=n
|
||||
- CONFIG_NFS_V4_0=n
|
||||
- CONFIG_NFSD_V4_POSIX_ACLS=n
|
||||
- Cryptographic API
|
||||
- CONFIG_CRYPTO_MLDSA=m
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_44=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_65=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_87=n
|
||||
- Kernel hacking
|
||||
- CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=0
|
||||
- CONFIG_BOOTPARAM_WQ_STALL_PANIC=0
|
||||
- CONFIG_DEBUG_ATOMIC=n
|
||||
- CONFIG_CONTEXT_ANALYSIS_TEST=n
|
||||
- Cryptographic API
|
||||
- CONFIG_PKCS7_WAIVE_AUTHATTRS_REJECTION_FOR_MLDSA=n
|
||||
- Network device support
|
||||
- CONFIG_NET_DSA_MXL862=m
|
||||
- CONFIG_DWMAC_MOTORCOMM=m
|
||||
- Hardware Monitoring support
|
||||
- CONFIG_SENSORS_HAC300S=m
|
||||
- CONFIG_SENSORS_MP5926=m
|
||||
- CONFIG_SENSORS_STEF48H28=m
|
||||
- Voltage and Current Regulator Support
|
||||
- CONFIG_REGULATOR_RT8092=m
|
||||
- CONFIG_REGULATOR_TPS65185=m
|
||||
- Multimedia support
|
||||
- CONFIG_VIDEO_OS05B10=m
|
||||
- CONFIG_VIDEO_S5K3M5=m
|
||||
- CONFIG_VIDEO_S5KJN1=m
|
||||
- Graphics support
|
||||
- CONFIG_DRM_ST7571=m
|
||||
- CONFIG_DRM_ST7571_SPI=m
|
||||
- CONFIG_DRM_ST7920=m
|
||||
- Sound card support
|
||||
- CONFIG_SND_SOC_RT5575=m
|
||||
- CONFIG_SND_SOC_RT5575_SPI=y
|
||||
- LED Support
|
||||
- CONFIG_LEDS_OSRAM_AMS_AS3668=m
|
||||
- CONFIG_LEDS_LP5812=m
|
||||
- Staging drivers
|
||||
- CONFIG_FB_TFT=m
|
||||
- CONFIG_FB_TFT_AGM1264K_FL=m
|
||||
- CONFIG_FB_TFT_BD663474=m
|
||||
- CONFIG_FB_TFT_HX8340BN=m
|
||||
- CONFIG_FB_TFT_HX8347D=m
|
||||
- CONFIG_FB_TFT_HX8353D=m
|
||||
- CONFIG_FB_TFT_HX8357D=m
|
||||
- CONFIG_FB_TFT_ILI9163=m
|
||||
- CONFIG_FB_TFT_ILI9320=m
|
||||
- CONFIG_FB_TFT_ILI9325=m
|
||||
- CONFIG_FB_TFT_ILI9340=m
|
||||
- CONFIG_FB_TFT_ILI9341=m
|
||||
- CONFIG_FB_TFT_ILI9481=m
|
||||
- CONFIG_FB_TFT_ILI9486=m
|
||||
- CONFIG_FB_TFT_PCD8544=m
|
||||
- CONFIG_FB_TFT_RA8875=m
|
||||
- CONFIG_FB_TFT_S6D02A1=m
|
||||
- CONFIG_FB_TFT_S6D1121=m
|
||||
- CONFIG_FB_TFT_SEPS525=m
|
||||
- CONFIG_FB_TFT_SH1106=m
|
||||
- CONFIG_FB_TFT_SSD1289=m
|
||||
- CONFIG_FB_TFT_SSD1305=m
|
||||
- CONFIG_FB_TFT_SSD1306=m
|
||||
- CONFIG_FB_TFT_SSD1331=m
|
||||
- CONFIG_FB_TFT_SSD1351=m
|
||||
- CONFIG_FB_TFT_ST7735R=m
|
||||
- CONFIG_FB_TFT_ST7789V=m
|
||||
- CONFIG_FB_TFT_TINYLCD=m
|
||||
- CONFIG_FB_TFT_TLS8204=m
|
||||
- CONFIG_FB_TFT_UC1611=m
|
||||
- CONFIG_FB_TFT_UC1701=m
|
||||
- CONFIG_FB_TFT_UPD161704=m
|
||||
- Industrial I/O support
|
||||
- CONFIG_ADXL345_I2C=n
|
||||
- CONFIG_ADXL345_SPI=n
|
||||
- CONFIG_AD4062=n
|
||||
- CONFIG_AD4134=n
|
||||
- CONFIG_TI_ADS1018=n
|
||||
- CONFIG_TI_ADS131M02=n
|
||||
- CONFIG_ADL8113=n
|
||||
- CONFIG_MAX22007=n
|
||||
- CONFIG_MCP47FEB02=n
|
||||
- CONFIG_MMC5633=n
|
||||
- CONFIG_ABP2030PA_I2C=n
|
||||
- CONFIG_ABP2030PA_SPI=n
|
||||
- CONFIG_MPRLS0025PA_I2C=n
|
||||
- CONFIG_MPRLS0025PA_SPI=n
|
||||
- misc drivers
|
||||
- CONFIG_PHY_GOOGLE_USB=m
|
||||
- CONFIG_DPLL_REFCNT_TRACKER=n
|
||||
- CONFIG_HID_RAPOO=m
|
||||
- CONFIG_USB_DWC3_GOOGLE=m
|
||||
- CONFIG_IOMMU_DEBUG_PAGEALLOC=n
|
||||
- OF dependent (i386, ppc64le, riscv64)
|
||||
- GPIO_LINE_MUX=m
|
||||
- POWER_SEQUENCING_PCIE_M2=m
|
||||
- i386
|
||||
- REGULATOR_MAX77675=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- ppc64le
|
||||
- INTEL_MEI=n
|
||||
- LOGO_LINUX_VGA16_FILE="drivers/video/logo/logo_linux_vga16.ppm"
|
||||
- LOGO_LINUX_CLUT224_FILE="drivers/video/logo/logo_linux_clut224.ppm"
|
||||
- TRUSTED_KEYS_PKWM=y
|
||||
- s390x
|
||||
- INTEL_MEI=n
|
||||
- s390x/zfcpdump
|
||||
- KEXEC_SIG=y
|
||||
- PKCS8_PRIVATE_KEY_PARSER=y
|
||||
- PKCS7_TEST_KEY=n
|
||||
- SIGNED_PE_FILE_VERIFICATION=y
|
||||
- FIPS_SIGNATURE_SELFTEST=n
|
||||
- SYSTEM_TRUSTED_KEYS=""
|
||||
- SYSTEM_EXTRA_CERTIFICATE=n
|
||||
- SECONDARY_TRUSTED_KEYRING=y
|
||||
- SECONDARY_TRUSTED_KEYRING_SIGNED_BY_BUILTIN=n
|
||||
- riscv64
|
||||
- RISCV_USER_CFI=y
|
||||
- INTEL_MEI=n
|
||||
- SPI_ATCSPI200=m
|
||||
- REGULATOR_MAX77675=m
|
||||
- VIDEO_DW_MIPI_CSI2RX=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- FIRMWARE_EDID=y
|
||||
- SND_SOC_CV1800B_TDM=m
|
||||
- SND_SOC_CV1800B_ADC_CODEC=m
|
||||
- SND_SOC_CV1800B_DAC_CODEC=m
|
||||
- SPACEMIT_K3_CCU=m
|
||||
- RESET_SPACEMIT_K1=m
|
||||
- RESET_SPACEMIT_K3=m
|
||||
- PHY_SPACEMIT_K1_PCIE=m
|
||||
- PHY_SPACEMIT_K1_USB2=m
|
||||
- commit 96fa923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 06:28:12 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.3 (bsc#1012628).
|
||||
- scsi: qla2xxx: Fix bsg_done() causing double free (bsc#1012628).
|
||||
- arm64: dts: mediatek: mt8183: Add missing endpoint IDs to
|
||||
display graph (bsc#1012628).
|
||||
- LoongArch: Rework KASAN initialization for PTW-enabled systems
|
||||
(bsc#1012628).
|
||||
- fbdev: rivafb: fix divide error in nv3_arb() (bsc#1012628).
|
||||
- fbdev: smscufx: properly copy ioctl memory to kernelspace
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to add gc count stat in f2fs_gc_range (bsc#1012628).
|
||||
- f2fs: fix to check sysfs filename w/ gc_pin_file_thresh
|
||||
correctly (bsc#1012628).
|
||||
- f2fs: fix IS_CHECKPOINTED flag inconsistency issue caused by
|
||||
concurrent atomic commit and checkpoint writes (bsc#1012628).
|
||||
- f2fs: fix out-of-bounds access in sysfs attribute read/write
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid UAF in f2fs_write_end_io() (bsc#1012628).
|
||||
- f2fs: support non-4KB block size without packed_ssa feature
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid mapping wrong physical block for swapfile
|
||||
(bsc#1012628).
|
||||
- f2fs: optimize f2fs_overwrite_io() for f2fs_iomap_begin
|
||||
(bsc#1012628).
|
||||
- Revert "f2fs: block cache/dio write during
|
||||
f2fs_enable_checkpoint()" (bsc#1012628).
|
||||
- USB: serial: option: add Telit FN920C04 RNDIS compositions
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
__write_node_folio() (bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
{read,write}_end_io (bsc#1012628).
|
||||
- f2fs: fix incomplete block usage in compact SSA summaries
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.3-014-iommu-arm-smmu-qcom-do-not-register-driver-in-.patch.
|
||||
- commit fcdf9c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 18 15:43:45 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Move upstreamed amdxdna patches into sorted section
|
||||
- commit 787d692
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:36:29 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- iommu/arm-smmu-qcom: do not register driver in probe()
|
||||
(git-fixes).
|
||||
- commit 7b303f4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:47 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.2 (bsc#1012628).
|
||||
- Revert "driver core: enforce device_lock for
|
||||
driver_match_device()" (bsc#1012628).
|
||||
- commit 57aa524
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:02 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.1 (bsc#1012628).
|
||||
- smb: client: split cached_fid bitfields to avoid shared-byte
|
||||
RMW races (bsc#1012628).
|
||||
- ksmbd: fix infinite loop caused by next_smb2_rcv_hdr_off reset
|
||||
in error paths (bsc#1012628).
|
||||
- ksmbd: add chann_lock to protect ksmbd_chann_list xarray
|
||||
(bsc#1012628).
|
||||
- smb: server: fix leak of active_num_conn in
|
||||
ksmbd_tcp_new_connection() (bsc#1012628).
|
||||
- smb: smbdirect: introduce
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: smbdirect: introduce smbdirect_socket.send_io.bcredits.*
|
||||
(bsc#1012628).
|
||||
- smb: server: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: server: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: server: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: server: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: server: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- smb: client: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: client: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: client: let smbd_post_send() make use of request->wr
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->recv_io.credits.count rollback
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->send_io.pending handling in
|
||||
smbd_post_send_iter() (bsc#1012628).
|
||||
- smb: client: port and use the wait_for_credits logic used by
|
||||
server (bsc#1012628).
|
||||
- smb: client: split out smbd_ib_post_send() (bsc#1012628).
|
||||
- smb: client: introduce and use smbd_{alloc, free}_send_io()
|
||||
(bsc#1012628).
|
||||
- smb: client: use smbdirect_send_batch processing (bsc#1012628).
|
||||
- smb: client: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: client: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: client: let smbd_post_send_negotiate_req() use
|
||||
smbd_post_send() (bsc#1012628).
|
||||
- smb: client: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- driver core: enforce device_lock for driver_match_device()
|
||||
(bsc#1012628).
|
||||
- Bluetooth: btusb: Add USB ID 7392:e611 for Edimax EW-7611UXB
|
||||
(bsc#1012628).
|
||||
- ALSA: hda/conexant: Add quirk for HP ZBook Studio G4
|
||||
(bsc#1012628).
|
||||
- crypto: iaa - Fix out-of-bounds index in
|
||||
find_empty_iaa_compression_mode (bsc#1012628).
|
||||
- crypto: octeontx - Fix length check to avoid truncation in
|
||||
ucode_load_store (bsc#1012628).
|
||||
- crypto: omap - Allocate OMAP_CRYPTO_FORCE_COPY scatterlists
|
||||
correctly (bsc#1012628).
|
||||
- crypto: virtio - Add spinlock protection with virtqueue
|
||||
notification (bsc#1012628).
|
||||
- crypto: virtio - Remove duplicated virtqueue_kick in
|
||||
virtio_crypto_skcipher_crypt_req (bsc#1012628).
|
||||
- nilfs2: Fix potential block overflow that cause system hang
|
||||
(bsc#1012628).
|
||||
- hfs: ensure sb->s_fs_info is always cleaned up (bsc#1012628).
|
||||
- wifi: rtw88: Fix alignment fault in rtw_core_enable_beacon()
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Validate sp before freeing associated memory
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Allow recovery for tape devices (bsc#1012628).
|
||||
- scsi: qla2xxx: Delay module unload while fabric scan in progress
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Free sp in error path to fix system crash
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Query FW again before proceeding with login
|
||||
(bsc#1012628).
|
||||
- sched/mmcid: Don't assume CID is CPU owned on mode switch
|
||||
(bsc#1012628).
|
||||
- bus: fsl-mc: fix use-after-free in driver_override_show()
|
||||
(bsc#1012628).
|
||||
- erofs: fix UAF issue for file-backed mounts w/ directio option
|
||||
(bsc#1012628).
|
||||
- xfs: fix UAF in xchk_btree_check_block_owner (bsc#1012628).
|
||||
- drm/exynos: vidi: use ctx->lock to protect struct vidi_context
|
||||
member variables related to memory alloc/free (bsc#1012628).
|
||||
- PCI: endpoint: Avoid creating sub-groups asynchronously
|
||||
(bsc#1012628).
|
||||
- wifi: rtl8xxxu: fix slab-out-of-bounds in rtl8xxxu_sta_add
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-001-io_uring-io-wq-add-exit-on-idle-state.patch.
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-002-io_uring-allow-io-wq-workers-to-exit-when-unus.patch.
|
||||
- commit 2f9cad9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 12 07:11:01 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- io_uring: allow io-wq workers to exit when unused
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- io_uring/io-wq: add exit-on-idle state
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- commit b7d1ad1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:33:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19 final
|
||||
- refresh configs (headers only)
|
||||
- commit 8f6da03
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:31:10 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv6hl configs
|
||||
- option values copied from armv7hl
|
||||
- commit 7ef7460
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:28:36 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv7hl configs
|
||||
- option values copied from arm64 except
|
||||
- MACH_MT6582=y
|
||||
- CLK_RK3506=y
|
||||
- commit e113f66
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:16:37 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable arm64 configs
|
||||
- option values copied from x86_64, i386 and riscv64 except
|
||||
- ARCH_BST=y
|
||||
- ARM64_MPAM=y
|
||||
- PCI_SKY1_HOST=m
|
||||
- PCIE_NXP_S32G=y
|
||||
- CACHEMAINT_FOR_HOTPLUG=y
|
||||
- HISI_SOC_HHA=m
|
||||
- PINCTRL_SKY1=m
|
||||
- PINCTRL_MT6878=y
|
||||
- PINCTRL_KAANAPALI=m
|
||||
- GPIO_SHARED_PROXY=m
|
||||
- CHARGER_BD71828=m
|
||||
- SENSORS_MACSMC_HWMON=m
|
||||
- IMX91_THERMAL=m
|
||||
- VIDEO_ROCKCHIP_CIF=m
|
||||
- DRM_IMX8MP_HDMI_PAI=m
|
||||
- DRM_DW_HDMI_QP_CEC=y
|
||||
- DRM_MEDIATEK_HDMI_V2=m
|
||||
- SND_HDA_CIX_IPBLOQ=m
|
||||
- SND_SOC_MT8189=m
|
||||
- SND_SOC_MT8189_NAU8825=m
|
||||
- USB_DWC3_APPLE=m
|
||||
- SCSI_UFS_AMD_VERSAL2=m
|
||||
- RTC_DRV_MACSMC=m
|
||||
- IPQ_NSSCC_5424=m
|
||||
- SM_VIDEOCC_8750=m
|
||||
- CLK_RV1126B=y
|
||||
- RTK_SYSTIMER=y
|
||||
- MTK_MFG_PM_DOMAIN=y
|
||||
- PWM_AIROHA=m
|
||||
- NVMEM_QNAP_MCU_EEPROM=m
|
||||
- INTERCONNECT_QCOM_KAANAPALI=m
|
||||
- ARM64_MPAM_DRIVER_DEBUG=n
|
||||
- commit 0e2d85d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 13:36:06 CET 2026 - tiwai@suse.de
|
||||
|
||||
- accel/amdxdna: Update firmware version check for latest firmware
|
||||
(bsc#1257724).
|
||||
- accel/amdxdna: Enable temporal sharing only mode (bsc#1257724).
|
||||
- accel/amdxdna: Remove NPU2 support (bsc#1257724).
|
||||
- accel/amdxdna: Remove amdxdna_flush() (bsc#1257724).
|
||||
- commit 6eaf1bb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 12:25:17 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch (bsc#1252084)
|
||||
The upstream didn't release *-101.ucode for some models.
|
||||
- commit 33ced68
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 23:11:15 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc8
|
||||
- commit 41a428c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 26 00:11:33 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc7
|
||||
- drop no longer needed patch (obsoleted by 3f2de814c059)
|
||||
- patches.rpmify/Revert-objtool-fix-build-failure-due-to-missing-libopcodes.patch
|
||||
- update configs
|
||||
- DRM_XE_USERPTR_INVAL_INJECT=n (on i386)
|
||||
- commit 3fe5a20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 21 16:03:32 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- Revert "objtool: fix build failure due to missing libopcodes
|
||||
check".
|
||||
- commit 50c998d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 09:23:32 CET 2026 - jdelvare@suse.com
|
||||
|
||||
- Enable NCT6694 support on x86_64
|
||||
This multi-function device is platform-independent and can be found
|
||||
on both ARM and x86 platforms.
|
||||
- commit e5dd94d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 06:20:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc6
|
||||
- refresh configs
|
||||
- commit e5456de
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 09:08:40 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc5
|
||||
- update configs
|
||||
- MISC_RP1=n (i386)
|
||||
- commit 444cfba
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:10:18 CET 2026 - tiwai@suse.de
|
||||
|
||||
|
||||
@@ -17,9 +17,9 @@
|
||||
# needssslcertforbuild
|
||||
|
||||
|
||||
%define srcversion 6.19-rc4
|
||||
%define patchversion 6.19.0-rc4
|
||||
%define git_commit 53522494ab7628cbd71a32672d6628920ee26bf9
|
||||
%define srcversion 7.0-rc3
|
||||
%define patchversion 7.0.0-rc3
|
||||
%define git_commit 2efdd9cb76be4a8c4edd48301cd80301fc368c3b
|
||||
%define variant %{nil}
|
||||
%define compress_modules zstd
|
||||
%define compress_vmlinux xz
|
||||
@@ -40,9 +40,9 @@
|
||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,arch-symbols,check-module-license,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
|
||||
|
||||
Name: kernel-default
|
||||
Version: 6.19~rc4
|
||||
Version: 7.0~rc3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g5352249
|
||||
Release: <RELEASE>.g2efdd9c
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
||||
@@ -1,3 +1,540 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 11:56:41 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.rpmify/certs-Replace-openssl-invocation-with-OPENSSL.patch
|
||||
Improved the patch to allow the alternative openssl more generically
|
||||
- commit 332afe7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 01:13:29 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc3
|
||||
- Delete upstream patch kbuild-Leave-objtool-binary-around-with-make-clean.patch
|
||||
- refresh configs
|
||||
- commit 0e787eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 09:14:17 CET 2026 - msuchanek@suse.de
|
||||
|
||||
- Move dummy openssl from kernel-source to kernel
|
||||
Fixes: eb95320d3295 ("scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)")
|
||||
- commit dd3697c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 14:26:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- certs: Replace openssl invocation with $OPENSSL (bsc#1259065).
|
||||
- commit 104ab06
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:53:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Update config files: re-enable CONFIG_OPENSSL_SUPPORTS_ML_DSA (bsc#1259065)
|
||||
- commit 0bfc1b0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:50:22 CET 2026 - tiwai@suse.de
|
||||
|
||||
- scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)
|
||||
Needed for CONFIG_OPENSSL_SUPPORTS_ML_DSA introduced in 7.0 kernel.
|
||||
- commit eb95320
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 01:08:04 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc2
|
||||
- refresh config files
|
||||
- commit 1b18c75
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 28 13:12:05 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- kbuild: Leave objtool binary around with 'make clean' (kmp-fix).
|
||||
- commit 3f3f246
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 24 08:34:34 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: refresh
|
||||
- commit 440de45
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 17:50:45 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: add OPENSSL_SUPPORTS_ to IGNORED_CONFIGS_RE
|
||||
Config option OPENSSL_SUPPORTS_ML_DSA was introduced by mainline commit
|
||||
0ad9a71933e7 ("modsign: Enable ML-DSA module signing") in 7.0-rc1
|
||||
- commit 21b4616
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 15:51:53 CET 2026 - tzimmermann@suse.com
|
||||
|
||||
- config: Enable coreboot support (bsc#1258262)
|
||||
Enable kernel support for coreboot firmware. Enabling these options
|
||||
provides various interfaces under /sys/firmware/. One of the next
|
||||
releases of the Linux kernel will feature corebootdrm, a dedicated
|
||||
DRM driver for coreboot's system framebuffer. The driver relies on
|
||||
support for coreboot firmware.
|
||||
Leave out s390x and ppc64le, as coreboot apparently does not support
|
||||
them.
|
||||
- commit 14b0853
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:14:56 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 7.0-rc1
|
||||
- drop 77 patches (72 stable, 5 mainline):
|
||||
- patches.kernel.org/*
|
||||
- patches.rpmify/gendwarfksyms-Fix-build-on-32-bit-hosts.patch (ddc54f912a55)
|
||||
- patches.suse/accel-amdxdna-Enable-temporal-sharing-only-mode.patch
|
||||
- patches.suse/accel-amdxdna-Remove-NPU2-support.patch
|
||||
- patches.suse/accel-amdxdna-Remove-amdxdna_flush.patch
|
||||
- patches.suse/accel-amdxdna-Update-firmware-version-check-for-late.patch
|
||||
- refresh
|
||||
- patches.rpmify/btf-pahole-j1-option.patch
|
||||
- patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
|
||||
- patches.suse/Restore-kABI-for-NVidia-vGPU-driver.patch
|
||||
- patches.suse/btrfs-provide-super_operations-get_inode_dev
|
||||
- patches.suse/iwlwifi-declare-missing-firmware-files.patch
|
||||
- patches.suse/vfs-add-super_operations-get_inode_dev
|
||||
- patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch
|
||||
- disable ARM architectures (need config update)
|
||||
- new config options
|
||||
- General setup
|
||||
- CONFIG_RSEQ_SLICE_EXTENSION=n
|
||||
- Memory Management options
|
||||
- CONFIG_BALLOON_MIGRATION=y
|
||||
- Networking support
|
||||
- CONFIG_NET_DSA_TAG_MXL_862XX=m
|
||||
- File systems
|
||||
- CONFIG_EROFS_FS_PAGE_CACHE_SHARE=n
|
||||
- CONFIG_NFS_V4_0=n
|
||||
- CONFIG_NFSD_V4_POSIX_ACLS=n
|
||||
- Cryptographic API
|
||||
- CONFIG_CRYPTO_MLDSA=m
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_44=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_65=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_87=n
|
||||
- Kernel hacking
|
||||
- CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=0
|
||||
- CONFIG_BOOTPARAM_WQ_STALL_PANIC=0
|
||||
- CONFIG_DEBUG_ATOMIC=n
|
||||
- CONFIG_CONTEXT_ANALYSIS_TEST=n
|
||||
- Cryptographic API
|
||||
- CONFIG_PKCS7_WAIVE_AUTHATTRS_REJECTION_FOR_MLDSA=n
|
||||
- Network device support
|
||||
- CONFIG_NET_DSA_MXL862=m
|
||||
- CONFIG_DWMAC_MOTORCOMM=m
|
||||
- Hardware Monitoring support
|
||||
- CONFIG_SENSORS_HAC300S=m
|
||||
- CONFIG_SENSORS_MP5926=m
|
||||
- CONFIG_SENSORS_STEF48H28=m
|
||||
- Voltage and Current Regulator Support
|
||||
- CONFIG_REGULATOR_RT8092=m
|
||||
- CONFIG_REGULATOR_TPS65185=m
|
||||
- Multimedia support
|
||||
- CONFIG_VIDEO_OS05B10=m
|
||||
- CONFIG_VIDEO_S5K3M5=m
|
||||
- CONFIG_VIDEO_S5KJN1=m
|
||||
- Graphics support
|
||||
- CONFIG_DRM_ST7571=m
|
||||
- CONFIG_DRM_ST7571_SPI=m
|
||||
- CONFIG_DRM_ST7920=m
|
||||
- Sound card support
|
||||
- CONFIG_SND_SOC_RT5575=m
|
||||
- CONFIG_SND_SOC_RT5575_SPI=y
|
||||
- LED Support
|
||||
- CONFIG_LEDS_OSRAM_AMS_AS3668=m
|
||||
- CONFIG_LEDS_LP5812=m
|
||||
- Staging drivers
|
||||
- CONFIG_FB_TFT=m
|
||||
- CONFIG_FB_TFT_AGM1264K_FL=m
|
||||
- CONFIG_FB_TFT_BD663474=m
|
||||
- CONFIG_FB_TFT_HX8340BN=m
|
||||
- CONFIG_FB_TFT_HX8347D=m
|
||||
- CONFIG_FB_TFT_HX8353D=m
|
||||
- CONFIG_FB_TFT_HX8357D=m
|
||||
- CONFIG_FB_TFT_ILI9163=m
|
||||
- CONFIG_FB_TFT_ILI9320=m
|
||||
- CONFIG_FB_TFT_ILI9325=m
|
||||
- CONFIG_FB_TFT_ILI9340=m
|
||||
- CONFIG_FB_TFT_ILI9341=m
|
||||
- CONFIG_FB_TFT_ILI9481=m
|
||||
- CONFIG_FB_TFT_ILI9486=m
|
||||
- CONFIG_FB_TFT_PCD8544=m
|
||||
- CONFIG_FB_TFT_RA8875=m
|
||||
- CONFIG_FB_TFT_S6D02A1=m
|
||||
- CONFIG_FB_TFT_S6D1121=m
|
||||
- CONFIG_FB_TFT_SEPS525=m
|
||||
- CONFIG_FB_TFT_SH1106=m
|
||||
- CONFIG_FB_TFT_SSD1289=m
|
||||
- CONFIG_FB_TFT_SSD1305=m
|
||||
- CONFIG_FB_TFT_SSD1306=m
|
||||
- CONFIG_FB_TFT_SSD1331=m
|
||||
- CONFIG_FB_TFT_SSD1351=m
|
||||
- CONFIG_FB_TFT_ST7735R=m
|
||||
- CONFIG_FB_TFT_ST7789V=m
|
||||
- CONFIG_FB_TFT_TINYLCD=m
|
||||
- CONFIG_FB_TFT_TLS8204=m
|
||||
- CONFIG_FB_TFT_UC1611=m
|
||||
- CONFIG_FB_TFT_UC1701=m
|
||||
- CONFIG_FB_TFT_UPD161704=m
|
||||
- Industrial I/O support
|
||||
- CONFIG_ADXL345_I2C=n
|
||||
- CONFIG_ADXL345_SPI=n
|
||||
- CONFIG_AD4062=n
|
||||
- CONFIG_AD4134=n
|
||||
- CONFIG_TI_ADS1018=n
|
||||
- CONFIG_TI_ADS131M02=n
|
||||
- CONFIG_ADL8113=n
|
||||
- CONFIG_MAX22007=n
|
||||
- CONFIG_MCP47FEB02=n
|
||||
- CONFIG_MMC5633=n
|
||||
- CONFIG_ABP2030PA_I2C=n
|
||||
- CONFIG_ABP2030PA_SPI=n
|
||||
- CONFIG_MPRLS0025PA_I2C=n
|
||||
- CONFIG_MPRLS0025PA_SPI=n
|
||||
- misc drivers
|
||||
- CONFIG_PHY_GOOGLE_USB=m
|
||||
- CONFIG_DPLL_REFCNT_TRACKER=n
|
||||
- CONFIG_HID_RAPOO=m
|
||||
- CONFIG_USB_DWC3_GOOGLE=m
|
||||
- CONFIG_IOMMU_DEBUG_PAGEALLOC=n
|
||||
- OF dependent (i386, ppc64le, riscv64)
|
||||
- GPIO_LINE_MUX=m
|
||||
- POWER_SEQUENCING_PCIE_M2=m
|
||||
- i386
|
||||
- REGULATOR_MAX77675=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- ppc64le
|
||||
- INTEL_MEI=n
|
||||
- LOGO_LINUX_VGA16_FILE="drivers/video/logo/logo_linux_vga16.ppm"
|
||||
- LOGO_LINUX_CLUT224_FILE="drivers/video/logo/logo_linux_clut224.ppm"
|
||||
- TRUSTED_KEYS_PKWM=y
|
||||
- s390x
|
||||
- INTEL_MEI=n
|
||||
- s390x/zfcpdump
|
||||
- KEXEC_SIG=y
|
||||
- PKCS8_PRIVATE_KEY_PARSER=y
|
||||
- PKCS7_TEST_KEY=n
|
||||
- SIGNED_PE_FILE_VERIFICATION=y
|
||||
- FIPS_SIGNATURE_SELFTEST=n
|
||||
- SYSTEM_TRUSTED_KEYS=""
|
||||
- SYSTEM_EXTRA_CERTIFICATE=n
|
||||
- SECONDARY_TRUSTED_KEYRING=y
|
||||
- SECONDARY_TRUSTED_KEYRING_SIGNED_BY_BUILTIN=n
|
||||
- riscv64
|
||||
- RISCV_USER_CFI=y
|
||||
- INTEL_MEI=n
|
||||
- SPI_ATCSPI200=m
|
||||
- REGULATOR_MAX77675=m
|
||||
- VIDEO_DW_MIPI_CSI2RX=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- FIRMWARE_EDID=y
|
||||
- SND_SOC_CV1800B_TDM=m
|
||||
- SND_SOC_CV1800B_ADC_CODEC=m
|
||||
- SND_SOC_CV1800B_DAC_CODEC=m
|
||||
- SPACEMIT_K3_CCU=m
|
||||
- RESET_SPACEMIT_K1=m
|
||||
- RESET_SPACEMIT_K3=m
|
||||
- PHY_SPACEMIT_K1_PCIE=m
|
||||
- PHY_SPACEMIT_K1_USB2=m
|
||||
- commit 96fa923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 06:28:12 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.3 (bsc#1012628).
|
||||
- scsi: qla2xxx: Fix bsg_done() causing double free (bsc#1012628).
|
||||
- arm64: dts: mediatek: mt8183: Add missing endpoint IDs to
|
||||
display graph (bsc#1012628).
|
||||
- LoongArch: Rework KASAN initialization for PTW-enabled systems
|
||||
(bsc#1012628).
|
||||
- fbdev: rivafb: fix divide error in nv3_arb() (bsc#1012628).
|
||||
- fbdev: smscufx: properly copy ioctl memory to kernelspace
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to add gc count stat in f2fs_gc_range (bsc#1012628).
|
||||
- f2fs: fix to check sysfs filename w/ gc_pin_file_thresh
|
||||
correctly (bsc#1012628).
|
||||
- f2fs: fix IS_CHECKPOINTED flag inconsistency issue caused by
|
||||
concurrent atomic commit and checkpoint writes (bsc#1012628).
|
||||
- f2fs: fix out-of-bounds access in sysfs attribute read/write
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid UAF in f2fs_write_end_io() (bsc#1012628).
|
||||
- f2fs: support non-4KB block size without packed_ssa feature
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid mapping wrong physical block for swapfile
|
||||
(bsc#1012628).
|
||||
- f2fs: optimize f2fs_overwrite_io() for f2fs_iomap_begin
|
||||
(bsc#1012628).
|
||||
- Revert "f2fs: block cache/dio write during
|
||||
f2fs_enable_checkpoint()" (bsc#1012628).
|
||||
- USB: serial: option: add Telit FN920C04 RNDIS compositions
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
__write_node_folio() (bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
{read,write}_end_io (bsc#1012628).
|
||||
- f2fs: fix incomplete block usage in compact SSA summaries
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.3-014-iommu-arm-smmu-qcom-do-not-register-driver-in-.patch.
|
||||
- commit fcdf9c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 18 15:43:45 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Move upstreamed amdxdna patches into sorted section
|
||||
- commit 787d692
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:36:29 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- iommu/arm-smmu-qcom: do not register driver in probe()
|
||||
(git-fixes).
|
||||
- commit 7b303f4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:47 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.2 (bsc#1012628).
|
||||
- Revert "driver core: enforce device_lock for
|
||||
driver_match_device()" (bsc#1012628).
|
||||
- commit 57aa524
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:02 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.1 (bsc#1012628).
|
||||
- smb: client: split cached_fid bitfields to avoid shared-byte
|
||||
RMW races (bsc#1012628).
|
||||
- ksmbd: fix infinite loop caused by next_smb2_rcv_hdr_off reset
|
||||
in error paths (bsc#1012628).
|
||||
- ksmbd: add chann_lock to protect ksmbd_chann_list xarray
|
||||
(bsc#1012628).
|
||||
- smb: server: fix leak of active_num_conn in
|
||||
ksmbd_tcp_new_connection() (bsc#1012628).
|
||||
- smb: smbdirect: introduce
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: smbdirect: introduce smbdirect_socket.send_io.bcredits.*
|
||||
(bsc#1012628).
|
||||
- smb: server: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: server: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: server: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: server: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: server: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- smb: client: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: client: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: client: let smbd_post_send() make use of request->wr
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->recv_io.credits.count rollback
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->send_io.pending handling in
|
||||
smbd_post_send_iter() (bsc#1012628).
|
||||
- smb: client: port and use the wait_for_credits logic used by
|
||||
server (bsc#1012628).
|
||||
- smb: client: split out smbd_ib_post_send() (bsc#1012628).
|
||||
- smb: client: introduce and use smbd_{alloc, free}_send_io()
|
||||
(bsc#1012628).
|
||||
- smb: client: use smbdirect_send_batch processing (bsc#1012628).
|
||||
- smb: client: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: client: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: client: let smbd_post_send_negotiate_req() use
|
||||
smbd_post_send() (bsc#1012628).
|
||||
- smb: client: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- driver core: enforce device_lock for driver_match_device()
|
||||
(bsc#1012628).
|
||||
- Bluetooth: btusb: Add USB ID 7392:e611 for Edimax EW-7611UXB
|
||||
(bsc#1012628).
|
||||
- ALSA: hda/conexant: Add quirk for HP ZBook Studio G4
|
||||
(bsc#1012628).
|
||||
- crypto: iaa - Fix out-of-bounds index in
|
||||
find_empty_iaa_compression_mode (bsc#1012628).
|
||||
- crypto: octeontx - Fix length check to avoid truncation in
|
||||
ucode_load_store (bsc#1012628).
|
||||
- crypto: omap - Allocate OMAP_CRYPTO_FORCE_COPY scatterlists
|
||||
correctly (bsc#1012628).
|
||||
- crypto: virtio - Add spinlock protection with virtqueue
|
||||
notification (bsc#1012628).
|
||||
- crypto: virtio - Remove duplicated virtqueue_kick in
|
||||
virtio_crypto_skcipher_crypt_req (bsc#1012628).
|
||||
- nilfs2: Fix potential block overflow that cause system hang
|
||||
(bsc#1012628).
|
||||
- hfs: ensure sb->s_fs_info is always cleaned up (bsc#1012628).
|
||||
- wifi: rtw88: Fix alignment fault in rtw_core_enable_beacon()
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Validate sp before freeing associated memory
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Allow recovery for tape devices (bsc#1012628).
|
||||
- scsi: qla2xxx: Delay module unload while fabric scan in progress
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Free sp in error path to fix system crash
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Query FW again before proceeding with login
|
||||
(bsc#1012628).
|
||||
- sched/mmcid: Don't assume CID is CPU owned on mode switch
|
||||
(bsc#1012628).
|
||||
- bus: fsl-mc: fix use-after-free in driver_override_show()
|
||||
(bsc#1012628).
|
||||
- erofs: fix UAF issue for file-backed mounts w/ directio option
|
||||
(bsc#1012628).
|
||||
- xfs: fix UAF in xchk_btree_check_block_owner (bsc#1012628).
|
||||
- drm/exynos: vidi: use ctx->lock to protect struct vidi_context
|
||||
member variables related to memory alloc/free (bsc#1012628).
|
||||
- PCI: endpoint: Avoid creating sub-groups asynchronously
|
||||
(bsc#1012628).
|
||||
- wifi: rtl8xxxu: fix slab-out-of-bounds in rtl8xxxu_sta_add
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-001-io_uring-io-wq-add-exit-on-idle-state.patch.
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-002-io_uring-allow-io-wq-workers-to-exit-when-unus.patch.
|
||||
- commit 2f9cad9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 12 07:11:01 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- io_uring: allow io-wq workers to exit when unused
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- io_uring/io-wq: add exit-on-idle state
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- commit b7d1ad1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:33:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19 final
|
||||
- refresh configs (headers only)
|
||||
- commit 8f6da03
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:31:10 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv6hl configs
|
||||
- option values copied from armv7hl
|
||||
- commit 7ef7460
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:28:36 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv7hl configs
|
||||
- option values copied from arm64 except
|
||||
- MACH_MT6582=y
|
||||
- CLK_RK3506=y
|
||||
- commit e113f66
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:16:37 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable arm64 configs
|
||||
- option values copied from x86_64, i386 and riscv64 except
|
||||
- ARCH_BST=y
|
||||
- ARM64_MPAM=y
|
||||
- PCI_SKY1_HOST=m
|
||||
- PCIE_NXP_S32G=y
|
||||
- CACHEMAINT_FOR_HOTPLUG=y
|
||||
- HISI_SOC_HHA=m
|
||||
- PINCTRL_SKY1=m
|
||||
- PINCTRL_MT6878=y
|
||||
- PINCTRL_KAANAPALI=m
|
||||
- GPIO_SHARED_PROXY=m
|
||||
- CHARGER_BD71828=m
|
||||
- SENSORS_MACSMC_HWMON=m
|
||||
- IMX91_THERMAL=m
|
||||
- VIDEO_ROCKCHIP_CIF=m
|
||||
- DRM_IMX8MP_HDMI_PAI=m
|
||||
- DRM_DW_HDMI_QP_CEC=y
|
||||
- DRM_MEDIATEK_HDMI_V2=m
|
||||
- SND_HDA_CIX_IPBLOQ=m
|
||||
- SND_SOC_MT8189=m
|
||||
- SND_SOC_MT8189_NAU8825=m
|
||||
- USB_DWC3_APPLE=m
|
||||
- SCSI_UFS_AMD_VERSAL2=m
|
||||
- RTC_DRV_MACSMC=m
|
||||
- IPQ_NSSCC_5424=m
|
||||
- SM_VIDEOCC_8750=m
|
||||
- CLK_RV1126B=y
|
||||
- RTK_SYSTIMER=y
|
||||
- MTK_MFG_PM_DOMAIN=y
|
||||
- PWM_AIROHA=m
|
||||
- NVMEM_QNAP_MCU_EEPROM=m
|
||||
- INTERCONNECT_QCOM_KAANAPALI=m
|
||||
- ARM64_MPAM_DRIVER_DEBUG=n
|
||||
- commit 0e2d85d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 13:36:06 CET 2026 - tiwai@suse.de
|
||||
|
||||
- accel/amdxdna: Update firmware version check for latest firmware
|
||||
(bsc#1257724).
|
||||
- accel/amdxdna: Enable temporal sharing only mode (bsc#1257724).
|
||||
- accel/amdxdna: Remove NPU2 support (bsc#1257724).
|
||||
- accel/amdxdna: Remove amdxdna_flush() (bsc#1257724).
|
||||
- commit 6eaf1bb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 12:25:17 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch (bsc#1252084)
|
||||
The upstream didn't release *-101.ucode for some models.
|
||||
- commit 33ced68
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 23:11:15 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc8
|
||||
- commit 41a428c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 26 00:11:33 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc7
|
||||
- drop no longer needed patch (obsoleted by 3f2de814c059)
|
||||
- patches.rpmify/Revert-objtool-fix-build-failure-due-to-missing-libopcodes.patch
|
||||
- update configs
|
||||
- DRM_XE_USERPTR_INVAL_INJECT=n (on i386)
|
||||
- commit 3fe5a20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 21 16:03:32 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- Revert "objtool: fix build failure due to missing libopcodes
|
||||
check".
|
||||
- commit 50c998d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 09:23:32 CET 2026 - jdelvare@suse.com
|
||||
|
||||
- Enable NCT6694 support on x86_64
|
||||
This multi-function device is platform-independent and can be found
|
||||
on both ARM and x86 platforms.
|
||||
- commit e5dd94d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 06:20:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc6
|
||||
- refresh configs
|
||||
- commit e5456de
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 09:08:40 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc5
|
||||
- update configs
|
||||
- MISC_RP1=n (i386)
|
||||
- commit 444cfba
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:10:18 CET 2026 - tiwai@suse.de
|
||||
|
||||
|
||||
@@ -16,9 +16,9 @@
|
||||
#
|
||||
|
||||
|
||||
%define srcversion 6.19-rc4
|
||||
%define patchversion 6.19.0-rc4
|
||||
%define git_commit 53522494ab7628cbd71a32672d6628920ee26bf9
|
||||
%define srcversion 7.0-rc3
|
||||
%define patchversion 7.0.0-rc3
|
||||
%define git_commit 2efdd9cb76be4a8c4edd48301cd80301fc368c3b
|
||||
%define variant %{nil}
|
||||
%define build_html 1
|
||||
%define build_pdf 0
|
||||
@@ -28,9 +28,9 @@
|
||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,arch-symbols,check-module-license,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
|
||||
|
||||
Name: kernel-docs
|
||||
Version: 6.19~rc4
|
||||
Version: 7.0~rc3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g5352249
|
||||
Release: <RELEASE>.g2efdd9c
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
||||
@@ -1,3 +1,540 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 11:56:41 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.rpmify/certs-Replace-openssl-invocation-with-OPENSSL.patch
|
||||
Improved the patch to allow the alternative openssl more generically
|
||||
- commit 332afe7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 01:13:29 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc3
|
||||
- Delete upstream patch kbuild-Leave-objtool-binary-around-with-make-clean.patch
|
||||
- refresh configs
|
||||
- commit 0e787eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 09:14:17 CET 2026 - msuchanek@suse.de
|
||||
|
||||
- Move dummy openssl from kernel-source to kernel
|
||||
Fixes: eb95320d3295 ("scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)")
|
||||
- commit dd3697c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 14:26:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- certs: Replace openssl invocation with $OPENSSL (bsc#1259065).
|
||||
- commit 104ab06
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:53:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Update config files: re-enable CONFIG_OPENSSL_SUPPORTS_ML_DSA (bsc#1259065)
|
||||
- commit 0bfc1b0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:50:22 CET 2026 - tiwai@suse.de
|
||||
|
||||
- scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)
|
||||
Needed for CONFIG_OPENSSL_SUPPORTS_ML_DSA introduced in 7.0 kernel.
|
||||
- commit eb95320
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 01:08:04 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc2
|
||||
- refresh config files
|
||||
- commit 1b18c75
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 28 13:12:05 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- kbuild: Leave objtool binary around with 'make clean' (kmp-fix).
|
||||
- commit 3f3f246
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 24 08:34:34 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: refresh
|
||||
- commit 440de45
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 17:50:45 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: add OPENSSL_SUPPORTS_ to IGNORED_CONFIGS_RE
|
||||
Config option OPENSSL_SUPPORTS_ML_DSA was introduced by mainline commit
|
||||
0ad9a71933e7 ("modsign: Enable ML-DSA module signing") in 7.0-rc1
|
||||
- commit 21b4616
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 15:51:53 CET 2026 - tzimmermann@suse.com
|
||||
|
||||
- config: Enable coreboot support (bsc#1258262)
|
||||
Enable kernel support for coreboot firmware. Enabling these options
|
||||
provides various interfaces under /sys/firmware/. One of the next
|
||||
releases of the Linux kernel will feature corebootdrm, a dedicated
|
||||
DRM driver for coreboot's system framebuffer. The driver relies on
|
||||
support for coreboot firmware.
|
||||
Leave out s390x and ppc64le, as coreboot apparently does not support
|
||||
them.
|
||||
- commit 14b0853
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:14:56 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 7.0-rc1
|
||||
- drop 77 patches (72 stable, 5 mainline):
|
||||
- patches.kernel.org/*
|
||||
- patches.rpmify/gendwarfksyms-Fix-build-on-32-bit-hosts.patch (ddc54f912a55)
|
||||
- patches.suse/accel-amdxdna-Enable-temporal-sharing-only-mode.patch
|
||||
- patches.suse/accel-amdxdna-Remove-NPU2-support.patch
|
||||
- patches.suse/accel-amdxdna-Remove-amdxdna_flush.patch
|
||||
- patches.suse/accel-amdxdna-Update-firmware-version-check-for-late.patch
|
||||
- refresh
|
||||
- patches.rpmify/btf-pahole-j1-option.patch
|
||||
- patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
|
||||
- patches.suse/Restore-kABI-for-NVidia-vGPU-driver.patch
|
||||
- patches.suse/btrfs-provide-super_operations-get_inode_dev
|
||||
- patches.suse/iwlwifi-declare-missing-firmware-files.patch
|
||||
- patches.suse/vfs-add-super_operations-get_inode_dev
|
||||
- patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch
|
||||
- disable ARM architectures (need config update)
|
||||
- new config options
|
||||
- General setup
|
||||
- CONFIG_RSEQ_SLICE_EXTENSION=n
|
||||
- Memory Management options
|
||||
- CONFIG_BALLOON_MIGRATION=y
|
||||
- Networking support
|
||||
- CONFIG_NET_DSA_TAG_MXL_862XX=m
|
||||
- File systems
|
||||
- CONFIG_EROFS_FS_PAGE_CACHE_SHARE=n
|
||||
- CONFIG_NFS_V4_0=n
|
||||
- CONFIG_NFSD_V4_POSIX_ACLS=n
|
||||
- Cryptographic API
|
||||
- CONFIG_CRYPTO_MLDSA=m
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_44=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_65=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_87=n
|
||||
- Kernel hacking
|
||||
- CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=0
|
||||
- CONFIG_BOOTPARAM_WQ_STALL_PANIC=0
|
||||
- CONFIG_DEBUG_ATOMIC=n
|
||||
- CONFIG_CONTEXT_ANALYSIS_TEST=n
|
||||
- Cryptographic API
|
||||
- CONFIG_PKCS7_WAIVE_AUTHATTRS_REJECTION_FOR_MLDSA=n
|
||||
- Network device support
|
||||
- CONFIG_NET_DSA_MXL862=m
|
||||
- CONFIG_DWMAC_MOTORCOMM=m
|
||||
- Hardware Monitoring support
|
||||
- CONFIG_SENSORS_HAC300S=m
|
||||
- CONFIG_SENSORS_MP5926=m
|
||||
- CONFIG_SENSORS_STEF48H28=m
|
||||
- Voltage and Current Regulator Support
|
||||
- CONFIG_REGULATOR_RT8092=m
|
||||
- CONFIG_REGULATOR_TPS65185=m
|
||||
- Multimedia support
|
||||
- CONFIG_VIDEO_OS05B10=m
|
||||
- CONFIG_VIDEO_S5K3M5=m
|
||||
- CONFIG_VIDEO_S5KJN1=m
|
||||
- Graphics support
|
||||
- CONFIG_DRM_ST7571=m
|
||||
- CONFIG_DRM_ST7571_SPI=m
|
||||
- CONFIG_DRM_ST7920=m
|
||||
- Sound card support
|
||||
- CONFIG_SND_SOC_RT5575=m
|
||||
- CONFIG_SND_SOC_RT5575_SPI=y
|
||||
- LED Support
|
||||
- CONFIG_LEDS_OSRAM_AMS_AS3668=m
|
||||
- CONFIG_LEDS_LP5812=m
|
||||
- Staging drivers
|
||||
- CONFIG_FB_TFT=m
|
||||
- CONFIG_FB_TFT_AGM1264K_FL=m
|
||||
- CONFIG_FB_TFT_BD663474=m
|
||||
- CONFIG_FB_TFT_HX8340BN=m
|
||||
- CONFIG_FB_TFT_HX8347D=m
|
||||
- CONFIG_FB_TFT_HX8353D=m
|
||||
- CONFIG_FB_TFT_HX8357D=m
|
||||
- CONFIG_FB_TFT_ILI9163=m
|
||||
- CONFIG_FB_TFT_ILI9320=m
|
||||
- CONFIG_FB_TFT_ILI9325=m
|
||||
- CONFIG_FB_TFT_ILI9340=m
|
||||
- CONFIG_FB_TFT_ILI9341=m
|
||||
- CONFIG_FB_TFT_ILI9481=m
|
||||
- CONFIG_FB_TFT_ILI9486=m
|
||||
- CONFIG_FB_TFT_PCD8544=m
|
||||
- CONFIG_FB_TFT_RA8875=m
|
||||
- CONFIG_FB_TFT_S6D02A1=m
|
||||
- CONFIG_FB_TFT_S6D1121=m
|
||||
- CONFIG_FB_TFT_SEPS525=m
|
||||
- CONFIG_FB_TFT_SH1106=m
|
||||
- CONFIG_FB_TFT_SSD1289=m
|
||||
- CONFIG_FB_TFT_SSD1305=m
|
||||
- CONFIG_FB_TFT_SSD1306=m
|
||||
- CONFIG_FB_TFT_SSD1331=m
|
||||
- CONFIG_FB_TFT_SSD1351=m
|
||||
- CONFIG_FB_TFT_ST7735R=m
|
||||
- CONFIG_FB_TFT_ST7789V=m
|
||||
- CONFIG_FB_TFT_TINYLCD=m
|
||||
- CONFIG_FB_TFT_TLS8204=m
|
||||
- CONFIG_FB_TFT_UC1611=m
|
||||
- CONFIG_FB_TFT_UC1701=m
|
||||
- CONFIG_FB_TFT_UPD161704=m
|
||||
- Industrial I/O support
|
||||
- CONFIG_ADXL345_I2C=n
|
||||
- CONFIG_ADXL345_SPI=n
|
||||
- CONFIG_AD4062=n
|
||||
- CONFIG_AD4134=n
|
||||
- CONFIG_TI_ADS1018=n
|
||||
- CONFIG_TI_ADS131M02=n
|
||||
- CONFIG_ADL8113=n
|
||||
- CONFIG_MAX22007=n
|
||||
- CONFIG_MCP47FEB02=n
|
||||
- CONFIG_MMC5633=n
|
||||
- CONFIG_ABP2030PA_I2C=n
|
||||
- CONFIG_ABP2030PA_SPI=n
|
||||
- CONFIG_MPRLS0025PA_I2C=n
|
||||
- CONFIG_MPRLS0025PA_SPI=n
|
||||
- misc drivers
|
||||
- CONFIG_PHY_GOOGLE_USB=m
|
||||
- CONFIG_DPLL_REFCNT_TRACKER=n
|
||||
- CONFIG_HID_RAPOO=m
|
||||
- CONFIG_USB_DWC3_GOOGLE=m
|
||||
- CONFIG_IOMMU_DEBUG_PAGEALLOC=n
|
||||
- OF dependent (i386, ppc64le, riscv64)
|
||||
- GPIO_LINE_MUX=m
|
||||
- POWER_SEQUENCING_PCIE_M2=m
|
||||
- i386
|
||||
- REGULATOR_MAX77675=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- ppc64le
|
||||
- INTEL_MEI=n
|
||||
- LOGO_LINUX_VGA16_FILE="drivers/video/logo/logo_linux_vga16.ppm"
|
||||
- LOGO_LINUX_CLUT224_FILE="drivers/video/logo/logo_linux_clut224.ppm"
|
||||
- TRUSTED_KEYS_PKWM=y
|
||||
- s390x
|
||||
- INTEL_MEI=n
|
||||
- s390x/zfcpdump
|
||||
- KEXEC_SIG=y
|
||||
- PKCS8_PRIVATE_KEY_PARSER=y
|
||||
- PKCS7_TEST_KEY=n
|
||||
- SIGNED_PE_FILE_VERIFICATION=y
|
||||
- FIPS_SIGNATURE_SELFTEST=n
|
||||
- SYSTEM_TRUSTED_KEYS=""
|
||||
- SYSTEM_EXTRA_CERTIFICATE=n
|
||||
- SECONDARY_TRUSTED_KEYRING=y
|
||||
- SECONDARY_TRUSTED_KEYRING_SIGNED_BY_BUILTIN=n
|
||||
- riscv64
|
||||
- RISCV_USER_CFI=y
|
||||
- INTEL_MEI=n
|
||||
- SPI_ATCSPI200=m
|
||||
- REGULATOR_MAX77675=m
|
||||
- VIDEO_DW_MIPI_CSI2RX=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- FIRMWARE_EDID=y
|
||||
- SND_SOC_CV1800B_TDM=m
|
||||
- SND_SOC_CV1800B_ADC_CODEC=m
|
||||
- SND_SOC_CV1800B_DAC_CODEC=m
|
||||
- SPACEMIT_K3_CCU=m
|
||||
- RESET_SPACEMIT_K1=m
|
||||
- RESET_SPACEMIT_K3=m
|
||||
- PHY_SPACEMIT_K1_PCIE=m
|
||||
- PHY_SPACEMIT_K1_USB2=m
|
||||
- commit 96fa923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 06:28:12 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.3 (bsc#1012628).
|
||||
- scsi: qla2xxx: Fix bsg_done() causing double free (bsc#1012628).
|
||||
- arm64: dts: mediatek: mt8183: Add missing endpoint IDs to
|
||||
display graph (bsc#1012628).
|
||||
- LoongArch: Rework KASAN initialization for PTW-enabled systems
|
||||
(bsc#1012628).
|
||||
- fbdev: rivafb: fix divide error in nv3_arb() (bsc#1012628).
|
||||
- fbdev: smscufx: properly copy ioctl memory to kernelspace
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to add gc count stat in f2fs_gc_range (bsc#1012628).
|
||||
- f2fs: fix to check sysfs filename w/ gc_pin_file_thresh
|
||||
correctly (bsc#1012628).
|
||||
- f2fs: fix IS_CHECKPOINTED flag inconsistency issue caused by
|
||||
concurrent atomic commit and checkpoint writes (bsc#1012628).
|
||||
- f2fs: fix out-of-bounds access in sysfs attribute read/write
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid UAF in f2fs_write_end_io() (bsc#1012628).
|
||||
- f2fs: support non-4KB block size without packed_ssa feature
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid mapping wrong physical block for swapfile
|
||||
(bsc#1012628).
|
||||
- f2fs: optimize f2fs_overwrite_io() for f2fs_iomap_begin
|
||||
(bsc#1012628).
|
||||
- Revert "f2fs: block cache/dio write during
|
||||
f2fs_enable_checkpoint()" (bsc#1012628).
|
||||
- USB: serial: option: add Telit FN920C04 RNDIS compositions
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
__write_node_folio() (bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
{read,write}_end_io (bsc#1012628).
|
||||
- f2fs: fix incomplete block usage in compact SSA summaries
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.3-014-iommu-arm-smmu-qcom-do-not-register-driver-in-.patch.
|
||||
- commit fcdf9c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 18 15:43:45 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Move upstreamed amdxdna patches into sorted section
|
||||
- commit 787d692
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:36:29 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- iommu/arm-smmu-qcom: do not register driver in probe()
|
||||
(git-fixes).
|
||||
- commit 7b303f4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:47 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.2 (bsc#1012628).
|
||||
- Revert "driver core: enforce device_lock for
|
||||
driver_match_device()" (bsc#1012628).
|
||||
- commit 57aa524
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:02 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.1 (bsc#1012628).
|
||||
- smb: client: split cached_fid bitfields to avoid shared-byte
|
||||
RMW races (bsc#1012628).
|
||||
- ksmbd: fix infinite loop caused by next_smb2_rcv_hdr_off reset
|
||||
in error paths (bsc#1012628).
|
||||
- ksmbd: add chann_lock to protect ksmbd_chann_list xarray
|
||||
(bsc#1012628).
|
||||
- smb: server: fix leak of active_num_conn in
|
||||
ksmbd_tcp_new_connection() (bsc#1012628).
|
||||
- smb: smbdirect: introduce
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: smbdirect: introduce smbdirect_socket.send_io.bcredits.*
|
||||
(bsc#1012628).
|
||||
- smb: server: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: server: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: server: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: server: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: server: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- smb: client: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: client: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: client: let smbd_post_send() make use of request->wr
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->recv_io.credits.count rollback
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->send_io.pending handling in
|
||||
smbd_post_send_iter() (bsc#1012628).
|
||||
- smb: client: port and use the wait_for_credits logic used by
|
||||
server (bsc#1012628).
|
||||
- smb: client: split out smbd_ib_post_send() (bsc#1012628).
|
||||
- smb: client: introduce and use smbd_{alloc, free}_send_io()
|
||||
(bsc#1012628).
|
||||
- smb: client: use smbdirect_send_batch processing (bsc#1012628).
|
||||
- smb: client: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: client: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: client: let smbd_post_send_negotiate_req() use
|
||||
smbd_post_send() (bsc#1012628).
|
||||
- smb: client: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- driver core: enforce device_lock for driver_match_device()
|
||||
(bsc#1012628).
|
||||
- Bluetooth: btusb: Add USB ID 7392:e611 for Edimax EW-7611UXB
|
||||
(bsc#1012628).
|
||||
- ALSA: hda/conexant: Add quirk for HP ZBook Studio G4
|
||||
(bsc#1012628).
|
||||
- crypto: iaa - Fix out-of-bounds index in
|
||||
find_empty_iaa_compression_mode (bsc#1012628).
|
||||
- crypto: octeontx - Fix length check to avoid truncation in
|
||||
ucode_load_store (bsc#1012628).
|
||||
- crypto: omap - Allocate OMAP_CRYPTO_FORCE_COPY scatterlists
|
||||
correctly (bsc#1012628).
|
||||
- crypto: virtio - Add spinlock protection with virtqueue
|
||||
notification (bsc#1012628).
|
||||
- crypto: virtio - Remove duplicated virtqueue_kick in
|
||||
virtio_crypto_skcipher_crypt_req (bsc#1012628).
|
||||
- nilfs2: Fix potential block overflow that cause system hang
|
||||
(bsc#1012628).
|
||||
- hfs: ensure sb->s_fs_info is always cleaned up (bsc#1012628).
|
||||
- wifi: rtw88: Fix alignment fault in rtw_core_enable_beacon()
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Validate sp before freeing associated memory
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Allow recovery for tape devices (bsc#1012628).
|
||||
- scsi: qla2xxx: Delay module unload while fabric scan in progress
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Free sp in error path to fix system crash
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Query FW again before proceeding with login
|
||||
(bsc#1012628).
|
||||
- sched/mmcid: Don't assume CID is CPU owned on mode switch
|
||||
(bsc#1012628).
|
||||
- bus: fsl-mc: fix use-after-free in driver_override_show()
|
||||
(bsc#1012628).
|
||||
- erofs: fix UAF issue for file-backed mounts w/ directio option
|
||||
(bsc#1012628).
|
||||
- xfs: fix UAF in xchk_btree_check_block_owner (bsc#1012628).
|
||||
- drm/exynos: vidi: use ctx->lock to protect struct vidi_context
|
||||
member variables related to memory alloc/free (bsc#1012628).
|
||||
- PCI: endpoint: Avoid creating sub-groups asynchronously
|
||||
(bsc#1012628).
|
||||
- wifi: rtl8xxxu: fix slab-out-of-bounds in rtl8xxxu_sta_add
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-001-io_uring-io-wq-add-exit-on-idle-state.patch.
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-002-io_uring-allow-io-wq-workers-to-exit-when-unus.patch.
|
||||
- commit 2f9cad9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 12 07:11:01 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- io_uring: allow io-wq workers to exit when unused
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- io_uring/io-wq: add exit-on-idle state
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- commit b7d1ad1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:33:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19 final
|
||||
- refresh configs (headers only)
|
||||
- commit 8f6da03
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:31:10 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv6hl configs
|
||||
- option values copied from armv7hl
|
||||
- commit 7ef7460
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:28:36 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv7hl configs
|
||||
- option values copied from arm64 except
|
||||
- MACH_MT6582=y
|
||||
- CLK_RK3506=y
|
||||
- commit e113f66
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:16:37 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable arm64 configs
|
||||
- option values copied from x86_64, i386 and riscv64 except
|
||||
- ARCH_BST=y
|
||||
- ARM64_MPAM=y
|
||||
- PCI_SKY1_HOST=m
|
||||
- PCIE_NXP_S32G=y
|
||||
- CACHEMAINT_FOR_HOTPLUG=y
|
||||
- HISI_SOC_HHA=m
|
||||
- PINCTRL_SKY1=m
|
||||
- PINCTRL_MT6878=y
|
||||
- PINCTRL_KAANAPALI=m
|
||||
- GPIO_SHARED_PROXY=m
|
||||
- CHARGER_BD71828=m
|
||||
- SENSORS_MACSMC_HWMON=m
|
||||
- IMX91_THERMAL=m
|
||||
- VIDEO_ROCKCHIP_CIF=m
|
||||
- DRM_IMX8MP_HDMI_PAI=m
|
||||
- DRM_DW_HDMI_QP_CEC=y
|
||||
- DRM_MEDIATEK_HDMI_V2=m
|
||||
- SND_HDA_CIX_IPBLOQ=m
|
||||
- SND_SOC_MT8189=m
|
||||
- SND_SOC_MT8189_NAU8825=m
|
||||
- USB_DWC3_APPLE=m
|
||||
- SCSI_UFS_AMD_VERSAL2=m
|
||||
- RTC_DRV_MACSMC=m
|
||||
- IPQ_NSSCC_5424=m
|
||||
- SM_VIDEOCC_8750=m
|
||||
- CLK_RV1126B=y
|
||||
- RTK_SYSTIMER=y
|
||||
- MTK_MFG_PM_DOMAIN=y
|
||||
- PWM_AIROHA=m
|
||||
- NVMEM_QNAP_MCU_EEPROM=m
|
||||
- INTERCONNECT_QCOM_KAANAPALI=m
|
||||
- ARM64_MPAM_DRIVER_DEBUG=n
|
||||
- commit 0e2d85d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 13:36:06 CET 2026 - tiwai@suse.de
|
||||
|
||||
- accel/amdxdna: Update firmware version check for latest firmware
|
||||
(bsc#1257724).
|
||||
- accel/amdxdna: Enable temporal sharing only mode (bsc#1257724).
|
||||
- accel/amdxdna: Remove NPU2 support (bsc#1257724).
|
||||
- accel/amdxdna: Remove amdxdna_flush() (bsc#1257724).
|
||||
- commit 6eaf1bb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 12:25:17 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch (bsc#1252084)
|
||||
The upstream didn't release *-101.ucode for some models.
|
||||
- commit 33ced68
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 23:11:15 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc8
|
||||
- commit 41a428c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 26 00:11:33 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc7
|
||||
- drop no longer needed patch (obsoleted by 3f2de814c059)
|
||||
- patches.rpmify/Revert-objtool-fix-build-failure-due-to-missing-libopcodes.patch
|
||||
- update configs
|
||||
- DRM_XE_USERPTR_INVAL_INJECT=n (on i386)
|
||||
- commit 3fe5a20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 21 16:03:32 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- Revert "objtool: fix build failure due to missing libopcodes
|
||||
check".
|
||||
- commit 50c998d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 09:23:32 CET 2026 - jdelvare@suse.com
|
||||
|
||||
- Enable NCT6694 support on x86_64
|
||||
This multi-function device is platform-independent and can be found
|
||||
on both ARM and x86 platforms.
|
||||
- commit e5dd94d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 06:20:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc6
|
||||
- refresh configs
|
||||
- commit e5456de
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 09:08:40 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc5
|
||||
- update configs
|
||||
- MISC_RP1=n (i386)
|
||||
- commit 444cfba
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:10:18 CET 2026 - tiwai@suse.de
|
||||
|
||||
|
||||
@@ -17,9 +17,9 @@
|
||||
# needssslcertforbuild
|
||||
|
||||
|
||||
%define srcversion 6.19-rc4
|
||||
%define patchversion 6.19.0-rc4
|
||||
%define git_commit 53522494ab7628cbd71a32672d6628920ee26bf9
|
||||
%define srcversion 7.0-rc3
|
||||
%define patchversion 7.0.0-rc3
|
||||
%define git_commit 2efdd9cb76be4a8c4edd48301cd80301fc368c3b
|
||||
%define variant %{nil}
|
||||
%define compress_modules zstd
|
||||
%define compress_vmlinux xz
|
||||
@@ -40,9 +40,9 @@
|
||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,arch-symbols,check-module-license,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
|
||||
|
||||
Name: kernel-kvmsmall
|
||||
Version: 6.19~rc4
|
||||
Version: 7.0~rc3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g5352249
|
||||
Release: <RELEASE>.g2efdd9c
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
||||
@@ -1,3 +1,540 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 11:56:41 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.rpmify/certs-Replace-openssl-invocation-with-OPENSSL.patch
|
||||
Improved the patch to allow the alternative openssl more generically
|
||||
- commit 332afe7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 01:13:29 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc3
|
||||
- Delete upstream patch kbuild-Leave-objtool-binary-around-with-make-clean.patch
|
||||
- refresh configs
|
||||
- commit 0e787eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 09:14:17 CET 2026 - msuchanek@suse.de
|
||||
|
||||
- Move dummy openssl from kernel-source to kernel
|
||||
Fixes: eb95320d3295 ("scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)")
|
||||
- commit dd3697c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 14:26:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- certs: Replace openssl invocation with $OPENSSL (bsc#1259065).
|
||||
- commit 104ab06
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:53:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Update config files: re-enable CONFIG_OPENSSL_SUPPORTS_ML_DSA (bsc#1259065)
|
||||
- commit 0bfc1b0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:50:22 CET 2026 - tiwai@suse.de
|
||||
|
||||
- scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)
|
||||
Needed for CONFIG_OPENSSL_SUPPORTS_ML_DSA introduced in 7.0 kernel.
|
||||
- commit eb95320
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 01:08:04 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc2
|
||||
- refresh config files
|
||||
- commit 1b18c75
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 28 13:12:05 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- kbuild: Leave objtool binary around with 'make clean' (kmp-fix).
|
||||
- commit 3f3f246
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 24 08:34:34 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: refresh
|
||||
- commit 440de45
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 17:50:45 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: add OPENSSL_SUPPORTS_ to IGNORED_CONFIGS_RE
|
||||
Config option OPENSSL_SUPPORTS_ML_DSA was introduced by mainline commit
|
||||
0ad9a71933e7 ("modsign: Enable ML-DSA module signing") in 7.0-rc1
|
||||
- commit 21b4616
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 15:51:53 CET 2026 - tzimmermann@suse.com
|
||||
|
||||
- config: Enable coreboot support (bsc#1258262)
|
||||
Enable kernel support for coreboot firmware. Enabling these options
|
||||
provides various interfaces under /sys/firmware/. One of the next
|
||||
releases of the Linux kernel will feature corebootdrm, a dedicated
|
||||
DRM driver for coreboot's system framebuffer. The driver relies on
|
||||
support for coreboot firmware.
|
||||
Leave out s390x and ppc64le, as coreboot apparently does not support
|
||||
them.
|
||||
- commit 14b0853
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:14:56 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 7.0-rc1
|
||||
- drop 77 patches (72 stable, 5 mainline):
|
||||
- patches.kernel.org/*
|
||||
- patches.rpmify/gendwarfksyms-Fix-build-on-32-bit-hosts.patch (ddc54f912a55)
|
||||
- patches.suse/accel-amdxdna-Enable-temporal-sharing-only-mode.patch
|
||||
- patches.suse/accel-amdxdna-Remove-NPU2-support.patch
|
||||
- patches.suse/accel-amdxdna-Remove-amdxdna_flush.patch
|
||||
- patches.suse/accel-amdxdna-Update-firmware-version-check-for-late.patch
|
||||
- refresh
|
||||
- patches.rpmify/btf-pahole-j1-option.patch
|
||||
- patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
|
||||
- patches.suse/Restore-kABI-for-NVidia-vGPU-driver.patch
|
||||
- patches.suse/btrfs-provide-super_operations-get_inode_dev
|
||||
- patches.suse/iwlwifi-declare-missing-firmware-files.patch
|
||||
- patches.suse/vfs-add-super_operations-get_inode_dev
|
||||
- patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch
|
||||
- disable ARM architectures (need config update)
|
||||
- new config options
|
||||
- General setup
|
||||
- CONFIG_RSEQ_SLICE_EXTENSION=n
|
||||
- Memory Management options
|
||||
- CONFIG_BALLOON_MIGRATION=y
|
||||
- Networking support
|
||||
- CONFIG_NET_DSA_TAG_MXL_862XX=m
|
||||
- File systems
|
||||
- CONFIG_EROFS_FS_PAGE_CACHE_SHARE=n
|
||||
- CONFIG_NFS_V4_0=n
|
||||
- CONFIG_NFSD_V4_POSIX_ACLS=n
|
||||
- Cryptographic API
|
||||
- CONFIG_CRYPTO_MLDSA=m
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_44=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_65=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_87=n
|
||||
- Kernel hacking
|
||||
- CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=0
|
||||
- CONFIG_BOOTPARAM_WQ_STALL_PANIC=0
|
||||
- CONFIG_DEBUG_ATOMIC=n
|
||||
- CONFIG_CONTEXT_ANALYSIS_TEST=n
|
||||
- Cryptographic API
|
||||
- CONFIG_PKCS7_WAIVE_AUTHATTRS_REJECTION_FOR_MLDSA=n
|
||||
- Network device support
|
||||
- CONFIG_NET_DSA_MXL862=m
|
||||
- CONFIG_DWMAC_MOTORCOMM=m
|
||||
- Hardware Monitoring support
|
||||
- CONFIG_SENSORS_HAC300S=m
|
||||
- CONFIG_SENSORS_MP5926=m
|
||||
- CONFIG_SENSORS_STEF48H28=m
|
||||
- Voltage and Current Regulator Support
|
||||
- CONFIG_REGULATOR_RT8092=m
|
||||
- CONFIG_REGULATOR_TPS65185=m
|
||||
- Multimedia support
|
||||
- CONFIG_VIDEO_OS05B10=m
|
||||
- CONFIG_VIDEO_S5K3M5=m
|
||||
- CONFIG_VIDEO_S5KJN1=m
|
||||
- Graphics support
|
||||
- CONFIG_DRM_ST7571=m
|
||||
- CONFIG_DRM_ST7571_SPI=m
|
||||
- CONFIG_DRM_ST7920=m
|
||||
- Sound card support
|
||||
- CONFIG_SND_SOC_RT5575=m
|
||||
- CONFIG_SND_SOC_RT5575_SPI=y
|
||||
- LED Support
|
||||
- CONFIG_LEDS_OSRAM_AMS_AS3668=m
|
||||
- CONFIG_LEDS_LP5812=m
|
||||
- Staging drivers
|
||||
- CONFIG_FB_TFT=m
|
||||
- CONFIG_FB_TFT_AGM1264K_FL=m
|
||||
- CONFIG_FB_TFT_BD663474=m
|
||||
- CONFIG_FB_TFT_HX8340BN=m
|
||||
- CONFIG_FB_TFT_HX8347D=m
|
||||
- CONFIG_FB_TFT_HX8353D=m
|
||||
- CONFIG_FB_TFT_HX8357D=m
|
||||
- CONFIG_FB_TFT_ILI9163=m
|
||||
- CONFIG_FB_TFT_ILI9320=m
|
||||
- CONFIG_FB_TFT_ILI9325=m
|
||||
- CONFIG_FB_TFT_ILI9340=m
|
||||
- CONFIG_FB_TFT_ILI9341=m
|
||||
- CONFIG_FB_TFT_ILI9481=m
|
||||
- CONFIG_FB_TFT_ILI9486=m
|
||||
- CONFIG_FB_TFT_PCD8544=m
|
||||
- CONFIG_FB_TFT_RA8875=m
|
||||
- CONFIG_FB_TFT_S6D02A1=m
|
||||
- CONFIG_FB_TFT_S6D1121=m
|
||||
- CONFIG_FB_TFT_SEPS525=m
|
||||
- CONFIG_FB_TFT_SH1106=m
|
||||
- CONFIG_FB_TFT_SSD1289=m
|
||||
- CONFIG_FB_TFT_SSD1305=m
|
||||
- CONFIG_FB_TFT_SSD1306=m
|
||||
- CONFIG_FB_TFT_SSD1331=m
|
||||
- CONFIG_FB_TFT_SSD1351=m
|
||||
- CONFIG_FB_TFT_ST7735R=m
|
||||
- CONFIG_FB_TFT_ST7789V=m
|
||||
- CONFIG_FB_TFT_TINYLCD=m
|
||||
- CONFIG_FB_TFT_TLS8204=m
|
||||
- CONFIG_FB_TFT_UC1611=m
|
||||
- CONFIG_FB_TFT_UC1701=m
|
||||
- CONFIG_FB_TFT_UPD161704=m
|
||||
- Industrial I/O support
|
||||
- CONFIG_ADXL345_I2C=n
|
||||
- CONFIG_ADXL345_SPI=n
|
||||
- CONFIG_AD4062=n
|
||||
- CONFIG_AD4134=n
|
||||
- CONFIG_TI_ADS1018=n
|
||||
- CONFIG_TI_ADS131M02=n
|
||||
- CONFIG_ADL8113=n
|
||||
- CONFIG_MAX22007=n
|
||||
- CONFIG_MCP47FEB02=n
|
||||
- CONFIG_MMC5633=n
|
||||
- CONFIG_ABP2030PA_I2C=n
|
||||
- CONFIG_ABP2030PA_SPI=n
|
||||
- CONFIG_MPRLS0025PA_I2C=n
|
||||
- CONFIG_MPRLS0025PA_SPI=n
|
||||
- misc drivers
|
||||
- CONFIG_PHY_GOOGLE_USB=m
|
||||
- CONFIG_DPLL_REFCNT_TRACKER=n
|
||||
- CONFIG_HID_RAPOO=m
|
||||
- CONFIG_USB_DWC3_GOOGLE=m
|
||||
- CONFIG_IOMMU_DEBUG_PAGEALLOC=n
|
||||
- OF dependent (i386, ppc64le, riscv64)
|
||||
- GPIO_LINE_MUX=m
|
||||
- POWER_SEQUENCING_PCIE_M2=m
|
||||
- i386
|
||||
- REGULATOR_MAX77675=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- ppc64le
|
||||
- INTEL_MEI=n
|
||||
- LOGO_LINUX_VGA16_FILE="drivers/video/logo/logo_linux_vga16.ppm"
|
||||
- LOGO_LINUX_CLUT224_FILE="drivers/video/logo/logo_linux_clut224.ppm"
|
||||
- TRUSTED_KEYS_PKWM=y
|
||||
- s390x
|
||||
- INTEL_MEI=n
|
||||
- s390x/zfcpdump
|
||||
- KEXEC_SIG=y
|
||||
- PKCS8_PRIVATE_KEY_PARSER=y
|
||||
- PKCS7_TEST_KEY=n
|
||||
- SIGNED_PE_FILE_VERIFICATION=y
|
||||
- FIPS_SIGNATURE_SELFTEST=n
|
||||
- SYSTEM_TRUSTED_KEYS=""
|
||||
- SYSTEM_EXTRA_CERTIFICATE=n
|
||||
- SECONDARY_TRUSTED_KEYRING=y
|
||||
- SECONDARY_TRUSTED_KEYRING_SIGNED_BY_BUILTIN=n
|
||||
- riscv64
|
||||
- RISCV_USER_CFI=y
|
||||
- INTEL_MEI=n
|
||||
- SPI_ATCSPI200=m
|
||||
- REGULATOR_MAX77675=m
|
||||
- VIDEO_DW_MIPI_CSI2RX=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- FIRMWARE_EDID=y
|
||||
- SND_SOC_CV1800B_TDM=m
|
||||
- SND_SOC_CV1800B_ADC_CODEC=m
|
||||
- SND_SOC_CV1800B_DAC_CODEC=m
|
||||
- SPACEMIT_K3_CCU=m
|
||||
- RESET_SPACEMIT_K1=m
|
||||
- RESET_SPACEMIT_K3=m
|
||||
- PHY_SPACEMIT_K1_PCIE=m
|
||||
- PHY_SPACEMIT_K1_USB2=m
|
||||
- commit 96fa923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 06:28:12 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.3 (bsc#1012628).
|
||||
- scsi: qla2xxx: Fix bsg_done() causing double free (bsc#1012628).
|
||||
- arm64: dts: mediatek: mt8183: Add missing endpoint IDs to
|
||||
display graph (bsc#1012628).
|
||||
- LoongArch: Rework KASAN initialization for PTW-enabled systems
|
||||
(bsc#1012628).
|
||||
- fbdev: rivafb: fix divide error in nv3_arb() (bsc#1012628).
|
||||
- fbdev: smscufx: properly copy ioctl memory to kernelspace
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to add gc count stat in f2fs_gc_range (bsc#1012628).
|
||||
- f2fs: fix to check sysfs filename w/ gc_pin_file_thresh
|
||||
correctly (bsc#1012628).
|
||||
- f2fs: fix IS_CHECKPOINTED flag inconsistency issue caused by
|
||||
concurrent atomic commit and checkpoint writes (bsc#1012628).
|
||||
- f2fs: fix out-of-bounds access in sysfs attribute read/write
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid UAF in f2fs_write_end_io() (bsc#1012628).
|
||||
- f2fs: support non-4KB block size without packed_ssa feature
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid mapping wrong physical block for swapfile
|
||||
(bsc#1012628).
|
||||
- f2fs: optimize f2fs_overwrite_io() for f2fs_iomap_begin
|
||||
(bsc#1012628).
|
||||
- Revert "f2fs: block cache/dio write during
|
||||
f2fs_enable_checkpoint()" (bsc#1012628).
|
||||
- USB: serial: option: add Telit FN920C04 RNDIS compositions
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
__write_node_folio() (bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
{read,write}_end_io (bsc#1012628).
|
||||
- f2fs: fix incomplete block usage in compact SSA summaries
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.3-014-iommu-arm-smmu-qcom-do-not-register-driver-in-.patch.
|
||||
- commit fcdf9c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 18 15:43:45 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Move upstreamed amdxdna patches into sorted section
|
||||
- commit 787d692
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:36:29 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- iommu/arm-smmu-qcom: do not register driver in probe()
|
||||
(git-fixes).
|
||||
- commit 7b303f4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:47 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.2 (bsc#1012628).
|
||||
- Revert "driver core: enforce device_lock for
|
||||
driver_match_device()" (bsc#1012628).
|
||||
- commit 57aa524
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:02 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.1 (bsc#1012628).
|
||||
- smb: client: split cached_fid bitfields to avoid shared-byte
|
||||
RMW races (bsc#1012628).
|
||||
- ksmbd: fix infinite loop caused by next_smb2_rcv_hdr_off reset
|
||||
in error paths (bsc#1012628).
|
||||
- ksmbd: add chann_lock to protect ksmbd_chann_list xarray
|
||||
(bsc#1012628).
|
||||
- smb: server: fix leak of active_num_conn in
|
||||
ksmbd_tcp_new_connection() (bsc#1012628).
|
||||
- smb: smbdirect: introduce
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: smbdirect: introduce smbdirect_socket.send_io.bcredits.*
|
||||
(bsc#1012628).
|
||||
- smb: server: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: server: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: server: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: server: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: server: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- smb: client: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: client: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: client: let smbd_post_send() make use of request->wr
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->recv_io.credits.count rollback
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->send_io.pending handling in
|
||||
smbd_post_send_iter() (bsc#1012628).
|
||||
- smb: client: port and use the wait_for_credits logic used by
|
||||
server (bsc#1012628).
|
||||
- smb: client: split out smbd_ib_post_send() (bsc#1012628).
|
||||
- smb: client: introduce and use smbd_{alloc, free}_send_io()
|
||||
(bsc#1012628).
|
||||
- smb: client: use smbdirect_send_batch processing (bsc#1012628).
|
||||
- smb: client: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: client: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: client: let smbd_post_send_negotiate_req() use
|
||||
smbd_post_send() (bsc#1012628).
|
||||
- smb: client: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- driver core: enforce device_lock for driver_match_device()
|
||||
(bsc#1012628).
|
||||
- Bluetooth: btusb: Add USB ID 7392:e611 for Edimax EW-7611UXB
|
||||
(bsc#1012628).
|
||||
- ALSA: hda/conexant: Add quirk for HP ZBook Studio G4
|
||||
(bsc#1012628).
|
||||
- crypto: iaa - Fix out-of-bounds index in
|
||||
find_empty_iaa_compression_mode (bsc#1012628).
|
||||
- crypto: octeontx - Fix length check to avoid truncation in
|
||||
ucode_load_store (bsc#1012628).
|
||||
- crypto: omap - Allocate OMAP_CRYPTO_FORCE_COPY scatterlists
|
||||
correctly (bsc#1012628).
|
||||
- crypto: virtio - Add spinlock protection with virtqueue
|
||||
notification (bsc#1012628).
|
||||
- crypto: virtio - Remove duplicated virtqueue_kick in
|
||||
virtio_crypto_skcipher_crypt_req (bsc#1012628).
|
||||
- nilfs2: Fix potential block overflow that cause system hang
|
||||
(bsc#1012628).
|
||||
- hfs: ensure sb->s_fs_info is always cleaned up (bsc#1012628).
|
||||
- wifi: rtw88: Fix alignment fault in rtw_core_enable_beacon()
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Validate sp before freeing associated memory
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Allow recovery for tape devices (bsc#1012628).
|
||||
- scsi: qla2xxx: Delay module unload while fabric scan in progress
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Free sp in error path to fix system crash
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Query FW again before proceeding with login
|
||||
(bsc#1012628).
|
||||
- sched/mmcid: Don't assume CID is CPU owned on mode switch
|
||||
(bsc#1012628).
|
||||
- bus: fsl-mc: fix use-after-free in driver_override_show()
|
||||
(bsc#1012628).
|
||||
- erofs: fix UAF issue for file-backed mounts w/ directio option
|
||||
(bsc#1012628).
|
||||
- xfs: fix UAF in xchk_btree_check_block_owner (bsc#1012628).
|
||||
- drm/exynos: vidi: use ctx->lock to protect struct vidi_context
|
||||
member variables related to memory alloc/free (bsc#1012628).
|
||||
- PCI: endpoint: Avoid creating sub-groups asynchronously
|
||||
(bsc#1012628).
|
||||
- wifi: rtl8xxxu: fix slab-out-of-bounds in rtl8xxxu_sta_add
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-001-io_uring-io-wq-add-exit-on-idle-state.patch.
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-002-io_uring-allow-io-wq-workers-to-exit-when-unus.patch.
|
||||
- commit 2f9cad9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 12 07:11:01 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- io_uring: allow io-wq workers to exit when unused
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- io_uring/io-wq: add exit-on-idle state
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- commit b7d1ad1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:33:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19 final
|
||||
- refresh configs (headers only)
|
||||
- commit 8f6da03
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:31:10 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv6hl configs
|
||||
- option values copied from armv7hl
|
||||
- commit 7ef7460
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:28:36 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv7hl configs
|
||||
- option values copied from arm64 except
|
||||
- MACH_MT6582=y
|
||||
- CLK_RK3506=y
|
||||
- commit e113f66
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:16:37 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable arm64 configs
|
||||
- option values copied from x86_64, i386 and riscv64 except
|
||||
- ARCH_BST=y
|
||||
- ARM64_MPAM=y
|
||||
- PCI_SKY1_HOST=m
|
||||
- PCIE_NXP_S32G=y
|
||||
- CACHEMAINT_FOR_HOTPLUG=y
|
||||
- HISI_SOC_HHA=m
|
||||
- PINCTRL_SKY1=m
|
||||
- PINCTRL_MT6878=y
|
||||
- PINCTRL_KAANAPALI=m
|
||||
- GPIO_SHARED_PROXY=m
|
||||
- CHARGER_BD71828=m
|
||||
- SENSORS_MACSMC_HWMON=m
|
||||
- IMX91_THERMAL=m
|
||||
- VIDEO_ROCKCHIP_CIF=m
|
||||
- DRM_IMX8MP_HDMI_PAI=m
|
||||
- DRM_DW_HDMI_QP_CEC=y
|
||||
- DRM_MEDIATEK_HDMI_V2=m
|
||||
- SND_HDA_CIX_IPBLOQ=m
|
||||
- SND_SOC_MT8189=m
|
||||
- SND_SOC_MT8189_NAU8825=m
|
||||
- USB_DWC3_APPLE=m
|
||||
- SCSI_UFS_AMD_VERSAL2=m
|
||||
- RTC_DRV_MACSMC=m
|
||||
- IPQ_NSSCC_5424=m
|
||||
- SM_VIDEOCC_8750=m
|
||||
- CLK_RV1126B=y
|
||||
- RTK_SYSTIMER=y
|
||||
- MTK_MFG_PM_DOMAIN=y
|
||||
- PWM_AIROHA=m
|
||||
- NVMEM_QNAP_MCU_EEPROM=m
|
||||
- INTERCONNECT_QCOM_KAANAPALI=m
|
||||
- ARM64_MPAM_DRIVER_DEBUG=n
|
||||
- commit 0e2d85d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 13:36:06 CET 2026 - tiwai@suse.de
|
||||
|
||||
- accel/amdxdna: Update firmware version check for latest firmware
|
||||
(bsc#1257724).
|
||||
- accel/amdxdna: Enable temporal sharing only mode (bsc#1257724).
|
||||
- accel/amdxdna: Remove NPU2 support (bsc#1257724).
|
||||
- accel/amdxdna: Remove amdxdna_flush() (bsc#1257724).
|
||||
- commit 6eaf1bb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 12:25:17 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch (bsc#1252084)
|
||||
The upstream didn't release *-101.ucode for some models.
|
||||
- commit 33ced68
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 23:11:15 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc8
|
||||
- commit 41a428c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 26 00:11:33 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc7
|
||||
- drop no longer needed patch (obsoleted by 3f2de814c059)
|
||||
- patches.rpmify/Revert-objtool-fix-build-failure-due-to-missing-libopcodes.patch
|
||||
- update configs
|
||||
- DRM_XE_USERPTR_INVAL_INJECT=n (on i386)
|
||||
- commit 3fe5a20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 21 16:03:32 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- Revert "objtool: fix build failure due to missing libopcodes
|
||||
check".
|
||||
- commit 50c998d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 09:23:32 CET 2026 - jdelvare@suse.com
|
||||
|
||||
- Enable NCT6694 support on x86_64
|
||||
This multi-function device is platform-independent and can be found
|
||||
on both ARM and x86 platforms.
|
||||
- commit e5dd94d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 06:20:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc6
|
||||
- refresh configs
|
||||
- commit e5456de
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 09:08:40 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc5
|
||||
- update configs
|
||||
- MISC_RP1=n (i386)
|
||||
- commit 444cfba
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:10:18 CET 2026 - tiwai@suse.de
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
|
||||
#!BuildIgnore: post-build-checks
|
||||
|
||||
%define patchversion 6.19.0-rc4
|
||||
%define patchversion 7.0.0-rc3
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
@@ -38,23 +38,23 @@
|
||||
%endif
|
||||
%endif
|
||||
%endif
|
||||
%global kernel_package kernel%kernel_flavor-srchash-53522494ab7628cbd71a32672d6628920ee26bf9
|
||||
%global kernel_package kernel%kernel_flavor-srchash-2efdd9cb76be4a8c4edd48301cd80301fc368c3b
|
||||
%endif
|
||||
%if 0%{?rhel_version}
|
||||
%global kernel_package kernel
|
||||
%endif
|
||||
|
||||
Name: kernel-obs-build
|
||||
Version: 6.19~rc4
|
||||
Version: 7.0~rc3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g5352249
|
||||
Release: <RELEASE>.g2efdd9c
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
Summary: package kernel and initrd for OBS VM builds
|
||||
License: GPL-2.0-only
|
||||
Group: SLES
|
||||
Provides: kernel-obs-build-srchash-53522494ab7628cbd71a32672d6628920ee26bf9
|
||||
Provides: kernel-obs-build-srchash-2efdd9cb76be4a8c4edd48301cd80301fc368c3b
|
||||
BuildRequires: coreutils
|
||||
BuildRequires: device-mapper
|
||||
BuildRequires: dracut
|
||||
|
||||
@@ -1,3 +1,540 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 11:56:41 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.rpmify/certs-Replace-openssl-invocation-with-OPENSSL.patch
|
||||
Improved the patch to allow the alternative openssl more generically
|
||||
- commit 332afe7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 01:13:29 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc3
|
||||
- Delete upstream patch kbuild-Leave-objtool-binary-around-with-make-clean.patch
|
||||
- refresh configs
|
||||
- commit 0e787eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 09:14:17 CET 2026 - msuchanek@suse.de
|
||||
|
||||
- Move dummy openssl from kernel-source to kernel
|
||||
Fixes: eb95320d3295 ("scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)")
|
||||
- commit dd3697c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 14:26:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- certs: Replace openssl invocation with $OPENSSL (bsc#1259065).
|
||||
- commit 104ab06
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:53:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Update config files: re-enable CONFIG_OPENSSL_SUPPORTS_ML_DSA (bsc#1259065)
|
||||
- commit 0bfc1b0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:50:22 CET 2026 - tiwai@suse.de
|
||||
|
||||
- scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)
|
||||
Needed for CONFIG_OPENSSL_SUPPORTS_ML_DSA introduced in 7.0 kernel.
|
||||
- commit eb95320
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 01:08:04 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc2
|
||||
- refresh config files
|
||||
- commit 1b18c75
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 28 13:12:05 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- kbuild: Leave objtool binary around with 'make clean' (kmp-fix).
|
||||
- commit 3f3f246
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 24 08:34:34 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: refresh
|
||||
- commit 440de45
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 17:50:45 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: add OPENSSL_SUPPORTS_ to IGNORED_CONFIGS_RE
|
||||
Config option OPENSSL_SUPPORTS_ML_DSA was introduced by mainline commit
|
||||
0ad9a71933e7 ("modsign: Enable ML-DSA module signing") in 7.0-rc1
|
||||
- commit 21b4616
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 15:51:53 CET 2026 - tzimmermann@suse.com
|
||||
|
||||
- config: Enable coreboot support (bsc#1258262)
|
||||
Enable kernel support for coreboot firmware. Enabling these options
|
||||
provides various interfaces under /sys/firmware/. One of the next
|
||||
releases of the Linux kernel will feature corebootdrm, a dedicated
|
||||
DRM driver for coreboot's system framebuffer. The driver relies on
|
||||
support for coreboot firmware.
|
||||
Leave out s390x and ppc64le, as coreboot apparently does not support
|
||||
them.
|
||||
- commit 14b0853
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:14:56 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 7.0-rc1
|
||||
- drop 77 patches (72 stable, 5 mainline):
|
||||
- patches.kernel.org/*
|
||||
- patches.rpmify/gendwarfksyms-Fix-build-on-32-bit-hosts.patch (ddc54f912a55)
|
||||
- patches.suse/accel-amdxdna-Enable-temporal-sharing-only-mode.patch
|
||||
- patches.suse/accel-amdxdna-Remove-NPU2-support.patch
|
||||
- patches.suse/accel-amdxdna-Remove-amdxdna_flush.patch
|
||||
- patches.suse/accel-amdxdna-Update-firmware-version-check-for-late.patch
|
||||
- refresh
|
||||
- patches.rpmify/btf-pahole-j1-option.patch
|
||||
- patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
|
||||
- patches.suse/Restore-kABI-for-NVidia-vGPU-driver.patch
|
||||
- patches.suse/btrfs-provide-super_operations-get_inode_dev
|
||||
- patches.suse/iwlwifi-declare-missing-firmware-files.patch
|
||||
- patches.suse/vfs-add-super_operations-get_inode_dev
|
||||
- patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch
|
||||
- disable ARM architectures (need config update)
|
||||
- new config options
|
||||
- General setup
|
||||
- CONFIG_RSEQ_SLICE_EXTENSION=n
|
||||
- Memory Management options
|
||||
- CONFIG_BALLOON_MIGRATION=y
|
||||
- Networking support
|
||||
- CONFIG_NET_DSA_TAG_MXL_862XX=m
|
||||
- File systems
|
||||
- CONFIG_EROFS_FS_PAGE_CACHE_SHARE=n
|
||||
- CONFIG_NFS_V4_0=n
|
||||
- CONFIG_NFSD_V4_POSIX_ACLS=n
|
||||
- Cryptographic API
|
||||
- CONFIG_CRYPTO_MLDSA=m
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_44=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_65=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_87=n
|
||||
- Kernel hacking
|
||||
- CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=0
|
||||
- CONFIG_BOOTPARAM_WQ_STALL_PANIC=0
|
||||
- CONFIG_DEBUG_ATOMIC=n
|
||||
- CONFIG_CONTEXT_ANALYSIS_TEST=n
|
||||
- Cryptographic API
|
||||
- CONFIG_PKCS7_WAIVE_AUTHATTRS_REJECTION_FOR_MLDSA=n
|
||||
- Network device support
|
||||
- CONFIG_NET_DSA_MXL862=m
|
||||
- CONFIG_DWMAC_MOTORCOMM=m
|
||||
- Hardware Monitoring support
|
||||
- CONFIG_SENSORS_HAC300S=m
|
||||
- CONFIG_SENSORS_MP5926=m
|
||||
- CONFIG_SENSORS_STEF48H28=m
|
||||
- Voltage and Current Regulator Support
|
||||
- CONFIG_REGULATOR_RT8092=m
|
||||
- CONFIG_REGULATOR_TPS65185=m
|
||||
- Multimedia support
|
||||
- CONFIG_VIDEO_OS05B10=m
|
||||
- CONFIG_VIDEO_S5K3M5=m
|
||||
- CONFIG_VIDEO_S5KJN1=m
|
||||
- Graphics support
|
||||
- CONFIG_DRM_ST7571=m
|
||||
- CONFIG_DRM_ST7571_SPI=m
|
||||
- CONFIG_DRM_ST7920=m
|
||||
- Sound card support
|
||||
- CONFIG_SND_SOC_RT5575=m
|
||||
- CONFIG_SND_SOC_RT5575_SPI=y
|
||||
- LED Support
|
||||
- CONFIG_LEDS_OSRAM_AMS_AS3668=m
|
||||
- CONFIG_LEDS_LP5812=m
|
||||
- Staging drivers
|
||||
- CONFIG_FB_TFT=m
|
||||
- CONFIG_FB_TFT_AGM1264K_FL=m
|
||||
- CONFIG_FB_TFT_BD663474=m
|
||||
- CONFIG_FB_TFT_HX8340BN=m
|
||||
- CONFIG_FB_TFT_HX8347D=m
|
||||
- CONFIG_FB_TFT_HX8353D=m
|
||||
- CONFIG_FB_TFT_HX8357D=m
|
||||
- CONFIG_FB_TFT_ILI9163=m
|
||||
- CONFIG_FB_TFT_ILI9320=m
|
||||
- CONFIG_FB_TFT_ILI9325=m
|
||||
- CONFIG_FB_TFT_ILI9340=m
|
||||
- CONFIG_FB_TFT_ILI9341=m
|
||||
- CONFIG_FB_TFT_ILI9481=m
|
||||
- CONFIG_FB_TFT_ILI9486=m
|
||||
- CONFIG_FB_TFT_PCD8544=m
|
||||
- CONFIG_FB_TFT_RA8875=m
|
||||
- CONFIG_FB_TFT_S6D02A1=m
|
||||
- CONFIG_FB_TFT_S6D1121=m
|
||||
- CONFIG_FB_TFT_SEPS525=m
|
||||
- CONFIG_FB_TFT_SH1106=m
|
||||
- CONFIG_FB_TFT_SSD1289=m
|
||||
- CONFIG_FB_TFT_SSD1305=m
|
||||
- CONFIG_FB_TFT_SSD1306=m
|
||||
- CONFIG_FB_TFT_SSD1331=m
|
||||
- CONFIG_FB_TFT_SSD1351=m
|
||||
- CONFIG_FB_TFT_ST7735R=m
|
||||
- CONFIG_FB_TFT_ST7789V=m
|
||||
- CONFIG_FB_TFT_TINYLCD=m
|
||||
- CONFIG_FB_TFT_TLS8204=m
|
||||
- CONFIG_FB_TFT_UC1611=m
|
||||
- CONFIG_FB_TFT_UC1701=m
|
||||
- CONFIG_FB_TFT_UPD161704=m
|
||||
- Industrial I/O support
|
||||
- CONFIG_ADXL345_I2C=n
|
||||
- CONFIG_ADXL345_SPI=n
|
||||
- CONFIG_AD4062=n
|
||||
- CONFIG_AD4134=n
|
||||
- CONFIG_TI_ADS1018=n
|
||||
- CONFIG_TI_ADS131M02=n
|
||||
- CONFIG_ADL8113=n
|
||||
- CONFIG_MAX22007=n
|
||||
- CONFIG_MCP47FEB02=n
|
||||
- CONFIG_MMC5633=n
|
||||
- CONFIG_ABP2030PA_I2C=n
|
||||
- CONFIG_ABP2030PA_SPI=n
|
||||
- CONFIG_MPRLS0025PA_I2C=n
|
||||
- CONFIG_MPRLS0025PA_SPI=n
|
||||
- misc drivers
|
||||
- CONFIG_PHY_GOOGLE_USB=m
|
||||
- CONFIG_DPLL_REFCNT_TRACKER=n
|
||||
- CONFIG_HID_RAPOO=m
|
||||
- CONFIG_USB_DWC3_GOOGLE=m
|
||||
- CONFIG_IOMMU_DEBUG_PAGEALLOC=n
|
||||
- OF dependent (i386, ppc64le, riscv64)
|
||||
- GPIO_LINE_MUX=m
|
||||
- POWER_SEQUENCING_PCIE_M2=m
|
||||
- i386
|
||||
- REGULATOR_MAX77675=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- ppc64le
|
||||
- INTEL_MEI=n
|
||||
- LOGO_LINUX_VGA16_FILE="drivers/video/logo/logo_linux_vga16.ppm"
|
||||
- LOGO_LINUX_CLUT224_FILE="drivers/video/logo/logo_linux_clut224.ppm"
|
||||
- TRUSTED_KEYS_PKWM=y
|
||||
- s390x
|
||||
- INTEL_MEI=n
|
||||
- s390x/zfcpdump
|
||||
- KEXEC_SIG=y
|
||||
- PKCS8_PRIVATE_KEY_PARSER=y
|
||||
- PKCS7_TEST_KEY=n
|
||||
- SIGNED_PE_FILE_VERIFICATION=y
|
||||
- FIPS_SIGNATURE_SELFTEST=n
|
||||
- SYSTEM_TRUSTED_KEYS=""
|
||||
- SYSTEM_EXTRA_CERTIFICATE=n
|
||||
- SECONDARY_TRUSTED_KEYRING=y
|
||||
- SECONDARY_TRUSTED_KEYRING_SIGNED_BY_BUILTIN=n
|
||||
- riscv64
|
||||
- RISCV_USER_CFI=y
|
||||
- INTEL_MEI=n
|
||||
- SPI_ATCSPI200=m
|
||||
- REGULATOR_MAX77675=m
|
||||
- VIDEO_DW_MIPI_CSI2RX=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- FIRMWARE_EDID=y
|
||||
- SND_SOC_CV1800B_TDM=m
|
||||
- SND_SOC_CV1800B_ADC_CODEC=m
|
||||
- SND_SOC_CV1800B_DAC_CODEC=m
|
||||
- SPACEMIT_K3_CCU=m
|
||||
- RESET_SPACEMIT_K1=m
|
||||
- RESET_SPACEMIT_K3=m
|
||||
- PHY_SPACEMIT_K1_PCIE=m
|
||||
- PHY_SPACEMIT_K1_USB2=m
|
||||
- commit 96fa923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 06:28:12 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.3 (bsc#1012628).
|
||||
- scsi: qla2xxx: Fix bsg_done() causing double free (bsc#1012628).
|
||||
- arm64: dts: mediatek: mt8183: Add missing endpoint IDs to
|
||||
display graph (bsc#1012628).
|
||||
- LoongArch: Rework KASAN initialization for PTW-enabled systems
|
||||
(bsc#1012628).
|
||||
- fbdev: rivafb: fix divide error in nv3_arb() (bsc#1012628).
|
||||
- fbdev: smscufx: properly copy ioctl memory to kernelspace
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to add gc count stat in f2fs_gc_range (bsc#1012628).
|
||||
- f2fs: fix to check sysfs filename w/ gc_pin_file_thresh
|
||||
correctly (bsc#1012628).
|
||||
- f2fs: fix IS_CHECKPOINTED flag inconsistency issue caused by
|
||||
concurrent atomic commit and checkpoint writes (bsc#1012628).
|
||||
- f2fs: fix out-of-bounds access in sysfs attribute read/write
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid UAF in f2fs_write_end_io() (bsc#1012628).
|
||||
- f2fs: support non-4KB block size without packed_ssa feature
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid mapping wrong physical block for swapfile
|
||||
(bsc#1012628).
|
||||
- f2fs: optimize f2fs_overwrite_io() for f2fs_iomap_begin
|
||||
(bsc#1012628).
|
||||
- Revert "f2fs: block cache/dio write during
|
||||
f2fs_enable_checkpoint()" (bsc#1012628).
|
||||
- USB: serial: option: add Telit FN920C04 RNDIS compositions
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
__write_node_folio() (bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
{read,write}_end_io (bsc#1012628).
|
||||
- f2fs: fix incomplete block usage in compact SSA summaries
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.3-014-iommu-arm-smmu-qcom-do-not-register-driver-in-.patch.
|
||||
- commit fcdf9c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 18 15:43:45 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Move upstreamed amdxdna patches into sorted section
|
||||
- commit 787d692
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:36:29 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- iommu/arm-smmu-qcom: do not register driver in probe()
|
||||
(git-fixes).
|
||||
- commit 7b303f4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:47 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.2 (bsc#1012628).
|
||||
- Revert "driver core: enforce device_lock for
|
||||
driver_match_device()" (bsc#1012628).
|
||||
- commit 57aa524
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:02 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.1 (bsc#1012628).
|
||||
- smb: client: split cached_fid bitfields to avoid shared-byte
|
||||
RMW races (bsc#1012628).
|
||||
- ksmbd: fix infinite loop caused by next_smb2_rcv_hdr_off reset
|
||||
in error paths (bsc#1012628).
|
||||
- ksmbd: add chann_lock to protect ksmbd_chann_list xarray
|
||||
(bsc#1012628).
|
||||
- smb: server: fix leak of active_num_conn in
|
||||
ksmbd_tcp_new_connection() (bsc#1012628).
|
||||
- smb: smbdirect: introduce
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: smbdirect: introduce smbdirect_socket.send_io.bcredits.*
|
||||
(bsc#1012628).
|
||||
- smb: server: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: server: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: server: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: server: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: server: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- smb: client: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: client: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: client: let smbd_post_send() make use of request->wr
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->recv_io.credits.count rollback
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->send_io.pending handling in
|
||||
smbd_post_send_iter() (bsc#1012628).
|
||||
- smb: client: port and use the wait_for_credits logic used by
|
||||
server (bsc#1012628).
|
||||
- smb: client: split out smbd_ib_post_send() (bsc#1012628).
|
||||
- smb: client: introduce and use smbd_{alloc, free}_send_io()
|
||||
(bsc#1012628).
|
||||
- smb: client: use smbdirect_send_batch processing (bsc#1012628).
|
||||
- smb: client: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: client: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: client: let smbd_post_send_negotiate_req() use
|
||||
smbd_post_send() (bsc#1012628).
|
||||
- smb: client: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- driver core: enforce device_lock for driver_match_device()
|
||||
(bsc#1012628).
|
||||
- Bluetooth: btusb: Add USB ID 7392:e611 for Edimax EW-7611UXB
|
||||
(bsc#1012628).
|
||||
- ALSA: hda/conexant: Add quirk for HP ZBook Studio G4
|
||||
(bsc#1012628).
|
||||
- crypto: iaa - Fix out-of-bounds index in
|
||||
find_empty_iaa_compression_mode (bsc#1012628).
|
||||
- crypto: octeontx - Fix length check to avoid truncation in
|
||||
ucode_load_store (bsc#1012628).
|
||||
- crypto: omap - Allocate OMAP_CRYPTO_FORCE_COPY scatterlists
|
||||
correctly (bsc#1012628).
|
||||
- crypto: virtio - Add spinlock protection with virtqueue
|
||||
notification (bsc#1012628).
|
||||
- crypto: virtio - Remove duplicated virtqueue_kick in
|
||||
virtio_crypto_skcipher_crypt_req (bsc#1012628).
|
||||
- nilfs2: Fix potential block overflow that cause system hang
|
||||
(bsc#1012628).
|
||||
- hfs: ensure sb->s_fs_info is always cleaned up (bsc#1012628).
|
||||
- wifi: rtw88: Fix alignment fault in rtw_core_enable_beacon()
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Validate sp before freeing associated memory
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Allow recovery for tape devices (bsc#1012628).
|
||||
- scsi: qla2xxx: Delay module unload while fabric scan in progress
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Free sp in error path to fix system crash
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Query FW again before proceeding with login
|
||||
(bsc#1012628).
|
||||
- sched/mmcid: Don't assume CID is CPU owned on mode switch
|
||||
(bsc#1012628).
|
||||
- bus: fsl-mc: fix use-after-free in driver_override_show()
|
||||
(bsc#1012628).
|
||||
- erofs: fix UAF issue for file-backed mounts w/ directio option
|
||||
(bsc#1012628).
|
||||
- xfs: fix UAF in xchk_btree_check_block_owner (bsc#1012628).
|
||||
- drm/exynos: vidi: use ctx->lock to protect struct vidi_context
|
||||
member variables related to memory alloc/free (bsc#1012628).
|
||||
- PCI: endpoint: Avoid creating sub-groups asynchronously
|
||||
(bsc#1012628).
|
||||
- wifi: rtl8xxxu: fix slab-out-of-bounds in rtl8xxxu_sta_add
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-001-io_uring-io-wq-add-exit-on-idle-state.patch.
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-002-io_uring-allow-io-wq-workers-to-exit-when-unus.patch.
|
||||
- commit 2f9cad9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 12 07:11:01 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- io_uring: allow io-wq workers to exit when unused
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- io_uring/io-wq: add exit-on-idle state
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- commit b7d1ad1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:33:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19 final
|
||||
- refresh configs (headers only)
|
||||
- commit 8f6da03
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:31:10 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv6hl configs
|
||||
- option values copied from armv7hl
|
||||
- commit 7ef7460
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:28:36 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv7hl configs
|
||||
- option values copied from arm64 except
|
||||
- MACH_MT6582=y
|
||||
- CLK_RK3506=y
|
||||
- commit e113f66
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:16:37 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable arm64 configs
|
||||
- option values copied from x86_64, i386 and riscv64 except
|
||||
- ARCH_BST=y
|
||||
- ARM64_MPAM=y
|
||||
- PCI_SKY1_HOST=m
|
||||
- PCIE_NXP_S32G=y
|
||||
- CACHEMAINT_FOR_HOTPLUG=y
|
||||
- HISI_SOC_HHA=m
|
||||
- PINCTRL_SKY1=m
|
||||
- PINCTRL_MT6878=y
|
||||
- PINCTRL_KAANAPALI=m
|
||||
- GPIO_SHARED_PROXY=m
|
||||
- CHARGER_BD71828=m
|
||||
- SENSORS_MACSMC_HWMON=m
|
||||
- IMX91_THERMAL=m
|
||||
- VIDEO_ROCKCHIP_CIF=m
|
||||
- DRM_IMX8MP_HDMI_PAI=m
|
||||
- DRM_DW_HDMI_QP_CEC=y
|
||||
- DRM_MEDIATEK_HDMI_V2=m
|
||||
- SND_HDA_CIX_IPBLOQ=m
|
||||
- SND_SOC_MT8189=m
|
||||
- SND_SOC_MT8189_NAU8825=m
|
||||
- USB_DWC3_APPLE=m
|
||||
- SCSI_UFS_AMD_VERSAL2=m
|
||||
- RTC_DRV_MACSMC=m
|
||||
- IPQ_NSSCC_5424=m
|
||||
- SM_VIDEOCC_8750=m
|
||||
- CLK_RV1126B=y
|
||||
- RTK_SYSTIMER=y
|
||||
- MTK_MFG_PM_DOMAIN=y
|
||||
- PWM_AIROHA=m
|
||||
- NVMEM_QNAP_MCU_EEPROM=m
|
||||
- INTERCONNECT_QCOM_KAANAPALI=m
|
||||
- ARM64_MPAM_DRIVER_DEBUG=n
|
||||
- commit 0e2d85d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 13:36:06 CET 2026 - tiwai@suse.de
|
||||
|
||||
- accel/amdxdna: Update firmware version check for latest firmware
|
||||
(bsc#1257724).
|
||||
- accel/amdxdna: Enable temporal sharing only mode (bsc#1257724).
|
||||
- accel/amdxdna: Remove NPU2 support (bsc#1257724).
|
||||
- accel/amdxdna: Remove amdxdna_flush() (bsc#1257724).
|
||||
- commit 6eaf1bb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 12:25:17 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch (bsc#1252084)
|
||||
The upstream didn't release *-101.ucode for some models.
|
||||
- commit 33ced68
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 23:11:15 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc8
|
||||
- commit 41a428c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 26 00:11:33 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc7
|
||||
- drop no longer needed patch (obsoleted by 3f2de814c059)
|
||||
- patches.rpmify/Revert-objtool-fix-build-failure-due-to-missing-libopcodes.patch
|
||||
- update configs
|
||||
- DRM_XE_USERPTR_INVAL_INJECT=n (on i386)
|
||||
- commit 3fe5a20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 21 16:03:32 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- Revert "objtool: fix build failure due to missing libopcodes
|
||||
check".
|
||||
- commit 50c998d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 09:23:32 CET 2026 - jdelvare@suse.com
|
||||
|
||||
- Enable NCT6694 support on x86_64
|
||||
This multi-function device is platform-independent and can be found
|
||||
on both ARM and x86 platforms.
|
||||
- commit e5dd94d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 06:20:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc6
|
||||
- refresh configs
|
||||
- commit e5456de
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 09:08:40 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc5
|
||||
- update configs
|
||||
- MISC_RP1=n (i386)
|
||||
- commit 444cfba
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:10:18 CET 2026 - tiwai@suse.de
|
||||
|
||||
|
||||
@@ -17,15 +17,15 @@
|
||||
# needsrootforbuild
|
||||
|
||||
|
||||
%define patchversion 6.19.0-rc4
|
||||
%define patchversion 7.0.0-rc3
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
|
||||
Name: kernel-obs-qa
|
||||
Version: 6.19~rc4
|
||||
Version: 7.0~rc3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g5352249
|
||||
Release: <RELEASE>.g2efdd9c
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
@@ -36,7 +36,7 @@ BuildRequires: kernel-default
|
||||
# kernel-obs-build must be also configured as VMinstall, but is required
|
||||
# here as well to avoid that qa and build package build parallel
|
||||
%if ! 0%{?qemu_user_space_build}
|
||||
BuildRequires: kernel-obs-build-srchash-53522494ab7628cbd71a32672d6628920ee26bf9
|
||||
BuildRequires: kernel-obs-build-srchash-2efdd9cb76be4a8c4edd48301cd80301fc368c3b
|
||||
%endif
|
||||
BuildRequires: modutils
|
||||
ExclusiveArch: ppc64le riscv64 s390x x86_64
|
||||
|
||||
@@ -1,3 +1,540 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 11:56:41 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.rpmify/certs-Replace-openssl-invocation-with-OPENSSL.patch
|
||||
Improved the patch to allow the alternative openssl more generically
|
||||
- commit 332afe7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 01:13:29 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc3
|
||||
- Delete upstream patch kbuild-Leave-objtool-binary-around-with-make-clean.patch
|
||||
- refresh configs
|
||||
- commit 0e787eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 09:14:17 CET 2026 - msuchanek@suse.de
|
||||
|
||||
- Move dummy openssl from kernel-source to kernel
|
||||
Fixes: eb95320d3295 ("scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)")
|
||||
- commit dd3697c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 14:26:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- certs: Replace openssl invocation with $OPENSSL (bsc#1259065).
|
||||
- commit 104ab06
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:53:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Update config files: re-enable CONFIG_OPENSSL_SUPPORTS_ML_DSA (bsc#1259065)
|
||||
- commit 0bfc1b0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:50:22 CET 2026 - tiwai@suse.de
|
||||
|
||||
- scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)
|
||||
Needed for CONFIG_OPENSSL_SUPPORTS_ML_DSA introduced in 7.0 kernel.
|
||||
- commit eb95320
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 01:08:04 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc2
|
||||
- refresh config files
|
||||
- commit 1b18c75
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 28 13:12:05 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- kbuild: Leave objtool binary around with 'make clean' (kmp-fix).
|
||||
- commit 3f3f246
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 24 08:34:34 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: refresh
|
||||
- commit 440de45
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 17:50:45 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: add OPENSSL_SUPPORTS_ to IGNORED_CONFIGS_RE
|
||||
Config option OPENSSL_SUPPORTS_ML_DSA was introduced by mainline commit
|
||||
0ad9a71933e7 ("modsign: Enable ML-DSA module signing") in 7.0-rc1
|
||||
- commit 21b4616
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 15:51:53 CET 2026 - tzimmermann@suse.com
|
||||
|
||||
- config: Enable coreboot support (bsc#1258262)
|
||||
Enable kernel support for coreboot firmware. Enabling these options
|
||||
provides various interfaces under /sys/firmware/. One of the next
|
||||
releases of the Linux kernel will feature corebootdrm, a dedicated
|
||||
DRM driver for coreboot's system framebuffer. The driver relies on
|
||||
support for coreboot firmware.
|
||||
Leave out s390x and ppc64le, as coreboot apparently does not support
|
||||
them.
|
||||
- commit 14b0853
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:14:56 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 7.0-rc1
|
||||
- drop 77 patches (72 stable, 5 mainline):
|
||||
- patches.kernel.org/*
|
||||
- patches.rpmify/gendwarfksyms-Fix-build-on-32-bit-hosts.patch (ddc54f912a55)
|
||||
- patches.suse/accel-amdxdna-Enable-temporal-sharing-only-mode.patch
|
||||
- patches.suse/accel-amdxdna-Remove-NPU2-support.patch
|
||||
- patches.suse/accel-amdxdna-Remove-amdxdna_flush.patch
|
||||
- patches.suse/accel-amdxdna-Update-firmware-version-check-for-late.patch
|
||||
- refresh
|
||||
- patches.rpmify/btf-pahole-j1-option.patch
|
||||
- patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
|
||||
- patches.suse/Restore-kABI-for-NVidia-vGPU-driver.patch
|
||||
- patches.suse/btrfs-provide-super_operations-get_inode_dev
|
||||
- patches.suse/iwlwifi-declare-missing-firmware-files.patch
|
||||
- patches.suse/vfs-add-super_operations-get_inode_dev
|
||||
- patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch
|
||||
- disable ARM architectures (need config update)
|
||||
- new config options
|
||||
- General setup
|
||||
- CONFIG_RSEQ_SLICE_EXTENSION=n
|
||||
- Memory Management options
|
||||
- CONFIG_BALLOON_MIGRATION=y
|
||||
- Networking support
|
||||
- CONFIG_NET_DSA_TAG_MXL_862XX=m
|
||||
- File systems
|
||||
- CONFIG_EROFS_FS_PAGE_CACHE_SHARE=n
|
||||
- CONFIG_NFS_V4_0=n
|
||||
- CONFIG_NFSD_V4_POSIX_ACLS=n
|
||||
- Cryptographic API
|
||||
- CONFIG_CRYPTO_MLDSA=m
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_44=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_65=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_87=n
|
||||
- Kernel hacking
|
||||
- CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=0
|
||||
- CONFIG_BOOTPARAM_WQ_STALL_PANIC=0
|
||||
- CONFIG_DEBUG_ATOMIC=n
|
||||
- CONFIG_CONTEXT_ANALYSIS_TEST=n
|
||||
- Cryptographic API
|
||||
- CONFIG_PKCS7_WAIVE_AUTHATTRS_REJECTION_FOR_MLDSA=n
|
||||
- Network device support
|
||||
- CONFIG_NET_DSA_MXL862=m
|
||||
- CONFIG_DWMAC_MOTORCOMM=m
|
||||
- Hardware Monitoring support
|
||||
- CONFIG_SENSORS_HAC300S=m
|
||||
- CONFIG_SENSORS_MP5926=m
|
||||
- CONFIG_SENSORS_STEF48H28=m
|
||||
- Voltage and Current Regulator Support
|
||||
- CONFIG_REGULATOR_RT8092=m
|
||||
- CONFIG_REGULATOR_TPS65185=m
|
||||
- Multimedia support
|
||||
- CONFIG_VIDEO_OS05B10=m
|
||||
- CONFIG_VIDEO_S5K3M5=m
|
||||
- CONFIG_VIDEO_S5KJN1=m
|
||||
- Graphics support
|
||||
- CONFIG_DRM_ST7571=m
|
||||
- CONFIG_DRM_ST7571_SPI=m
|
||||
- CONFIG_DRM_ST7920=m
|
||||
- Sound card support
|
||||
- CONFIG_SND_SOC_RT5575=m
|
||||
- CONFIG_SND_SOC_RT5575_SPI=y
|
||||
- LED Support
|
||||
- CONFIG_LEDS_OSRAM_AMS_AS3668=m
|
||||
- CONFIG_LEDS_LP5812=m
|
||||
- Staging drivers
|
||||
- CONFIG_FB_TFT=m
|
||||
- CONFIG_FB_TFT_AGM1264K_FL=m
|
||||
- CONFIG_FB_TFT_BD663474=m
|
||||
- CONFIG_FB_TFT_HX8340BN=m
|
||||
- CONFIG_FB_TFT_HX8347D=m
|
||||
- CONFIG_FB_TFT_HX8353D=m
|
||||
- CONFIG_FB_TFT_HX8357D=m
|
||||
- CONFIG_FB_TFT_ILI9163=m
|
||||
- CONFIG_FB_TFT_ILI9320=m
|
||||
- CONFIG_FB_TFT_ILI9325=m
|
||||
- CONFIG_FB_TFT_ILI9340=m
|
||||
- CONFIG_FB_TFT_ILI9341=m
|
||||
- CONFIG_FB_TFT_ILI9481=m
|
||||
- CONFIG_FB_TFT_ILI9486=m
|
||||
- CONFIG_FB_TFT_PCD8544=m
|
||||
- CONFIG_FB_TFT_RA8875=m
|
||||
- CONFIG_FB_TFT_S6D02A1=m
|
||||
- CONFIG_FB_TFT_S6D1121=m
|
||||
- CONFIG_FB_TFT_SEPS525=m
|
||||
- CONFIG_FB_TFT_SH1106=m
|
||||
- CONFIG_FB_TFT_SSD1289=m
|
||||
- CONFIG_FB_TFT_SSD1305=m
|
||||
- CONFIG_FB_TFT_SSD1306=m
|
||||
- CONFIG_FB_TFT_SSD1331=m
|
||||
- CONFIG_FB_TFT_SSD1351=m
|
||||
- CONFIG_FB_TFT_ST7735R=m
|
||||
- CONFIG_FB_TFT_ST7789V=m
|
||||
- CONFIG_FB_TFT_TINYLCD=m
|
||||
- CONFIG_FB_TFT_TLS8204=m
|
||||
- CONFIG_FB_TFT_UC1611=m
|
||||
- CONFIG_FB_TFT_UC1701=m
|
||||
- CONFIG_FB_TFT_UPD161704=m
|
||||
- Industrial I/O support
|
||||
- CONFIG_ADXL345_I2C=n
|
||||
- CONFIG_ADXL345_SPI=n
|
||||
- CONFIG_AD4062=n
|
||||
- CONFIG_AD4134=n
|
||||
- CONFIG_TI_ADS1018=n
|
||||
- CONFIG_TI_ADS131M02=n
|
||||
- CONFIG_ADL8113=n
|
||||
- CONFIG_MAX22007=n
|
||||
- CONFIG_MCP47FEB02=n
|
||||
- CONFIG_MMC5633=n
|
||||
- CONFIG_ABP2030PA_I2C=n
|
||||
- CONFIG_ABP2030PA_SPI=n
|
||||
- CONFIG_MPRLS0025PA_I2C=n
|
||||
- CONFIG_MPRLS0025PA_SPI=n
|
||||
- misc drivers
|
||||
- CONFIG_PHY_GOOGLE_USB=m
|
||||
- CONFIG_DPLL_REFCNT_TRACKER=n
|
||||
- CONFIG_HID_RAPOO=m
|
||||
- CONFIG_USB_DWC3_GOOGLE=m
|
||||
- CONFIG_IOMMU_DEBUG_PAGEALLOC=n
|
||||
- OF dependent (i386, ppc64le, riscv64)
|
||||
- GPIO_LINE_MUX=m
|
||||
- POWER_SEQUENCING_PCIE_M2=m
|
||||
- i386
|
||||
- REGULATOR_MAX77675=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- ppc64le
|
||||
- INTEL_MEI=n
|
||||
- LOGO_LINUX_VGA16_FILE="drivers/video/logo/logo_linux_vga16.ppm"
|
||||
- LOGO_LINUX_CLUT224_FILE="drivers/video/logo/logo_linux_clut224.ppm"
|
||||
- TRUSTED_KEYS_PKWM=y
|
||||
- s390x
|
||||
- INTEL_MEI=n
|
||||
- s390x/zfcpdump
|
||||
- KEXEC_SIG=y
|
||||
- PKCS8_PRIVATE_KEY_PARSER=y
|
||||
- PKCS7_TEST_KEY=n
|
||||
- SIGNED_PE_FILE_VERIFICATION=y
|
||||
- FIPS_SIGNATURE_SELFTEST=n
|
||||
- SYSTEM_TRUSTED_KEYS=""
|
||||
- SYSTEM_EXTRA_CERTIFICATE=n
|
||||
- SECONDARY_TRUSTED_KEYRING=y
|
||||
- SECONDARY_TRUSTED_KEYRING_SIGNED_BY_BUILTIN=n
|
||||
- riscv64
|
||||
- RISCV_USER_CFI=y
|
||||
- INTEL_MEI=n
|
||||
- SPI_ATCSPI200=m
|
||||
- REGULATOR_MAX77675=m
|
||||
- VIDEO_DW_MIPI_CSI2RX=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- FIRMWARE_EDID=y
|
||||
- SND_SOC_CV1800B_TDM=m
|
||||
- SND_SOC_CV1800B_ADC_CODEC=m
|
||||
- SND_SOC_CV1800B_DAC_CODEC=m
|
||||
- SPACEMIT_K3_CCU=m
|
||||
- RESET_SPACEMIT_K1=m
|
||||
- RESET_SPACEMIT_K3=m
|
||||
- PHY_SPACEMIT_K1_PCIE=m
|
||||
- PHY_SPACEMIT_K1_USB2=m
|
||||
- commit 96fa923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 06:28:12 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.3 (bsc#1012628).
|
||||
- scsi: qla2xxx: Fix bsg_done() causing double free (bsc#1012628).
|
||||
- arm64: dts: mediatek: mt8183: Add missing endpoint IDs to
|
||||
display graph (bsc#1012628).
|
||||
- LoongArch: Rework KASAN initialization for PTW-enabled systems
|
||||
(bsc#1012628).
|
||||
- fbdev: rivafb: fix divide error in nv3_arb() (bsc#1012628).
|
||||
- fbdev: smscufx: properly copy ioctl memory to kernelspace
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to add gc count stat in f2fs_gc_range (bsc#1012628).
|
||||
- f2fs: fix to check sysfs filename w/ gc_pin_file_thresh
|
||||
correctly (bsc#1012628).
|
||||
- f2fs: fix IS_CHECKPOINTED flag inconsistency issue caused by
|
||||
concurrent atomic commit and checkpoint writes (bsc#1012628).
|
||||
- f2fs: fix out-of-bounds access in sysfs attribute read/write
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid UAF in f2fs_write_end_io() (bsc#1012628).
|
||||
- f2fs: support non-4KB block size without packed_ssa feature
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid mapping wrong physical block for swapfile
|
||||
(bsc#1012628).
|
||||
- f2fs: optimize f2fs_overwrite_io() for f2fs_iomap_begin
|
||||
(bsc#1012628).
|
||||
- Revert "f2fs: block cache/dio write during
|
||||
f2fs_enable_checkpoint()" (bsc#1012628).
|
||||
- USB: serial: option: add Telit FN920C04 RNDIS compositions
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
__write_node_folio() (bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
{read,write}_end_io (bsc#1012628).
|
||||
- f2fs: fix incomplete block usage in compact SSA summaries
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.3-014-iommu-arm-smmu-qcom-do-not-register-driver-in-.patch.
|
||||
- commit fcdf9c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 18 15:43:45 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Move upstreamed amdxdna patches into sorted section
|
||||
- commit 787d692
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:36:29 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- iommu/arm-smmu-qcom: do not register driver in probe()
|
||||
(git-fixes).
|
||||
- commit 7b303f4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:47 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.2 (bsc#1012628).
|
||||
- Revert "driver core: enforce device_lock for
|
||||
driver_match_device()" (bsc#1012628).
|
||||
- commit 57aa524
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:02 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.1 (bsc#1012628).
|
||||
- smb: client: split cached_fid bitfields to avoid shared-byte
|
||||
RMW races (bsc#1012628).
|
||||
- ksmbd: fix infinite loop caused by next_smb2_rcv_hdr_off reset
|
||||
in error paths (bsc#1012628).
|
||||
- ksmbd: add chann_lock to protect ksmbd_chann_list xarray
|
||||
(bsc#1012628).
|
||||
- smb: server: fix leak of active_num_conn in
|
||||
ksmbd_tcp_new_connection() (bsc#1012628).
|
||||
- smb: smbdirect: introduce
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: smbdirect: introduce smbdirect_socket.send_io.bcredits.*
|
||||
(bsc#1012628).
|
||||
- smb: server: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: server: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: server: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: server: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: server: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- smb: client: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: client: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: client: let smbd_post_send() make use of request->wr
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->recv_io.credits.count rollback
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->send_io.pending handling in
|
||||
smbd_post_send_iter() (bsc#1012628).
|
||||
- smb: client: port and use the wait_for_credits logic used by
|
||||
server (bsc#1012628).
|
||||
- smb: client: split out smbd_ib_post_send() (bsc#1012628).
|
||||
- smb: client: introduce and use smbd_{alloc, free}_send_io()
|
||||
(bsc#1012628).
|
||||
- smb: client: use smbdirect_send_batch processing (bsc#1012628).
|
||||
- smb: client: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: client: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: client: let smbd_post_send_negotiate_req() use
|
||||
smbd_post_send() (bsc#1012628).
|
||||
- smb: client: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- driver core: enforce device_lock for driver_match_device()
|
||||
(bsc#1012628).
|
||||
- Bluetooth: btusb: Add USB ID 7392:e611 for Edimax EW-7611UXB
|
||||
(bsc#1012628).
|
||||
- ALSA: hda/conexant: Add quirk for HP ZBook Studio G4
|
||||
(bsc#1012628).
|
||||
- crypto: iaa - Fix out-of-bounds index in
|
||||
find_empty_iaa_compression_mode (bsc#1012628).
|
||||
- crypto: octeontx - Fix length check to avoid truncation in
|
||||
ucode_load_store (bsc#1012628).
|
||||
- crypto: omap - Allocate OMAP_CRYPTO_FORCE_COPY scatterlists
|
||||
correctly (bsc#1012628).
|
||||
- crypto: virtio - Add spinlock protection with virtqueue
|
||||
notification (bsc#1012628).
|
||||
- crypto: virtio - Remove duplicated virtqueue_kick in
|
||||
virtio_crypto_skcipher_crypt_req (bsc#1012628).
|
||||
- nilfs2: Fix potential block overflow that cause system hang
|
||||
(bsc#1012628).
|
||||
- hfs: ensure sb->s_fs_info is always cleaned up (bsc#1012628).
|
||||
- wifi: rtw88: Fix alignment fault in rtw_core_enable_beacon()
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Validate sp before freeing associated memory
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Allow recovery for tape devices (bsc#1012628).
|
||||
- scsi: qla2xxx: Delay module unload while fabric scan in progress
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Free sp in error path to fix system crash
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Query FW again before proceeding with login
|
||||
(bsc#1012628).
|
||||
- sched/mmcid: Don't assume CID is CPU owned on mode switch
|
||||
(bsc#1012628).
|
||||
- bus: fsl-mc: fix use-after-free in driver_override_show()
|
||||
(bsc#1012628).
|
||||
- erofs: fix UAF issue for file-backed mounts w/ directio option
|
||||
(bsc#1012628).
|
||||
- xfs: fix UAF in xchk_btree_check_block_owner (bsc#1012628).
|
||||
- drm/exynos: vidi: use ctx->lock to protect struct vidi_context
|
||||
member variables related to memory alloc/free (bsc#1012628).
|
||||
- PCI: endpoint: Avoid creating sub-groups asynchronously
|
||||
(bsc#1012628).
|
||||
- wifi: rtl8xxxu: fix slab-out-of-bounds in rtl8xxxu_sta_add
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-001-io_uring-io-wq-add-exit-on-idle-state.patch.
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-002-io_uring-allow-io-wq-workers-to-exit-when-unus.patch.
|
||||
- commit 2f9cad9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 12 07:11:01 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- io_uring: allow io-wq workers to exit when unused
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- io_uring/io-wq: add exit-on-idle state
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- commit b7d1ad1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:33:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19 final
|
||||
- refresh configs (headers only)
|
||||
- commit 8f6da03
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:31:10 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv6hl configs
|
||||
- option values copied from armv7hl
|
||||
- commit 7ef7460
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:28:36 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv7hl configs
|
||||
- option values copied from arm64 except
|
||||
- MACH_MT6582=y
|
||||
- CLK_RK3506=y
|
||||
- commit e113f66
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:16:37 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable arm64 configs
|
||||
- option values copied from x86_64, i386 and riscv64 except
|
||||
- ARCH_BST=y
|
||||
- ARM64_MPAM=y
|
||||
- PCI_SKY1_HOST=m
|
||||
- PCIE_NXP_S32G=y
|
||||
- CACHEMAINT_FOR_HOTPLUG=y
|
||||
- HISI_SOC_HHA=m
|
||||
- PINCTRL_SKY1=m
|
||||
- PINCTRL_MT6878=y
|
||||
- PINCTRL_KAANAPALI=m
|
||||
- GPIO_SHARED_PROXY=m
|
||||
- CHARGER_BD71828=m
|
||||
- SENSORS_MACSMC_HWMON=m
|
||||
- IMX91_THERMAL=m
|
||||
- VIDEO_ROCKCHIP_CIF=m
|
||||
- DRM_IMX8MP_HDMI_PAI=m
|
||||
- DRM_DW_HDMI_QP_CEC=y
|
||||
- DRM_MEDIATEK_HDMI_V2=m
|
||||
- SND_HDA_CIX_IPBLOQ=m
|
||||
- SND_SOC_MT8189=m
|
||||
- SND_SOC_MT8189_NAU8825=m
|
||||
- USB_DWC3_APPLE=m
|
||||
- SCSI_UFS_AMD_VERSAL2=m
|
||||
- RTC_DRV_MACSMC=m
|
||||
- IPQ_NSSCC_5424=m
|
||||
- SM_VIDEOCC_8750=m
|
||||
- CLK_RV1126B=y
|
||||
- RTK_SYSTIMER=y
|
||||
- MTK_MFG_PM_DOMAIN=y
|
||||
- PWM_AIROHA=m
|
||||
- NVMEM_QNAP_MCU_EEPROM=m
|
||||
- INTERCONNECT_QCOM_KAANAPALI=m
|
||||
- ARM64_MPAM_DRIVER_DEBUG=n
|
||||
- commit 0e2d85d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 13:36:06 CET 2026 - tiwai@suse.de
|
||||
|
||||
- accel/amdxdna: Update firmware version check for latest firmware
|
||||
(bsc#1257724).
|
||||
- accel/amdxdna: Enable temporal sharing only mode (bsc#1257724).
|
||||
- accel/amdxdna: Remove NPU2 support (bsc#1257724).
|
||||
- accel/amdxdna: Remove amdxdna_flush() (bsc#1257724).
|
||||
- commit 6eaf1bb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 12:25:17 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch (bsc#1252084)
|
||||
The upstream didn't release *-101.ucode for some models.
|
||||
- commit 33ced68
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 23:11:15 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc8
|
||||
- commit 41a428c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 26 00:11:33 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc7
|
||||
- drop no longer needed patch (obsoleted by 3f2de814c059)
|
||||
- patches.rpmify/Revert-objtool-fix-build-failure-due-to-missing-libopcodes.patch
|
||||
- update configs
|
||||
- DRM_XE_USERPTR_INVAL_INJECT=n (on i386)
|
||||
- commit 3fe5a20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 21 16:03:32 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- Revert "objtool: fix build failure due to missing libopcodes
|
||||
check".
|
||||
- commit 50c998d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 09:23:32 CET 2026 - jdelvare@suse.com
|
||||
|
||||
- Enable NCT6694 support on x86_64
|
||||
This multi-function device is platform-independent and can be found
|
||||
on both ARM and x86 platforms.
|
||||
- commit e5dd94d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 06:20:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc6
|
||||
- refresh configs
|
||||
- commit e5456de
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 09:08:40 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc5
|
||||
- update configs
|
||||
- MISC_RP1=n (i386)
|
||||
- commit 444cfba
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:10:18 CET 2026 - tiwai@suse.de
|
||||
|
||||
|
||||
@@ -17,9 +17,9 @@
|
||||
# needssslcertforbuild
|
||||
|
||||
|
||||
%define srcversion 6.19-rc4
|
||||
%define patchversion 6.19.0-rc4
|
||||
%define git_commit 53522494ab7628cbd71a32672d6628920ee26bf9
|
||||
%define srcversion 7.0-rc3
|
||||
%define patchversion 7.0.0-rc3
|
||||
%define git_commit 2efdd9cb76be4a8c4edd48301cd80301fc368c3b
|
||||
%define variant %{nil}
|
||||
%define compress_modules zstd
|
||||
%define compress_vmlinux xz
|
||||
@@ -40,9 +40,9 @@
|
||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,arch-symbols,check-module-license,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
|
||||
|
||||
Name: kernel-pae
|
||||
Version: 6.19~rc4
|
||||
Version: 7.0~rc3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g5352249
|
||||
Release: <RELEASE>.g2efdd9c
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
||||
@@ -1,3 +1,540 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 11:56:41 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.rpmify/certs-Replace-openssl-invocation-with-OPENSSL.patch
|
||||
Improved the patch to allow the alternative openssl more generically
|
||||
- commit 332afe7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 01:13:29 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc3
|
||||
- Delete upstream patch kbuild-Leave-objtool-binary-around-with-make-clean.patch
|
||||
- refresh configs
|
||||
- commit 0e787eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 09:14:17 CET 2026 - msuchanek@suse.de
|
||||
|
||||
- Move dummy openssl from kernel-source to kernel
|
||||
Fixes: eb95320d3295 ("scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)")
|
||||
- commit dd3697c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 14:26:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- certs: Replace openssl invocation with $OPENSSL (bsc#1259065).
|
||||
- commit 104ab06
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:53:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Update config files: re-enable CONFIG_OPENSSL_SUPPORTS_ML_DSA (bsc#1259065)
|
||||
- commit 0bfc1b0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:50:22 CET 2026 - tiwai@suse.de
|
||||
|
||||
- scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)
|
||||
Needed for CONFIG_OPENSSL_SUPPORTS_ML_DSA introduced in 7.0 kernel.
|
||||
- commit eb95320
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 01:08:04 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc2
|
||||
- refresh config files
|
||||
- commit 1b18c75
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 28 13:12:05 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- kbuild: Leave objtool binary around with 'make clean' (kmp-fix).
|
||||
- commit 3f3f246
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 24 08:34:34 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: refresh
|
||||
- commit 440de45
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 17:50:45 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: add OPENSSL_SUPPORTS_ to IGNORED_CONFIGS_RE
|
||||
Config option OPENSSL_SUPPORTS_ML_DSA was introduced by mainline commit
|
||||
0ad9a71933e7 ("modsign: Enable ML-DSA module signing") in 7.0-rc1
|
||||
- commit 21b4616
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 15:51:53 CET 2026 - tzimmermann@suse.com
|
||||
|
||||
- config: Enable coreboot support (bsc#1258262)
|
||||
Enable kernel support for coreboot firmware. Enabling these options
|
||||
provides various interfaces under /sys/firmware/. One of the next
|
||||
releases of the Linux kernel will feature corebootdrm, a dedicated
|
||||
DRM driver for coreboot's system framebuffer. The driver relies on
|
||||
support for coreboot firmware.
|
||||
Leave out s390x and ppc64le, as coreboot apparently does not support
|
||||
them.
|
||||
- commit 14b0853
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:14:56 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 7.0-rc1
|
||||
- drop 77 patches (72 stable, 5 mainline):
|
||||
- patches.kernel.org/*
|
||||
- patches.rpmify/gendwarfksyms-Fix-build-on-32-bit-hosts.patch (ddc54f912a55)
|
||||
- patches.suse/accel-amdxdna-Enable-temporal-sharing-only-mode.patch
|
||||
- patches.suse/accel-amdxdna-Remove-NPU2-support.patch
|
||||
- patches.suse/accel-amdxdna-Remove-amdxdna_flush.patch
|
||||
- patches.suse/accel-amdxdna-Update-firmware-version-check-for-late.patch
|
||||
- refresh
|
||||
- patches.rpmify/btf-pahole-j1-option.patch
|
||||
- patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
|
||||
- patches.suse/Restore-kABI-for-NVidia-vGPU-driver.patch
|
||||
- patches.suse/btrfs-provide-super_operations-get_inode_dev
|
||||
- patches.suse/iwlwifi-declare-missing-firmware-files.patch
|
||||
- patches.suse/vfs-add-super_operations-get_inode_dev
|
||||
- patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch
|
||||
- disable ARM architectures (need config update)
|
||||
- new config options
|
||||
- General setup
|
||||
- CONFIG_RSEQ_SLICE_EXTENSION=n
|
||||
- Memory Management options
|
||||
- CONFIG_BALLOON_MIGRATION=y
|
||||
- Networking support
|
||||
- CONFIG_NET_DSA_TAG_MXL_862XX=m
|
||||
- File systems
|
||||
- CONFIG_EROFS_FS_PAGE_CACHE_SHARE=n
|
||||
- CONFIG_NFS_V4_0=n
|
||||
- CONFIG_NFSD_V4_POSIX_ACLS=n
|
||||
- Cryptographic API
|
||||
- CONFIG_CRYPTO_MLDSA=m
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_44=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_65=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_87=n
|
||||
- Kernel hacking
|
||||
- CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=0
|
||||
- CONFIG_BOOTPARAM_WQ_STALL_PANIC=0
|
||||
- CONFIG_DEBUG_ATOMIC=n
|
||||
- CONFIG_CONTEXT_ANALYSIS_TEST=n
|
||||
- Cryptographic API
|
||||
- CONFIG_PKCS7_WAIVE_AUTHATTRS_REJECTION_FOR_MLDSA=n
|
||||
- Network device support
|
||||
- CONFIG_NET_DSA_MXL862=m
|
||||
- CONFIG_DWMAC_MOTORCOMM=m
|
||||
- Hardware Monitoring support
|
||||
- CONFIG_SENSORS_HAC300S=m
|
||||
- CONFIG_SENSORS_MP5926=m
|
||||
- CONFIG_SENSORS_STEF48H28=m
|
||||
- Voltage and Current Regulator Support
|
||||
- CONFIG_REGULATOR_RT8092=m
|
||||
- CONFIG_REGULATOR_TPS65185=m
|
||||
- Multimedia support
|
||||
- CONFIG_VIDEO_OS05B10=m
|
||||
- CONFIG_VIDEO_S5K3M5=m
|
||||
- CONFIG_VIDEO_S5KJN1=m
|
||||
- Graphics support
|
||||
- CONFIG_DRM_ST7571=m
|
||||
- CONFIG_DRM_ST7571_SPI=m
|
||||
- CONFIG_DRM_ST7920=m
|
||||
- Sound card support
|
||||
- CONFIG_SND_SOC_RT5575=m
|
||||
- CONFIG_SND_SOC_RT5575_SPI=y
|
||||
- LED Support
|
||||
- CONFIG_LEDS_OSRAM_AMS_AS3668=m
|
||||
- CONFIG_LEDS_LP5812=m
|
||||
- Staging drivers
|
||||
- CONFIG_FB_TFT=m
|
||||
- CONFIG_FB_TFT_AGM1264K_FL=m
|
||||
- CONFIG_FB_TFT_BD663474=m
|
||||
- CONFIG_FB_TFT_HX8340BN=m
|
||||
- CONFIG_FB_TFT_HX8347D=m
|
||||
- CONFIG_FB_TFT_HX8353D=m
|
||||
- CONFIG_FB_TFT_HX8357D=m
|
||||
- CONFIG_FB_TFT_ILI9163=m
|
||||
- CONFIG_FB_TFT_ILI9320=m
|
||||
- CONFIG_FB_TFT_ILI9325=m
|
||||
- CONFIG_FB_TFT_ILI9340=m
|
||||
- CONFIG_FB_TFT_ILI9341=m
|
||||
- CONFIG_FB_TFT_ILI9481=m
|
||||
- CONFIG_FB_TFT_ILI9486=m
|
||||
- CONFIG_FB_TFT_PCD8544=m
|
||||
- CONFIG_FB_TFT_RA8875=m
|
||||
- CONFIG_FB_TFT_S6D02A1=m
|
||||
- CONFIG_FB_TFT_S6D1121=m
|
||||
- CONFIG_FB_TFT_SEPS525=m
|
||||
- CONFIG_FB_TFT_SH1106=m
|
||||
- CONFIG_FB_TFT_SSD1289=m
|
||||
- CONFIG_FB_TFT_SSD1305=m
|
||||
- CONFIG_FB_TFT_SSD1306=m
|
||||
- CONFIG_FB_TFT_SSD1331=m
|
||||
- CONFIG_FB_TFT_SSD1351=m
|
||||
- CONFIG_FB_TFT_ST7735R=m
|
||||
- CONFIG_FB_TFT_ST7789V=m
|
||||
- CONFIG_FB_TFT_TINYLCD=m
|
||||
- CONFIG_FB_TFT_TLS8204=m
|
||||
- CONFIG_FB_TFT_UC1611=m
|
||||
- CONFIG_FB_TFT_UC1701=m
|
||||
- CONFIG_FB_TFT_UPD161704=m
|
||||
- Industrial I/O support
|
||||
- CONFIG_ADXL345_I2C=n
|
||||
- CONFIG_ADXL345_SPI=n
|
||||
- CONFIG_AD4062=n
|
||||
- CONFIG_AD4134=n
|
||||
- CONFIG_TI_ADS1018=n
|
||||
- CONFIG_TI_ADS131M02=n
|
||||
- CONFIG_ADL8113=n
|
||||
- CONFIG_MAX22007=n
|
||||
- CONFIG_MCP47FEB02=n
|
||||
- CONFIG_MMC5633=n
|
||||
- CONFIG_ABP2030PA_I2C=n
|
||||
- CONFIG_ABP2030PA_SPI=n
|
||||
- CONFIG_MPRLS0025PA_I2C=n
|
||||
- CONFIG_MPRLS0025PA_SPI=n
|
||||
- misc drivers
|
||||
- CONFIG_PHY_GOOGLE_USB=m
|
||||
- CONFIG_DPLL_REFCNT_TRACKER=n
|
||||
- CONFIG_HID_RAPOO=m
|
||||
- CONFIG_USB_DWC3_GOOGLE=m
|
||||
- CONFIG_IOMMU_DEBUG_PAGEALLOC=n
|
||||
- OF dependent (i386, ppc64le, riscv64)
|
||||
- GPIO_LINE_MUX=m
|
||||
- POWER_SEQUENCING_PCIE_M2=m
|
||||
- i386
|
||||
- REGULATOR_MAX77675=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- ppc64le
|
||||
- INTEL_MEI=n
|
||||
- LOGO_LINUX_VGA16_FILE="drivers/video/logo/logo_linux_vga16.ppm"
|
||||
- LOGO_LINUX_CLUT224_FILE="drivers/video/logo/logo_linux_clut224.ppm"
|
||||
- TRUSTED_KEYS_PKWM=y
|
||||
- s390x
|
||||
- INTEL_MEI=n
|
||||
- s390x/zfcpdump
|
||||
- KEXEC_SIG=y
|
||||
- PKCS8_PRIVATE_KEY_PARSER=y
|
||||
- PKCS7_TEST_KEY=n
|
||||
- SIGNED_PE_FILE_VERIFICATION=y
|
||||
- FIPS_SIGNATURE_SELFTEST=n
|
||||
- SYSTEM_TRUSTED_KEYS=""
|
||||
- SYSTEM_EXTRA_CERTIFICATE=n
|
||||
- SECONDARY_TRUSTED_KEYRING=y
|
||||
- SECONDARY_TRUSTED_KEYRING_SIGNED_BY_BUILTIN=n
|
||||
- riscv64
|
||||
- RISCV_USER_CFI=y
|
||||
- INTEL_MEI=n
|
||||
- SPI_ATCSPI200=m
|
||||
- REGULATOR_MAX77675=m
|
||||
- VIDEO_DW_MIPI_CSI2RX=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- FIRMWARE_EDID=y
|
||||
- SND_SOC_CV1800B_TDM=m
|
||||
- SND_SOC_CV1800B_ADC_CODEC=m
|
||||
- SND_SOC_CV1800B_DAC_CODEC=m
|
||||
- SPACEMIT_K3_CCU=m
|
||||
- RESET_SPACEMIT_K1=m
|
||||
- RESET_SPACEMIT_K3=m
|
||||
- PHY_SPACEMIT_K1_PCIE=m
|
||||
- PHY_SPACEMIT_K1_USB2=m
|
||||
- commit 96fa923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 06:28:12 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.3 (bsc#1012628).
|
||||
- scsi: qla2xxx: Fix bsg_done() causing double free (bsc#1012628).
|
||||
- arm64: dts: mediatek: mt8183: Add missing endpoint IDs to
|
||||
display graph (bsc#1012628).
|
||||
- LoongArch: Rework KASAN initialization for PTW-enabled systems
|
||||
(bsc#1012628).
|
||||
- fbdev: rivafb: fix divide error in nv3_arb() (bsc#1012628).
|
||||
- fbdev: smscufx: properly copy ioctl memory to kernelspace
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to add gc count stat in f2fs_gc_range (bsc#1012628).
|
||||
- f2fs: fix to check sysfs filename w/ gc_pin_file_thresh
|
||||
correctly (bsc#1012628).
|
||||
- f2fs: fix IS_CHECKPOINTED flag inconsistency issue caused by
|
||||
concurrent atomic commit and checkpoint writes (bsc#1012628).
|
||||
- f2fs: fix out-of-bounds access in sysfs attribute read/write
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid UAF in f2fs_write_end_io() (bsc#1012628).
|
||||
- f2fs: support non-4KB block size without packed_ssa feature
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid mapping wrong physical block for swapfile
|
||||
(bsc#1012628).
|
||||
- f2fs: optimize f2fs_overwrite_io() for f2fs_iomap_begin
|
||||
(bsc#1012628).
|
||||
- Revert "f2fs: block cache/dio write during
|
||||
f2fs_enable_checkpoint()" (bsc#1012628).
|
||||
- USB: serial: option: add Telit FN920C04 RNDIS compositions
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
__write_node_folio() (bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
{read,write}_end_io (bsc#1012628).
|
||||
- f2fs: fix incomplete block usage in compact SSA summaries
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.3-014-iommu-arm-smmu-qcom-do-not-register-driver-in-.patch.
|
||||
- commit fcdf9c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 18 15:43:45 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Move upstreamed amdxdna patches into sorted section
|
||||
- commit 787d692
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:36:29 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- iommu/arm-smmu-qcom: do not register driver in probe()
|
||||
(git-fixes).
|
||||
- commit 7b303f4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:47 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.2 (bsc#1012628).
|
||||
- Revert "driver core: enforce device_lock for
|
||||
driver_match_device()" (bsc#1012628).
|
||||
- commit 57aa524
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:02 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.1 (bsc#1012628).
|
||||
- smb: client: split cached_fid bitfields to avoid shared-byte
|
||||
RMW races (bsc#1012628).
|
||||
- ksmbd: fix infinite loop caused by next_smb2_rcv_hdr_off reset
|
||||
in error paths (bsc#1012628).
|
||||
- ksmbd: add chann_lock to protect ksmbd_chann_list xarray
|
||||
(bsc#1012628).
|
||||
- smb: server: fix leak of active_num_conn in
|
||||
ksmbd_tcp_new_connection() (bsc#1012628).
|
||||
- smb: smbdirect: introduce
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: smbdirect: introduce smbdirect_socket.send_io.bcredits.*
|
||||
(bsc#1012628).
|
||||
- smb: server: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: server: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: server: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: server: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: server: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- smb: client: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: client: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: client: let smbd_post_send() make use of request->wr
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->recv_io.credits.count rollback
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->send_io.pending handling in
|
||||
smbd_post_send_iter() (bsc#1012628).
|
||||
- smb: client: port and use the wait_for_credits logic used by
|
||||
server (bsc#1012628).
|
||||
- smb: client: split out smbd_ib_post_send() (bsc#1012628).
|
||||
- smb: client: introduce and use smbd_{alloc, free}_send_io()
|
||||
(bsc#1012628).
|
||||
- smb: client: use smbdirect_send_batch processing (bsc#1012628).
|
||||
- smb: client: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: client: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: client: let smbd_post_send_negotiate_req() use
|
||||
smbd_post_send() (bsc#1012628).
|
||||
- smb: client: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- driver core: enforce device_lock for driver_match_device()
|
||||
(bsc#1012628).
|
||||
- Bluetooth: btusb: Add USB ID 7392:e611 for Edimax EW-7611UXB
|
||||
(bsc#1012628).
|
||||
- ALSA: hda/conexant: Add quirk for HP ZBook Studio G4
|
||||
(bsc#1012628).
|
||||
- crypto: iaa - Fix out-of-bounds index in
|
||||
find_empty_iaa_compression_mode (bsc#1012628).
|
||||
- crypto: octeontx - Fix length check to avoid truncation in
|
||||
ucode_load_store (bsc#1012628).
|
||||
- crypto: omap - Allocate OMAP_CRYPTO_FORCE_COPY scatterlists
|
||||
correctly (bsc#1012628).
|
||||
- crypto: virtio - Add spinlock protection with virtqueue
|
||||
notification (bsc#1012628).
|
||||
- crypto: virtio - Remove duplicated virtqueue_kick in
|
||||
virtio_crypto_skcipher_crypt_req (bsc#1012628).
|
||||
- nilfs2: Fix potential block overflow that cause system hang
|
||||
(bsc#1012628).
|
||||
- hfs: ensure sb->s_fs_info is always cleaned up (bsc#1012628).
|
||||
- wifi: rtw88: Fix alignment fault in rtw_core_enable_beacon()
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Validate sp before freeing associated memory
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Allow recovery for tape devices (bsc#1012628).
|
||||
- scsi: qla2xxx: Delay module unload while fabric scan in progress
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Free sp in error path to fix system crash
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Query FW again before proceeding with login
|
||||
(bsc#1012628).
|
||||
- sched/mmcid: Don't assume CID is CPU owned on mode switch
|
||||
(bsc#1012628).
|
||||
- bus: fsl-mc: fix use-after-free in driver_override_show()
|
||||
(bsc#1012628).
|
||||
- erofs: fix UAF issue for file-backed mounts w/ directio option
|
||||
(bsc#1012628).
|
||||
- xfs: fix UAF in xchk_btree_check_block_owner (bsc#1012628).
|
||||
- drm/exynos: vidi: use ctx->lock to protect struct vidi_context
|
||||
member variables related to memory alloc/free (bsc#1012628).
|
||||
- PCI: endpoint: Avoid creating sub-groups asynchronously
|
||||
(bsc#1012628).
|
||||
- wifi: rtl8xxxu: fix slab-out-of-bounds in rtl8xxxu_sta_add
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-001-io_uring-io-wq-add-exit-on-idle-state.patch.
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-002-io_uring-allow-io-wq-workers-to-exit-when-unus.patch.
|
||||
- commit 2f9cad9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 12 07:11:01 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- io_uring: allow io-wq workers to exit when unused
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- io_uring/io-wq: add exit-on-idle state
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- commit b7d1ad1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:33:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19 final
|
||||
- refresh configs (headers only)
|
||||
- commit 8f6da03
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:31:10 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv6hl configs
|
||||
- option values copied from armv7hl
|
||||
- commit 7ef7460
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:28:36 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv7hl configs
|
||||
- option values copied from arm64 except
|
||||
- MACH_MT6582=y
|
||||
- CLK_RK3506=y
|
||||
- commit e113f66
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:16:37 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable arm64 configs
|
||||
- option values copied from x86_64, i386 and riscv64 except
|
||||
- ARCH_BST=y
|
||||
- ARM64_MPAM=y
|
||||
- PCI_SKY1_HOST=m
|
||||
- PCIE_NXP_S32G=y
|
||||
- CACHEMAINT_FOR_HOTPLUG=y
|
||||
- HISI_SOC_HHA=m
|
||||
- PINCTRL_SKY1=m
|
||||
- PINCTRL_MT6878=y
|
||||
- PINCTRL_KAANAPALI=m
|
||||
- GPIO_SHARED_PROXY=m
|
||||
- CHARGER_BD71828=m
|
||||
- SENSORS_MACSMC_HWMON=m
|
||||
- IMX91_THERMAL=m
|
||||
- VIDEO_ROCKCHIP_CIF=m
|
||||
- DRM_IMX8MP_HDMI_PAI=m
|
||||
- DRM_DW_HDMI_QP_CEC=y
|
||||
- DRM_MEDIATEK_HDMI_V2=m
|
||||
- SND_HDA_CIX_IPBLOQ=m
|
||||
- SND_SOC_MT8189=m
|
||||
- SND_SOC_MT8189_NAU8825=m
|
||||
- USB_DWC3_APPLE=m
|
||||
- SCSI_UFS_AMD_VERSAL2=m
|
||||
- RTC_DRV_MACSMC=m
|
||||
- IPQ_NSSCC_5424=m
|
||||
- SM_VIDEOCC_8750=m
|
||||
- CLK_RV1126B=y
|
||||
- RTK_SYSTIMER=y
|
||||
- MTK_MFG_PM_DOMAIN=y
|
||||
- PWM_AIROHA=m
|
||||
- NVMEM_QNAP_MCU_EEPROM=m
|
||||
- INTERCONNECT_QCOM_KAANAPALI=m
|
||||
- ARM64_MPAM_DRIVER_DEBUG=n
|
||||
- commit 0e2d85d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 13:36:06 CET 2026 - tiwai@suse.de
|
||||
|
||||
- accel/amdxdna: Update firmware version check for latest firmware
|
||||
(bsc#1257724).
|
||||
- accel/amdxdna: Enable temporal sharing only mode (bsc#1257724).
|
||||
- accel/amdxdna: Remove NPU2 support (bsc#1257724).
|
||||
- accel/amdxdna: Remove amdxdna_flush() (bsc#1257724).
|
||||
- commit 6eaf1bb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 12:25:17 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch (bsc#1252084)
|
||||
The upstream didn't release *-101.ucode for some models.
|
||||
- commit 33ced68
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 23:11:15 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc8
|
||||
- commit 41a428c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 26 00:11:33 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc7
|
||||
- drop no longer needed patch (obsoleted by 3f2de814c059)
|
||||
- patches.rpmify/Revert-objtool-fix-build-failure-due-to-missing-libopcodes.patch
|
||||
- update configs
|
||||
- DRM_XE_USERPTR_INVAL_INJECT=n (on i386)
|
||||
- commit 3fe5a20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 21 16:03:32 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- Revert "objtool: fix build failure due to missing libopcodes
|
||||
check".
|
||||
- commit 50c998d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 09:23:32 CET 2026 - jdelvare@suse.com
|
||||
|
||||
- Enable NCT6694 support on x86_64
|
||||
This multi-function device is platform-independent and can be found
|
||||
on both ARM and x86 platforms.
|
||||
- commit e5dd94d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 06:20:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc6
|
||||
- refresh configs
|
||||
- commit e5456de
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 09:08:40 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc5
|
||||
- update configs
|
||||
- MISC_RP1=n (i386)
|
||||
- commit 444cfba
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:10:18 CET 2026 - tiwai@suse.de
|
||||
|
||||
|
||||
@@ -16,9 +16,9 @@
|
||||
#
|
||||
|
||||
|
||||
%define srcversion 6.19-rc4
|
||||
%define patchversion 6.19.0-rc4
|
||||
%define git_commit 53522494ab7628cbd71a32672d6628920ee26bf9
|
||||
%define srcversion 7.0-rc3
|
||||
%define patchversion 7.0.0-rc3
|
||||
%define git_commit 2efdd9cb76be4a8c4edd48301cd80301fc368c3b
|
||||
%define variant %{nil}
|
||||
%define gcc_package gcc
|
||||
%define gcc_compiler gcc
|
||||
@@ -28,9 +28,9 @@
|
||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,arch-symbols,check-module-license,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
|
||||
|
||||
Name: kernel-source
|
||||
Version: 6.19~rc4
|
||||
Version: 7.0~rc3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g5352249
|
||||
Release: <RELEASE>.g2efdd9c
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
||||
@@ -1,3 +1,540 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 11:56:41 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.rpmify/certs-Replace-openssl-invocation-with-OPENSSL.patch
|
||||
Improved the patch to allow the alternative openssl more generically
|
||||
- commit 332afe7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 01:13:29 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc3
|
||||
- Delete upstream patch kbuild-Leave-objtool-binary-around-with-make-clean.patch
|
||||
- refresh configs
|
||||
- commit 0e787eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 09:14:17 CET 2026 - msuchanek@suse.de
|
||||
|
||||
- Move dummy openssl from kernel-source to kernel
|
||||
Fixes: eb95320d3295 ("scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)")
|
||||
- commit dd3697c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 14:26:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- certs: Replace openssl invocation with $OPENSSL (bsc#1259065).
|
||||
- commit 104ab06
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:53:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Update config files: re-enable CONFIG_OPENSSL_SUPPORTS_ML_DSA (bsc#1259065)
|
||||
- commit 0bfc1b0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:50:22 CET 2026 - tiwai@suse.de
|
||||
|
||||
- scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)
|
||||
Needed for CONFIG_OPENSSL_SUPPORTS_ML_DSA introduced in 7.0 kernel.
|
||||
- commit eb95320
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 01:08:04 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc2
|
||||
- refresh config files
|
||||
- commit 1b18c75
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 28 13:12:05 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- kbuild: Leave objtool binary around with 'make clean' (kmp-fix).
|
||||
- commit 3f3f246
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 24 08:34:34 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: refresh
|
||||
- commit 440de45
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 17:50:45 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: add OPENSSL_SUPPORTS_ to IGNORED_CONFIGS_RE
|
||||
Config option OPENSSL_SUPPORTS_ML_DSA was introduced by mainline commit
|
||||
0ad9a71933e7 ("modsign: Enable ML-DSA module signing") in 7.0-rc1
|
||||
- commit 21b4616
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 15:51:53 CET 2026 - tzimmermann@suse.com
|
||||
|
||||
- config: Enable coreboot support (bsc#1258262)
|
||||
Enable kernel support for coreboot firmware. Enabling these options
|
||||
provides various interfaces under /sys/firmware/. One of the next
|
||||
releases of the Linux kernel will feature corebootdrm, a dedicated
|
||||
DRM driver for coreboot's system framebuffer. The driver relies on
|
||||
support for coreboot firmware.
|
||||
Leave out s390x and ppc64le, as coreboot apparently does not support
|
||||
them.
|
||||
- commit 14b0853
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:14:56 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 7.0-rc1
|
||||
- drop 77 patches (72 stable, 5 mainline):
|
||||
- patches.kernel.org/*
|
||||
- patches.rpmify/gendwarfksyms-Fix-build-on-32-bit-hosts.patch (ddc54f912a55)
|
||||
- patches.suse/accel-amdxdna-Enable-temporal-sharing-only-mode.patch
|
||||
- patches.suse/accel-amdxdna-Remove-NPU2-support.patch
|
||||
- patches.suse/accel-amdxdna-Remove-amdxdna_flush.patch
|
||||
- patches.suse/accel-amdxdna-Update-firmware-version-check-for-late.patch
|
||||
- refresh
|
||||
- patches.rpmify/btf-pahole-j1-option.patch
|
||||
- patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
|
||||
- patches.suse/Restore-kABI-for-NVidia-vGPU-driver.patch
|
||||
- patches.suse/btrfs-provide-super_operations-get_inode_dev
|
||||
- patches.suse/iwlwifi-declare-missing-firmware-files.patch
|
||||
- patches.suse/vfs-add-super_operations-get_inode_dev
|
||||
- patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch
|
||||
- disable ARM architectures (need config update)
|
||||
- new config options
|
||||
- General setup
|
||||
- CONFIG_RSEQ_SLICE_EXTENSION=n
|
||||
- Memory Management options
|
||||
- CONFIG_BALLOON_MIGRATION=y
|
||||
- Networking support
|
||||
- CONFIG_NET_DSA_TAG_MXL_862XX=m
|
||||
- File systems
|
||||
- CONFIG_EROFS_FS_PAGE_CACHE_SHARE=n
|
||||
- CONFIG_NFS_V4_0=n
|
||||
- CONFIG_NFSD_V4_POSIX_ACLS=n
|
||||
- Cryptographic API
|
||||
- CONFIG_CRYPTO_MLDSA=m
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_44=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_65=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_87=n
|
||||
- Kernel hacking
|
||||
- CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=0
|
||||
- CONFIG_BOOTPARAM_WQ_STALL_PANIC=0
|
||||
- CONFIG_DEBUG_ATOMIC=n
|
||||
- CONFIG_CONTEXT_ANALYSIS_TEST=n
|
||||
- Cryptographic API
|
||||
- CONFIG_PKCS7_WAIVE_AUTHATTRS_REJECTION_FOR_MLDSA=n
|
||||
- Network device support
|
||||
- CONFIG_NET_DSA_MXL862=m
|
||||
- CONFIG_DWMAC_MOTORCOMM=m
|
||||
- Hardware Monitoring support
|
||||
- CONFIG_SENSORS_HAC300S=m
|
||||
- CONFIG_SENSORS_MP5926=m
|
||||
- CONFIG_SENSORS_STEF48H28=m
|
||||
- Voltage and Current Regulator Support
|
||||
- CONFIG_REGULATOR_RT8092=m
|
||||
- CONFIG_REGULATOR_TPS65185=m
|
||||
- Multimedia support
|
||||
- CONFIG_VIDEO_OS05B10=m
|
||||
- CONFIG_VIDEO_S5K3M5=m
|
||||
- CONFIG_VIDEO_S5KJN1=m
|
||||
- Graphics support
|
||||
- CONFIG_DRM_ST7571=m
|
||||
- CONFIG_DRM_ST7571_SPI=m
|
||||
- CONFIG_DRM_ST7920=m
|
||||
- Sound card support
|
||||
- CONFIG_SND_SOC_RT5575=m
|
||||
- CONFIG_SND_SOC_RT5575_SPI=y
|
||||
- LED Support
|
||||
- CONFIG_LEDS_OSRAM_AMS_AS3668=m
|
||||
- CONFIG_LEDS_LP5812=m
|
||||
- Staging drivers
|
||||
- CONFIG_FB_TFT=m
|
||||
- CONFIG_FB_TFT_AGM1264K_FL=m
|
||||
- CONFIG_FB_TFT_BD663474=m
|
||||
- CONFIG_FB_TFT_HX8340BN=m
|
||||
- CONFIG_FB_TFT_HX8347D=m
|
||||
- CONFIG_FB_TFT_HX8353D=m
|
||||
- CONFIG_FB_TFT_HX8357D=m
|
||||
- CONFIG_FB_TFT_ILI9163=m
|
||||
- CONFIG_FB_TFT_ILI9320=m
|
||||
- CONFIG_FB_TFT_ILI9325=m
|
||||
- CONFIG_FB_TFT_ILI9340=m
|
||||
- CONFIG_FB_TFT_ILI9341=m
|
||||
- CONFIG_FB_TFT_ILI9481=m
|
||||
- CONFIG_FB_TFT_ILI9486=m
|
||||
- CONFIG_FB_TFT_PCD8544=m
|
||||
- CONFIG_FB_TFT_RA8875=m
|
||||
- CONFIG_FB_TFT_S6D02A1=m
|
||||
- CONFIG_FB_TFT_S6D1121=m
|
||||
- CONFIG_FB_TFT_SEPS525=m
|
||||
- CONFIG_FB_TFT_SH1106=m
|
||||
- CONFIG_FB_TFT_SSD1289=m
|
||||
- CONFIG_FB_TFT_SSD1305=m
|
||||
- CONFIG_FB_TFT_SSD1306=m
|
||||
- CONFIG_FB_TFT_SSD1331=m
|
||||
- CONFIG_FB_TFT_SSD1351=m
|
||||
- CONFIG_FB_TFT_ST7735R=m
|
||||
- CONFIG_FB_TFT_ST7789V=m
|
||||
- CONFIG_FB_TFT_TINYLCD=m
|
||||
- CONFIG_FB_TFT_TLS8204=m
|
||||
- CONFIG_FB_TFT_UC1611=m
|
||||
- CONFIG_FB_TFT_UC1701=m
|
||||
- CONFIG_FB_TFT_UPD161704=m
|
||||
- Industrial I/O support
|
||||
- CONFIG_ADXL345_I2C=n
|
||||
- CONFIG_ADXL345_SPI=n
|
||||
- CONFIG_AD4062=n
|
||||
- CONFIG_AD4134=n
|
||||
- CONFIG_TI_ADS1018=n
|
||||
- CONFIG_TI_ADS131M02=n
|
||||
- CONFIG_ADL8113=n
|
||||
- CONFIG_MAX22007=n
|
||||
- CONFIG_MCP47FEB02=n
|
||||
- CONFIG_MMC5633=n
|
||||
- CONFIG_ABP2030PA_I2C=n
|
||||
- CONFIG_ABP2030PA_SPI=n
|
||||
- CONFIG_MPRLS0025PA_I2C=n
|
||||
- CONFIG_MPRLS0025PA_SPI=n
|
||||
- misc drivers
|
||||
- CONFIG_PHY_GOOGLE_USB=m
|
||||
- CONFIG_DPLL_REFCNT_TRACKER=n
|
||||
- CONFIG_HID_RAPOO=m
|
||||
- CONFIG_USB_DWC3_GOOGLE=m
|
||||
- CONFIG_IOMMU_DEBUG_PAGEALLOC=n
|
||||
- OF dependent (i386, ppc64le, riscv64)
|
||||
- GPIO_LINE_MUX=m
|
||||
- POWER_SEQUENCING_PCIE_M2=m
|
||||
- i386
|
||||
- REGULATOR_MAX77675=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- ppc64le
|
||||
- INTEL_MEI=n
|
||||
- LOGO_LINUX_VGA16_FILE="drivers/video/logo/logo_linux_vga16.ppm"
|
||||
- LOGO_LINUX_CLUT224_FILE="drivers/video/logo/logo_linux_clut224.ppm"
|
||||
- TRUSTED_KEYS_PKWM=y
|
||||
- s390x
|
||||
- INTEL_MEI=n
|
||||
- s390x/zfcpdump
|
||||
- KEXEC_SIG=y
|
||||
- PKCS8_PRIVATE_KEY_PARSER=y
|
||||
- PKCS7_TEST_KEY=n
|
||||
- SIGNED_PE_FILE_VERIFICATION=y
|
||||
- FIPS_SIGNATURE_SELFTEST=n
|
||||
- SYSTEM_TRUSTED_KEYS=""
|
||||
- SYSTEM_EXTRA_CERTIFICATE=n
|
||||
- SECONDARY_TRUSTED_KEYRING=y
|
||||
- SECONDARY_TRUSTED_KEYRING_SIGNED_BY_BUILTIN=n
|
||||
- riscv64
|
||||
- RISCV_USER_CFI=y
|
||||
- INTEL_MEI=n
|
||||
- SPI_ATCSPI200=m
|
||||
- REGULATOR_MAX77675=m
|
||||
- VIDEO_DW_MIPI_CSI2RX=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- FIRMWARE_EDID=y
|
||||
- SND_SOC_CV1800B_TDM=m
|
||||
- SND_SOC_CV1800B_ADC_CODEC=m
|
||||
- SND_SOC_CV1800B_DAC_CODEC=m
|
||||
- SPACEMIT_K3_CCU=m
|
||||
- RESET_SPACEMIT_K1=m
|
||||
- RESET_SPACEMIT_K3=m
|
||||
- PHY_SPACEMIT_K1_PCIE=m
|
||||
- PHY_SPACEMIT_K1_USB2=m
|
||||
- commit 96fa923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 06:28:12 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.3 (bsc#1012628).
|
||||
- scsi: qla2xxx: Fix bsg_done() causing double free (bsc#1012628).
|
||||
- arm64: dts: mediatek: mt8183: Add missing endpoint IDs to
|
||||
display graph (bsc#1012628).
|
||||
- LoongArch: Rework KASAN initialization for PTW-enabled systems
|
||||
(bsc#1012628).
|
||||
- fbdev: rivafb: fix divide error in nv3_arb() (bsc#1012628).
|
||||
- fbdev: smscufx: properly copy ioctl memory to kernelspace
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to add gc count stat in f2fs_gc_range (bsc#1012628).
|
||||
- f2fs: fix to check sysfs filename w/ gc_pin_file_thresh
|
||||
correctly (bsc#1012628).
|
||||
- f2fs: fix IS_CHECKPOINTED flag inconsistency issue caused by
|
||||
concurrent atomic commit and checkpoint writes (bsc#1012628).
|
||||
- f2fs: fix out-of-bounds access in sysfs attribute read/write
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid UAF in f2fs_write_end_io() (bsc#1012628).
|
||||
- f2fs: support non-4KB block size without packed_ssa feature
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid mapping wrong physical block for swapfile
|
||||
(bsc#1012628).
|
||||
- f2fs: optimize f2fs_overwrite_io() for f2fs_iomap_begin
|
||||
(bsc#1012628).
|
||||
- Revert "f2fs: block cache/dio write during
|
||||
f2fs_enable_checkpoint()" (bsc#1012628).
|
||||
- USB: serial: option: add Telit FN920C04 RNDIS compositions
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
__write_node_folio() (bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
{read,write}_end_io (bsc#1012628).
|
||||
- f2fs: fix incomplete block usage in compact SSA summaries
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.3-014-iommu-arm-smmu-qcom-do-not-register-driver-in-.patch.
|
||||
- commit fcdf9c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 18 15:43:45 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Move upstreamed amdxdna patches into sorted section
|
||||
- commit 787d692
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:36:29 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- iommu/arm-smmu-qcom: do not register driver in probe()
|
||||
(git-fixes).
|
||||
- commit 7b303f4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:47 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.2 (bsc#1012628).
|
||||
- Revert "driver core: enforce device_lock for
|
||||
driver_match_device()" (bsc#1012628).
|
||||
- commit 57aa524
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:02 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.1 (bsc#1012628).
|
||||
- smb: client: split cached_fid bitfields to avoid shared-byte
|
||||
RMW races (bsc#1012628).
|
||||
- ksmbd: fix infinite loop caused by next_smb2_rcv_hdr_off reset
|
||||
in error paths (bsc#1012628).
|
||||
- ksmbd: add chann_lock to protect ksmbd_chann_list xarray
|
||||
(bsc#1012628).
|
||||
- smb: server: fix leak of active_num_conn in
|
||||
ksmbd_tcp_new_connection() (bsc#1012628).
|
||||
- smb: smbdirect: introduce
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: smbdirect: introduce smbdirect_socket.send_io.bcredits.*
|
||||
(bsc#1012628).
|
||||
- smb: server: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: server: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: server: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: server: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: server: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- smb: client: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: client: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: client: let smbd_post_send() make use of request->wr
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->recv_io.credits.count rollback
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->send_io.pending handling in
|
||||
smbd_post_send_iter() (bsc#1012628).
|
||||
- smb: client: port and use the wait_for_credits logic used by
|
||||
server (bsc#1012628).
|
||||
- smb: client: split out smbd_ib_post_send() (bsc#1012628).
|
||||
- smb: client: introduce and use smbd_{alloc, free}_send_io()
|
||||
(bsc#1012628).
|
||||
- smb: client: use smbdirect_send_batch processing (bsc#1012628).
|
||||
- smb: client: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: client: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: client: let smbd_post_send_negotiate_req() use
|
||||
smbd_post_send() (bsc#1012628).
|
||||
- smb: client: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- driver core: enforce device_lock for driver_match_device()
|
||||
(bsc#1012628).
|
||||
- Bluetooth: btusb: Add USB ID 7392:e611 for Edimax EW-7611UXB
|
||||
(bsc#1012628).
|
||||
- ALSA: hda/conexant: Add quirk for HP ZBook Studio G4
|
||||
(bsc#1012628).
|
||||
- crypto: iaa - Fix out-of-bounds index in
|
||||
find_empty_iaa_compression_mode (bsc#1012628).
|
||||
- crypto: octeontx - Fix length check to avoid truncation in
|
||||
ucode_load_store (bsc#1012628).
|
||||
- crypto: omap - Allocate OMAP_CRYPTO_FORCE_COPY scatterlists
|
||||
correctly (bsc#1012628).
|
||||
- crypto: virtio - Add spinlock protection with virtqueue
|
||||
notification (bsc#1012628).
|
||||
- crypto: virtio - Remove duplicated virtqueue_kick in
|
||||
virtio_crypto_skcipher_crypt_req (bsc#1012628).
|
||||
- nilfs2: Fix potential block overflow that cause system hang
|
||||
(bsc#1012628).
|
||||
- hfs: ensure sb->s_fs_info is always cleaned up (bsc#1012628).
|
||||
- wifi: rtw88: Fix alignment fault in rtw_core_enable_beacon()
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Validate sp before freeing associated memory
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Allow recovery for tape devices (bsc#1012628).
|
||||
- scsi: qla2xxx: Delay module unload while fabric scan in progress
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Free sp in error path to fix system crash
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Query FW again before proceeding with login
|
||||
(bsc#1012628).
|
||||
- sched/mmcid: Don't assume CID is CPU owned on mode switch
|
||||
(bsc#1012628).
|
||||
- bus: fsl-mc: fix use-after-free in driver_override_show()
|
||||
(bsc#1012628).
|
||||
- erofs: fix UAF issue for file-backed mounts w/ directio option
|
||||
(bsc#1012628).
|
||||
- xfs: fix UAF in xchk_btree_check_block_owner (bsc#1012628).
|
||||
- drm/exynos: vidi: use ctx->lock to protect struct vidi_context
|
||||
member variables related to memory alloc/free (bsc#1012628).
|
||||
- PCI: endpoint: Avoid creating sub-groups asynchronously
|
||||
(bsc#1012628).
|
||||
- wifi: rtl8xxxu: fix slab-out-of-bounds in rtl8xxxu_sta_add
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-001-io_uring-io-wq-add-exit-on-idle-state.patch.
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-002-io_uring-allow-io-wq-workers-to-exit-when-unus.patch.
|
||||
- commit 2f9cad9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 12 07:11:01 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- io_uring: allow io-wq workers to exit when unused
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- io_uring/io-wq: add exit-on-idle state
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- commit b7d1ad1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:33:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19 final
|
||||
- refresh configs (headers only)
|
||||
- commit 8f6da03
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:31:10 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv6hl configs
|
||||
- option values copied from armv7hl
|
||||
- commit 7ef7460
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:28:36 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv7hl configs
|
||||
- option values copied from arm64 except
|
||||
- MACH_MT6582=y
|
||||
- CLK_RK3506=y
|
||||
- commit e113f66
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:16:37 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable arm64 configs
|
||||
- option values copied from x86_64, i386 and riscv64 except
|
||||
- ARCH_BST=y
|
||||
- ARM64_MPAM=y
|
||||
- PCI_SKY1_HOST=m
|
||||
- PCIE_NXP_S32G=y
|
||||
- CACHEMAINT_FOR_HOTPLUG=y
|
||||
- HISI_SOC_HHA=m
|
||||
- PINCTRL_SKY1=m
|
||||
- PINCTRL_MT6878=y
|
||||
- PINCTRL_KAANAPALI=m
|
||||
- GPIO_SHARED_PROXY=m
|
||||
- CHARGER_BD71828=m
|
||||
- SENSORS_MACSMC_HWMON=m
|
||||
- IMX91_THERMAL=m
|
||||
- VIDEO_ROCKCHIP_CIF=m
|
||||
- DRM_IMX8MP_HDMI_PAI=m
|
||||
- DRM_DW_HDMI_QP_CEC=y
|
||||
- DRM_MEDIATEK_HDMI_V2=m
|
||||
- SND_HDA_CIX_IPBLOQ=m
|
||||
- SND_SOC_MT8189=m
|
||||
- SND_SOC_MT8189_NAU8825=m
|
||||
- USB_DWC3_APPLE=m
|
||||
- SCSI_UFS_AMD_VERSAL2=m
|
||||
- RTC_DRV_MACSMC=m
|
||||
- IPQ_NSSCC_5424=m
|
||||
- SM_VIDEOCC_8750=m
|
||||
- CLK_RV1126B=y
|
||||
- RTK_SYSTIMER=y
|
||||
- MTK_MFG_PM_DOMAIN=y
|
||||
- PWM_AIROHA=m
|
||||
- NVMEM_QNAP_MCU_EEPROM=m
|
||||
- INTERCONNECT_QCOM_KAANAPALI=m
|
||||
- ARM64_MPAM_DRIVER_DEBUG=n
|
||||
- commit 0e2d85d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 13:36:06 CET 2026 - tiwai@suse.de
|
||||
|
||||
- accel/amdxdna: Update firmware version check for latest firmware
|
||||
(bsc#1257724).
|
||||
- accel/amdxdna: Enable temporal sharing only mode (bsc#1257724).
|
||||
- accel/amdxdna: Remove NPU2 support (bsc#1257724).
|
||||
- accel/amdxdna: Remove amdxdna_flush() (bsc#1257724).
|
||||
- commit 6eaf1bb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 12:25:17 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch (bsc#1252084)
|
||||
The upstream didn't release *-101.ucode for some models.
|
||||
- commit 33ced68
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 23:11:15 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc8
|
||||
- commit 41a428c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 26 00:11:33 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc7
|
||||
- drop no longer needed patch (obsoleted by 3f2de814c059)
|
||||
- patches.rpmify/Revert-objtool-fix-build-failure-due-to-missing-libopcodes.patch
|
||||
- update configs
|
||||
- DRM_XE_USERPTR_INVAL_INJECT=n (on i386)
|
||||
- commit 3fe5a20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 21 16:03:32 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- Revert "objtool: fix build failure due to missing libopcodes
|
||||
check".
|
||||
- commit 50c998d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 09:23:32 CET 2026 - jdelvare@suse.com
|
||||
|
||||
- Enable NCT6694 support on x86_64
|
||||
This multi-function device is platform-independent and can be found
|
||||
on both ARM and x86 platforms.
|
||||
- commit e5dd94d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 06:20:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc6
|
||||
- refresh configs
|
||||
- commit e5456de
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 09:08:40 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc5
|
||||
- update configs
|
||||
- MISC_RP1=n (i386)
|
||||
- commit 444cfba
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:10:18 CET 2026 - tiwai@suse.de
|
||||
|
||||
|
||||
@@ -16,15 +16,15 @@
|
||||
#
|
||||
|
||||
|
||||
%define git_commit 53522494ab7628cbd71a32672d6628920ee26bf9
|
||||
%define git_commit 2efdd9cb76be4a8c4edd48301cd80301fc368c3b
|
||||
%define variant %{nil}
|
||||
|
||||
%include %_sourcedir/kernel-spec-macros
|
||||
|
||||
Name: kernel-syms
|
||||
Version: 6.19~rc4
|
||||
Version: 7.0~rc3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g5352249
|
||||
Release: <RELEASE>.g2efdd9c
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
||||
@@ -1,3 +1,540 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 11:56:41 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.rpmify/certs-Replace-openssl-invocation-with-OPENSSL.patch
|
||||
Improved the patch to allow the alternative openssl more generically
|
||||
- commit 332afe7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 01:13:29 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc3
|
||||
- Delete upstream patch kbuild-Leave-objtool-binary-around-with-make-clean.patch
|
||||
- refresh configs
|
||||
- commit 0e787eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 09:14:17 CET 2026 - msuchanek@suse.de
|
||||
|
||||
- Move dummy openssl from kernel-source to kernel
|
||||
Fixes: eb95320d3295 ("scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)")
|
||||
- commit dd3697c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 14:26:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- certs: Replace openssl invocation with $OPENSSL (bsc#1259065).
|
||||
- commit 104ab06
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:53:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Update config files: re-enable CONFIG_OPENSSL_SUPPORTS_ML_DSA (bsc#1259065)
|
||||
- commit 0bfc1b0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:50:22 CET 2026 - tiwai@suse.de
|
||||
|
||||
- scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)
|
||||
Needed for CONFIG_OPENSSL_SUPPORTS_ML_DSA introduced in 7.0 kernel.
|
||||
- commit eb95320
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 01:08:04 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc2
|
||||
- refresh config files
|
||||
- commit 1b18c75
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 28 13:12:05 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- kbuild: Leave objtool binary around with 'make clean' (kmp-fix).
|
||||
- commit 3f3f246
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 24 08:34:34 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: refresh
|
||||
- commit 440de45
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 17:50:45 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: add OPENSSL_SUPPORTS_ to IGNORED_CONFIGS_RE
|
||||
Config option OPENSSL_SUPPORTS_ML_DSA was introduced by mainline commit
|
||||
0ad9a71933e7 ("modsign: Enable ML-DSA module signing") in 7.0-rc1
|
||||
- commit 21b4616
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 15:51:53 CET 2026 - tzimmermann@suse.com
|
||||
|
||||
- config: Enable coreboot support (bsc#1258262)
|
||||
Enable kernel support for coreboot firmware. Enabling these options
|
||||
provides various interfaces under /sys/firmware/. One of the next
|
||||
releases of the Linux kernel will feature corebootdrm, a dedicated
|
||||
DRM driver for coreboot's system framebuffer. The driver relies on
|
||||
support for coreboot firmware.
|
||||
Leave out s390x and ppc64le, as coreboot apparently does not support
|
||||
them.
|
||||
- commit 14b0853
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:14:56 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 7.0-rc1
|
||||
- drop 77 patches (72 stable, 5 mainline):
|
||||
- patches.kernel.org/*
|
||||
- patches.rpmify/gendwarfksyms-Fix-build-on-32-bit-hosts.patch (ddc54f912a55)
|
||||
- patches.suse/accel-amdxdna-Enable-temporal-sharing-only-mode.patch
|
||||
- patches.suse/accel-amdxdna-Remove-NPU2-support.patch
|
||||
- patches.suse/accel-amdxdna-Remove-amdxdna_flush.patch
|
||||
- patches.suse/accel-amdxdna-Update-firmware-version-check-for-late.patch
|
||||
- refresh
|
||||
- patches.rpmify/btf-pahole-j1-option.patch
|
||||
- patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
|
||||
- patches.suse/Restore-kABI-for-NVidia-vGPU-driver.patch
|
||||
- patches.suse/btrfs-provide-super_operations-get_inode_dev
|
||||
- patches.suse/iwlwifi-declare-missing-firmware-files.patch
|
||||
- patches.suse/vfs-add-super_operations-get_inode_dev
|
||||
- patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch
|
||||
- disable ARM architectures (need config update)
|
||||
- new config options
|
||||
- General setup
|
||||
- CONFIG_RSEQ_SLICE_EXTENSION=n
|
||||
- Memory Management options
|
||||
- CONFIG_BALLOON_MIGRATION=y
|
||||
- Networking support
|
||||
- CONFIG_NET_DSA_TAG_MXL_862XX=m
|
||||
- File systems
|
||||
- CONFIG_EROFS_FS_PAGE_CACHE_SHARE=n
|
||||
- CONFIG_NFS_V4_0=n
|
||||
- CONFIG_NFSD_V4_POSIX_ACLS=n
|
||||
- Cryptographic API
|
||||
- CONFIG_CRYPTO_MLDSA=m
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_44=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_65=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_87=n
|
||||
- Kernel hacking
|
||||
- CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=0
|
||||
- CONFIG_BOOTPARAM_WQ_STALL_PANIC=0
|
||||
- CONFIG_DEBUG_ATOMIC=n
|
||||
- CONFIG_CONTEXT_ANALYSIS_TEST=n
|
||||
- Cryptographic API
|
||||
- CONFIG_PKCS7_WAIVE_AUTHATTRS_REJECTION_FOR_MLDSA=n
|
||||
- Network device support
|
||||
- CONFIG_NET_DSA_MXL862=m
|
||||
- CONFIG_DWMAC_MOTORCOMM=m
|
||||
- Hardware Monitoring support
|
||||
- CONFIG_SENSORS_HAC300S=m
|
||||
- CONFIG_SENSORS_MP5926=m
|
||||
- CONFIG_SENSORS_STEF48H28=m
|
||||
- Voltage and Current Regulator Support
|
||||
- CONFIG_REGULATOR_RT8092=m
|
||||
- CONFIG_REGULATOR_TPS65185=m
|
||||
- Multimedia support
|
||||
- CONFIG_VIDEO_OS05B10=m
|
||||
- CONFIG_VIDEO_S5K3M5=m
|
||||
- CONFIG_VIDEO_S5KJN1=m
|
||||
- Graphics support
|
||||
- CONFIG_DRM_ST7571=m
|
||||
- CONFIG_DRM_ST7571_SPI=m
|
||||
- CONFIG_DRM_ST7920=m
|
||||
- Sound card support
|
||||
- CONFIG_SND_SOC_RT5575=m
|
||||
- CONFIG_SND_SOC_RT5575_SPI=y
|
||||
- LED Support
|
||||
- CONFIG_LEDS_OSRAM_AMS_AS3668=m
|
||||
- CONFIG_LEDS_LP5812=m
|
||||
- Staging drivers
|
||||
- CONFIG_FB_TFT=m
|
||||
- CONFIG_FB_TFT_AGM1264K_FL=m
|
||||
- CONFIG_FB_TFT_BD663474=m
|
||||
- CONFIG_FB_TFT_HX8340BN=m
|
||||
- CONFIG_FB_TFT_HX8347D=m
|
||||
- CONFIG_FB_TFT_HX8353D=m
|
||||
- CONFIG_FB_TFT_HX8357D=m
|
||||
- CONFIG_FB_TFT_ILI9163=m
|
||||
- CONFIG_FB_TFT_ILI9320=m
|
||||
- CONFIG_FB_TFT_ILI9325=m
|
||||
- CONFIG_FB_TFT_ILI9340=m
|
||||
- CONFIG_FB_TFT_ILI9341=m
|
||||
- CONFIG_FB_TFT_ILI9481=m
|
||||
- CONFIG_FB_TFT_ILI9486=m
|
||||
- CONFIG_FB_TFT_PCD8544=m
|
||||
- CONFIG_FB_TFT_RA8875=m
|
||||
- CONFIG_FB_TFT_S6D02A1=m
|
||||
- CONFIG_FB_TFT_S6D1121=m
|
||||
- CONFIG_FB_TFT_SEPS525=m
|
||||
- CONFIG_FB_TFT_SH1106=m
|
||||
- CONFIG_FB_TFT_SSD1289=m
|
||||
- CONFIG_FB_TFT_SSD1305=m
|
||||
- CONFIG_FB_TFT_SSD1306=m
|
||||
- CONFIG_FB_TFT_SSD1331=m
|
||||
- CONFIG_FB_TFT_SSD1351=m
|
||||
- CONFIG_FB_TFT_ST7735R=m
|
||||
- CONFIG_FB_TFT_ST7789V=m
|
||||
- CONFIG_FB_TFT_TINYLCD=m
|
||||
- CONFIG_FB_TFT_TLS8204=m
|
||||
- CONFIG_FB_TFT_UC1611=m
|
||||
- CONFIG_FB_TFT_UC1701=m
|
||||
- CONFIG_FB_TFT_UPD161704=m
|
||||
- Industrial I/O support
|
||||
- CONFIG_ADXL345_I2C=n
|
||||
- CONFIG_ADXL345_SPI=n
|
||||
- CONFIG_AD4062=n
|
||||
- CONFIG_AD4134=n
|
||||
- CONFIG_TI_ADS1018=n
|
||||
- CONFIG_TI_ADS131M02=n
|
||||
- CONFIG_ADL8113=n
|
||||
- CONFIG_MAX22007=n
|
||||
- CONFIG_MCP47FEB02=n
|
||||
- CONFIG_MMC5633=n
|
||||
- CONFIG_ABP2030PA_I2C=n
|
||||
- CONFIG_ABP2030PA_SPI=n
|
||||
- CONFIG_MPRLS0025PA_I2C=n
|
||||
- CONFIG_MPRLS0025PA_SPI=n
|
||||
- misc drivers
|
||||
- CONFIG_PHY_GOOGLE_USB=m
|
||||
- CONFIG_DPLL_REFCNT_TRACKER=n
|
||||
- CONFIG_HID_RAPOO=m
|
||||
- CONFIG_USB_DWC3_GOOGLE=m
|
||||
- CONFIG_IOMMU_DEBUG_PAGEALLOC=n
|
||||
- OF dependent (i386, ppc64le, riscv64)
|
||||
- GPIO_LINE_MUX=m
|
||||
- POWER_SEQUENCING_PCIE_M2=m
|
||||
- i386
|
||||
- REGULATOR_MAX77675=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- ppc64le
|
||||
- INTEL_MEI=n
|
||||
- LOGO_LINUX_VGA16_FILE="drivers/video/logo/logo_linux_vga16.ppm"
|
||||
- LOGO_LINUX_CLUT224_FILE="drivers/video/logo/logo_linux_clut224.ppm"
|
||||
- TRUSTED_KEYS_PKWM=y
|
||||
- s390x
|
||||
- INTEL_MEI=n
|
||||
- s390x/zfcpdump
|
||||
- KEXEC_SIG=y
|
||||
- PKCS8_PRIVATE_KEY_PARSER=y
|
||||
- PKCS7_TEST_KEY=n
|
||||
- SIGNED_PE_FILE_VERIFICATION=y
|
||||
- FIPS_SIGNATURE_SELFTEST=n
|
||||
- SYSTEM_TRUSTED_KEYS=""
|
||||
- SYSTEM_EXTRA_CERTIFICATE=n
|
||||
- SECONDARY_TRUSTED_KEYRING=y
|
||||
- SECONDARY_TRUSTED_KEYRING_SIGNED_BY_BUILTIN=n
|
||||
- riscv64
|
||||
- RISCV_USER_CFI=y
|
||||
- INTEL_MEI=n
|
||||
- SPI_ATCSPI200=m
|
||||
- REGULATOR_MAX77675=m
|
||||
- VIDEO_DW_MIPI_CSI2RX=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- FIRMWARE_EDID=y
|
||||
- SND_SOC_CV1800B_TDM=m
|
||||
- SND_SOC_CV1800B_ADC_CODEC=m
|
||||
- SND_SOC_CV1800B_DAC_CODEC=m
|
||||
- SPACEMIT_K3_CCU=m
|
||||
- RESET_SPACEMIT_K1=m
|
||||
- RESET_SPACEMIT_K3=m
|
||||
- PHY_SPACEMIT_K1_PCIE=m
|
||||
- PHY_SPACEMIT_K1_USB2=m
|
||||
- commit 96fa923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 06:28:12 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.3 (bsc#1012628).
|
||||
- scsi: qla2xxx: Fix bsg_done() causing double free (bsc#1012628).
|
||||
- arm64: dts: mediatek: mt8183: Add missing endpoint IDs to
|
||||
display graph (bsc#1012628).
|
||||
- LoongArch: Rework KASAN initialization for PTW-enabled systems
|
||||
(bsc#1012628).
|
||||
- fbdev: rivafb: fix divide error in nv3_arb() (bsc#1012628).
|
||||
- fbdev: smscufx: properly copy ioctl memory to kernelspace
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to add gc count stat in f2fs_gc_range (bsc#1012628).
|
||||
- f2fs: fix to check sysfs filename w/ gc_pin_file_thresh
|
||||
correctly (bsc#1012628).
|
||||
- f2fs: fix IS_CHECKPOINTED flag inconsistency issue caused by
|
||||
concurrent atomic commit and checkpoint writes (bsc#1012628).
|
||||
- f2fs: fix out-of-bounds access in sysfs attribute read/write
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid UAF in f2fs_write_end_io() (bsc#1012628).
|
||||
- f2fs: support non-4KB block size without packed_ssa feature
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid mapping wrong physical block for swapfile
|
||||
(bsc#1012628).
|
||||
- f2fs: optimize f2fs_overwrite_io() for f2fs_iomap_begin
|
||||
(bsc#1012628).
|
||||
- Revert "f2fs: block cache/dio write during
|
||||
f2fs_enable_checkpoint()" (bsc#1012628).
|
||||
- USB: serial: option: add Telit FN920C04 RNDIS compositions
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
__write_node_folio() (bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
{read,write}_end_io (bsc#1012628).
|
||||
- f2fs: fix incomplete block usage in compact SSA summaries
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.3-014-iommu-arm-smmu-qcom-do-not-register-driver-in-.patch.
|
||||
- commit fcdf9c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 18 15:43:45 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Move upstreamed amdxdna patches into sorted section
|
||||
- commit 787d692
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:36:29 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- iommu/arm-smmu-qcom: do not register driver in probe()
|
||||
(git-fixes).
|
||||
- commit 7b303f4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:47 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.2 (bsc#1012628).
|
||||
- Revert "driver core: enforce device_lock for
|
||||
driver_match_device()" (bsc#1012628).
|
||||
- commit 57aa524
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:02 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.1 (bsc#1012628).
|
||||
- smb: client: split cached_fid bitfields to avoid shared-byte
|
||||
RMW races (bsc#1012628).
|
||||
- ksmbd: fix infinite loop caused by next_smb2_rcv_hdr_off reset
|
||||
in error paths (bsc#1012628).
|
||||
- ksmbd: add chann_lock to protect ksmbd_chann_list xarray
|
||||
(bsc#1012628).
|
||||
- smb: server: fix leak of active_num_conn in
|
||||
ksmbd_tcp_new_connection() (bsc#1012628).
|
||||
- smb: smbdirect: introduce
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: smbdirect: introduce smbdirect_socket.send_io.bcredits.*
|
||||
(bsc#1012628).
|
||||
- smb: server: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: server: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: server: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: server: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: server: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- smb: client: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: client: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: client: let smbd_post_send() make use of request->wr
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->recv_io.credits.count rollback
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->send_io.pending handling in
|
||||
smbd_post_send_iter() (bsc#1012628).
|
||||
- smb: client: port and use the wait_for_credits logic used by
|
||||
server (bsc#1012628).
|
||||
- smb: client: split out smbd_ib_post_send() (bsc#1012628).
|
||||
- smb: client: introduce and use smbd_{alloc, free}_send_io()
|
||||
(bsc#1012628).
|
||||
- smb: client: use smbdirect_send_batch processing (bsc#1012628).
|
||||
- smb: client: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: client: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: client: let smbd_post_send_negotiate_req() use
|
||||
smbd_post_send() (bsc#1012628).
|
||||
- smb: client: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- driver core: enforce device_lock for driver_match_device()
|
||||
(bsc#1012628).
|
||||
- Bluetooth: btusb: Add USB ID 7392:e611 for Edimax EW-7611UXB
|
||||
(bsc#1012628).
|
||||
- ALSA: hda/conexant: Add quirk for HP ZBook Studio G4
|
||||
(bsc#1012628).
|
||||
- crypto: iaa - Fix out-of-bounds index in
|
||||
find_empty_iaa_compression_mode (bsc#1012628).
|
||||
- crypto: octeontx - Fix length check to avoid truncation in
|
||||
ucode_load_store (bsc#1012628).
|
||||
- crypto: omap - Allocate OMAP_CRYPTO_FORCE_COPY scatterlists
|
||||
correctly (bsc#1012628).
|
||||
- crypto: virtio - Add spinlock protection with virtqueue
|
||||
notification (bsc#1012628).
|
||||
- crypto: virtio - Remove duplicated virtqueue_kick in
|
||||
virtio_crypto_skcipher_crypt_req (bsc#1012628).
|
||||
- nilfs2: Fix potential block overflow that cause system hang
|
||||
(bsc#1012628).
|
||||
- hfs: ensure sb->s_fs_info is always cleaned up (bsc#1012628).
|
||||
- wifi: rtw88: Fix alignment fault in rtw_core_enable_beacon()
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Validate sp before freeing associated memory
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Allow recovery for tape devices (bsc#1012628).
|
||||
- scsi: qla2xxx: Delay module unload while fabric scan in progress
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Free sp in error path to fix system crash
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Query FW again before proceeding with login
|
||||
(bsc#1012628).
|
||||
- sched/mmcid: Don't assume CID is CPU owned on mode switch
|
||||
(bsc#1012628).
|
||||
- bus: fsl-mc: fix use-after-free in driver_override_show()
|
||||
(bsc#1012628).
|
||||
- erofs: fix UAF issue for file-backed mounts w/ directio option
|
||||
(bsc#1012628).
|
||||
- xfs: fix UAF in xchk_btree_check_block_owner (bsc#1012628).
|
||||
- drm/exynos: vidi: use ctx->lock to protect struct vidi_context
|
||||
member variables related to memory alloc/free (bsc#1012628).
|
||||
- PCI: endpoint: Avoid creating sub-groups asynchronously
|
||||
(bsc#1012628).
|
||||
- wifi: rtl8xxxu: fix slab-out-of-bounds in rtl8xxxu_sta_add
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-001-io_uring-io-wq-add-exit-on-idle-state.patch.
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-002-io_uring-allow-io-wq-workers-to-exit-when-unus.patch.
|
||||
- commit 2f9cad9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 12 07:11:01 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- io_uring: allow io-wq workers to exit when unused
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- io_uring/io-wq: add exit-on-idle state
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- commit b7d1ad1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:33:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19 final
|
||||
- refresh configs (headers only)
|
||||
- commit 8f6da03
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:31:10 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv6hl configs
|
||||
- option values copied from armv7hl
|
||||
- commit 7ef7460
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:28:36 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv7hl configs
|
||||
- option values copied from arm64 except
|
||||
- MACH_MT6582=y
|
||||
- CLK_RK3506=y
|
||||
- commit e113f66
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:16:37 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable arm64 configs
|
||||
- option values copied from x86_64, i386 and riscv64 except
|
||||
- ARCH_BST=y
|
||||
- ARM64_MPAM=y
|
||||
- PCI_SKY1_HOST=m
|
||||
- PCIE_NXP_S32G=y
|
||||
- CACHEMAINT_FOR_HOTPLUG=y
|
||||
- HISI_SOC_HHA=m
|
||||
- PINCTRL_SKY1=m
|
||||
- PINCTRL_MT6878=y
|
||||
- PINCTRL_KAANAPALI=m
|
||||
- GPIO_SHARED_PROXY=m
|
||||
- CHARGER_BD71828=m
|
||||
- SENSORS_MACSMC_HWMON=m
|
||||
- IMX91_THERMAL=m
|
||||
- VIDEO_ROCKCHIP_CIF=m
|
||||
- DRM_IMX8MP_HDMI_PAI=m
|
||||
- DRM_DW_HDMI_QP_CEC=y
|
||||
- DRM_MEDIATEK_HDMI_V2=m
|
||||
- SND_HDA_CIX_IPBLOQ=m
|
||||
- SND_SOC_MT8189=m
|
||||
- SND_SOC_MT8189_NAU8825=m
|
||||
- USB_DWC3_APPLE=m
|
||||
- SCSI_UFS_AMD_VERSAL2=m
|
||||
- RTC_DRV_MACSMC=m
|
||||
- IPQ_NSSCC_5424=m
|
||||
- SM_VIDEOCC_8750=m
|
||||
- CLK_RV1126B=y
|
||||
- RTK_SYSTIMER=y
|
||||
- MTK_MFG_PM_DOMAIN=y
|
||||
- PWM_AIROHA=m
|
||||
- NVMEM_QNAP_MCU_EEPROM=m
|
||||
- INTERCONNECT_QCOM_KAANAPALI=m
|
||||
- ARM64_MPAM_DRIVER_DEBUG=n
|
||||
- commit 0e2d85d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 13:36:06 CET 2026 - tiwai@suse.de
|
||||
|
||||
- accel/amdxdna: Update firmware version check for latest firmware
|
||||
(bsc#1257724).
|
||||
- accel/amdxdna: Enable temporal sharing only mode (bsc#1257724).
|
||||
- accel/amdxdna: Remove NPU2 support (bsc#1257724).
|
||||
- accel/amdxdna: Remove amdxdna_flush() (bsc#1257724).
|
||||
- commit 6eaf1bb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 12:25:17 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch (bsc#1252084)
|
||||
The upstream didn't release *-101.ucode for some models.
|
||||
- commit 33ced68
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 23:11:15 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc8
|
||||
- commit 41a428c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 26 00:11:33 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc7
|
||||
- drop no longer needed patch (obsoleted by 3f2de814c059)
|
||||
- patches.rpmify/Revert-objtool-fix-build-failure-due-to-missing-libopcodes.patch
|
||||
- update configs
|
||||
- DRM_XE_USERPTR_INVAL_INJECT=n (on i386)
|
||||
- commit 3fe5a20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 21 16:03:32 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- Revert "objtool: fix build failure due to missing libopcodes
|
||||
check".
|
||||
- commit 50c998d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 09:23:32 CET 2026 - jdelvare@suse.com
|
||||
|
||||
- Enable NCT6694 support on x86_64
|
||||
This multi-function device is platform-independent and can be found
|
||||
on both ARM and x86 platforms.
|
||||
- commit e5dd94d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 06:20:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc6
|
||||
- refresh configs
|
||||
- commit e5456de
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 09:08:40 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc5
|
||||
- update configs
|
||||
- MISC_RP1=n (i386)
|
||||
- commit 444cfba
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:10:18 CET 2026 - tiwai@suse.de
|
||||
|
||||
|
||||
@@ -17,9 +17,9 @@
|
||||
# needssslcertforbuild
|
||||
|
||||
|
||||
%define srcversion 6.19-rc4
|
||||
%define patchversion 6.19.0-rc4
|
||||
%define git_commit 53522494ab7628cbd71a32672d6628920ee26bf9
|
||||
%define srcversion 7.0-rc3
|
||||
%define patchversion 7.0.0-rc3
|
||||
%define git_commit 2efdd9cb76be4a8c4edd48301cd80301fc368c3b
|
||||
%define variant %{nil}
|
||||
%define compress_modules zstd
|
||||
%define compress_vmlinux xz
|
||||
@@ -40,9 +40,9 @@
|
||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,arch-symbols,check-module-license,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
|
||||
|
||||
Name: kernel-vanilla
|
||||
Version: 6.19~rc4
|
||||
Version: 7.0~rc3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g5352249
|
||||
Release: <RELEASE>.g2efdd9c
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
||||
@@ -1,3 +1,540 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 11:56:41 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.rpmify/certs-Replace-openssl-invocation-with-OPENSSL.patch
|
||||
Improved the patch to allow the alternative openssl more generically
|
||||
- commit 332afe7
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 9 01:13:29 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc3
|
||||
- Delete upstream patch kbuild-Leave-objtool-binary-around-with-make-clean.patch
|
||||
- refresh configs
|
||||
- commit 0e787eb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 4 09:14:17 CET 2026 - msuchanek@suse.de
|
||||
|
||||
- Move dummy openssl from kernel-source to kernel
|
||||
Fixes: eb95320d3295 ("scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)")
|
||||
- commit dd3697c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 14:26:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- certs: Replace openssl invocation with $OPENSSL (bsc#1259065).
|
||||
- commit 104ab06
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:53:20 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Update config files: re-enable CONFIG_OPENSSL_SUPPORTS_ML_DSA (bsc#1259065)
|
||||
- commit 0bfc1b0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 11:50:22 CET 2026 - tiwai@suse.de
|
||||
|
||||
- scripts/run_oldconfig: use dummy-tools openssl (bsc#1259065)
|
||||
Needed for CONFIG_OPENSSL_SUPPORTS_ML_DSA introduced in 7.0 kernel.
|
||||
- commit eb95320
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 2 01:08:04 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- update to 7.0-rc2
|
||||
- refresh config files
|
||||
- commit 1b18c75
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 28 13:12:05 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- kbuild: Leave objtool binary around with 'make clean' (kmp-fix).
|
||||
- commit 3f3f246
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 24 08:34:34 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: refresh
|
||||
- commit 440de45
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 17:50:45 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- rpm/check-for-config-changes: add OPENSSL_SUPPORTS_ to IGNORED_CONFIGS_RE
|
||||
Config option OPENSSL_SUPPORTS_ML_DSA was introduced by mainline commit
|
||||
0ad9a71933e7 ("modsign: Enable ML-DSA module signing") in 7.0-rc1
|
||||
- commit 21b4616
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 15:51:53 CET 2026 - tzimmermann@suse.com
|
||||
|
||||
- config: Enable coreboot support (bsc#1258262)
|
||||
Enable kernel support for coreboot firmware. Enabling these options
|
||||
provides various interfaces under /sys/firmware/. One of the next
|
||||
releases of the Linux kernel will feature corebootdrm, a dedicated
|
||||
DRM driver for coreboot's system framebuffer. The driver relies on
|
||||
support for coreboot firmware.
|
||||
Leave out s390x and ppc64le, as coreboot apparently does not support
|
||||
them.
|
||||
- commit 14b0853
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 23 14:14:56 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 7.0-rc1
|
||||
- drop 77 patches (72 stable, 5 mainline):
|
||||
- patches.kernel.org/*
|
||||
- patches.rpmify/gendwarfksyms-Fix-build-on-32-bit-hosts.patch (ddc54f912a55)
|
||||
- patches.suse/accel-amdxdna-Enable-temporal-sharing-only-mode.patch
|
||||
- patches.suse/accel-amdxdna-Remove-NPU2-support.patch
|
||||
- patches.suse/accel-amdxdna-Remove-amdxdna_flush.patch
|
||||
- patches.suse/accel-amdxdna-Update-firmware-version-check-for-late.patch
|
||||
- refresh
|
||||
- patches.rpmify/btf-pahole-j1-option.patch
|
||||
- patches.suse/0003-efi-Lock-down-the-kernel-if-booted-in-secure-boot-mode.patch
|
||||
- patches.suse/Restore-kABI-for-NVidia-vGPU-driver.patch
|
||||
- patches.suse/btrfs-provide-super_operations-get_inode_dev
|
||||
- patches.suse/iwlwifi-declare-missing-firmware-files.patch
|
||||
- patches.suse/vfs-add-super_operations-get_inode_dev
|
||||
- patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch
|
||||
- disable ARM architectures (need config update)
|
||||
- new config options
|
||||
- General setup
|
||||
- CONFIG_RSEQ_SLICE_EXTENSION=n
|
||||
- Memory Management options
|
||||
- CONFIG_BALLOON_MIGRATION=y
|
||||
- Networking support
|
||||
- CONFIG_NET_DSA_TAG_MXL_862XX=m
|
||||
- File systems
|
||||
- CONFIG_EROFS_FS_PAGE_CACHE_SHARE=n
|
||||
- CONFIG_NFS_V4_0=n
|
||||
- CONFIG_NFSD_V4_POSIX_ACLS=n
|
||||
- Cryptographic API
|
||||
- CONFIG_CRYPTO_MLDSA=m
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_44=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_65=n
|
||||
- CONFIG_MODULE_SIG_KEY_TYPE_MLDSA_87=n
|
||||
- Kernel hacking
|
||||
- CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=0
|
||||
- CONFIG_BOOTPARAM_WQ_STALL_PANIC=0
|
||||
- CONFIG_DEBUG_ATOMIC=n
|
||||
- CONFIG_CONTEXT_ANALYSIS_TEST=n
|
||||
- Cryptographic API
|
||||
- CONFIG_PKCS7_WAIVE_AUTHATTRS_REJECTION_FOR_MLDSA=n
|
||||
- Network device support
|
||||
- CONFIG_NET_DSA_MXL862=m
|
||||
- CONFIG_DWMAC_MOTORCOMM=m
|
||||
- Hardware Monitoring support
|
||||
- CONFIG_SENSORS_HAC300S=m
|
||||
- CONFIG_SENSORS_MP5926=m
|
||||
- CONFIG_SENSORS_STEF48H28=m
|
||||
- Voltage and Current Regulator Support
|
||||
- CONFIG_REGULATOR_RT8092=m
|
||||
- CONFIG_REGULATOR_TPS65185=m
|
||||
- Multimedia support
|
||||
- CONFIG_VIDEO_OS05B10=m
|
||||
- CONFIG_VIDEO_S5K3M5=m
|
||||
- CONFIG_VIDEO_S5KJN1=m
|
||||
- Graphics support
|
||||
- CONFIG_DRM_ST7571=m
|
||||
- CONFIG_DRM_ST7571_SPI=m
|
||||
- CONFIG_DRM_ST7920=m
|
||||
- Sound card support
|
||||
- CONFIG_SND_SOC_RT5575=m
|
||||
- CONFIG_SND_SOC_RT5575_SPI=y
|
||||
- LED Support
|
||||
- CONFIG_LEDS_OSRAM_AMS_AS3668=m
|
||||
- CONFIG_LEDS_LP5812=m
|
||||
- Staging drivers
|
||||
- CONFIG_FB_TFT=m
|
||||
- CONFIG_FB_TFT_AGM1264K_FL=m
|
||||
- CONFIG_FB_TFT_BD663474=m
|
||||
- CONFIG_FB_TFT_HX8340BN=m
|
||||
- CONFIG_FB_TFT_HX8347D=m
|
||||
- CONFIG_FB_TFT_HX8353D=m
|
||||
- CONFIG_FB_TFT_HX8357D=m
|
||||
- CONFIG_FB_TFT_ILI9163=m
|
||||
- CONFIG_FB_TFT_ILI9320=m
|
||||
- CONFIG_FB_TFT_ILI9325=m
|
||||
- CONFIG_FB_TFT_ILI9340=m
|
||||
- CONFIG_FB_TFT_ILI9341=m
|
||||
- CONFIG_FB_TFT_ILI9481=m
|
||||
- CONFIG_FB_TFT_ILI9486=m
|
||||
- CONFIG_FB_TFT_PCD8544=m
|
||||
- CONFIG_FB_TFT_RA8875=m
|
||||
- CONFIG_FB_TFT_S6D02A1=m
|
||||
- CONFIG_FB_TFT_S6D1121=m
|
||||
- CONFIG_FB_TFT_SEPS525=m
|
||||
- CONFIG_FB_TFT_SH1106=m
|
||||
- CONFIG_FB_TFT_SSD1289=m
|
||||
- CONFIG_FB_TFT_SSD1305=m
|
||||
- CONFIG_FB_TFT_SSD1306=m
|
||||
- CONFIG_FB_TFT_SSD1331=m
|
||||
- CONFIG_FB_TFT_SSD1351=m
|
||||
- CONFIG_FB_TFT_ST7735R=m
|
||||
- CONFIG_FB_TFT_ST7789V=m
|
||||
- CONFIG_FB_TFT_TINYLCD=m
|
||||
- CONFIG_FB_TFT_TLS8204=m
|
||||
- CONFIG_FB_TFT_UC1611=m
|
||||
- CONFIG_FB_TFT_UC1701=m
|
||||
- CONFIG_FB_TFT_UPD161704=m
|
||||
- Industrial I/O support
|
||||
- CONFIG_ADXL345_I2C=n
|
||||
- CONFIG_ADXL345_SPI=n
|
||||
- CONFIG_AD4062=n
|
||||
- CONFIG_AD4134=n
|
||||
- CONFIG_TI_ADS1018=n
|
||||
- CONFIG_TI_ADS131M02=n
|
||||
- CONFIG_ADL8113=n
|
||||
- CONFIG_MAX22007=n
|
||||
- CONFIG_MCP47FEB02=n
|
||||
- CONFIG_MMC5633=n
|
||||
- CONFIG_ABP2030PA_I2C=n
|
||||
- CONFIG_ABP2030PA_SPI=n
|
||||
- CONFIG_MPRLS0025PA_I2C=n
|
||||
- CONFIG_MPRLS0025PA_SPI=n
|
||||
- misc drivers
|
||||
- CONFIG_PHY_GOOGLE_USB=m
|
||||
- CONFIG_DPLL_REFCNT_TRACKER=n
|
||||
- CONFIG_HID_RAPOO=m
|
||||
- CONFIG_USB_DWC3_GOOGLE=m
|
||||
- CONFIG_IOMMU_DEBUG_PAGEALLOC=n
|
||||
- OF dependent (i386, ppc64le, riscv64)
|
||||
- GPIO_LINE_MUX=m
|
||||
- POWER_SEQUENCING_PCIE_M2=m
|
||||
- i386
|
||||
- REGULATOR_MAX77675=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- ppc64le
|
||||
- INTEL_MEI=n
|
||||
- LOGO_LINUX_VGA16_FILE="drivers/video/logo/logo_linux_vga16.ppm"
|
||||
- LOGO_LINUX_CLUT224_FILE="drivers/video/logo/logo_linux_clut224.ppm"
|
||||
- TRUSTED_KEYS_PKWM=y
|
||||
- s390x
|
||||
- INTEL_MEI=n
|
||||
- s390x/zfcpdump
|
||||
- KEXEC_SIG=y
|
||||
- PKCS8_PRIVATE_KEY_PARSER=y
|
||||
- PKCS7_TEST_KEY=n
|
||||
- SIGNED_PE_FILE_VERIFICATION=y
|
||||
- FIPS_SIGNATURE_SELFTEST=n
|
||||
- SYSTEM_TRUSTED_KEYS=""
|
||||
- SYSTEM_EXTRA_CERTIFICATE=n
|
||||
- SECONDARY_TRUSTED_KEYRING=y
|
||||
- SECONDARY_TRUSTED_KEYRING_SIGNED_BY_BUILTIN=n
|
||||
- riscv64
|
||||
- RISCV_USER_CFI=y
|
||||
- INTEL_MEI=n
|
||||
- SPI_ATCSPI200=m
|
||||
- REGULATOR_MAX77675=m
|
||||
- VIDEO_DW_MIPI_CSI2RX=m
|
||||
- DRM_PANEL_SAMSUNG_LTL106HL02=n
|
||||
- FIRMWARE_EDID=y
|
||||
- SND_SOC_CV1800B_TDM=m
|
||||
- SND_SOC_CV1800B_ADC_CODEC=m
|
||||
- SND_SOC_CV1800B_DAC_CODEC=m
|
||||
- SPACEMIT_K3_CCU=m
|
||||
- RESET_SPACEMIT_K1=m
|
||||
- RESET_SPACEMIT_K3=m
|
||||
- PHY_SPACEMIT_K1_PCIE=m
|
||||
- PHY_SPACEMIT_K1_USB2=m
|
||||
- commit 96fa923
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Feb 20 06:28:12 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.3 (bsc#1012628).
|
||||
- scsi: qla2xxx: Fix bsg_done() causing double free (bsc#1012628).
|
||||
- arm64: dts: mediatek: mt8183: Add missing endpoint IDs to
|
||||
display graph (bsc#1012628).
|
||||
- LoongArch: Rework KASAN initialization for PTW-enabled systems
|
||||
(bsc#1012628).
|
||||
- fbdev: rivafb: fix divide error in nv3_arb() (bsc#1012628).
|
||||
- fbdev: smscufx: properly copy ioctl memory to kernelspace
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to add gc count stat in f2fs_gc_range (bsc#1012628).
|
||||
- f2fs: fix to check sysfs filename w/ gc_pin_file_thresh
|
||||
correctly (bsc#1012628).
|
||||
- f2fs: fix IS_CHECKPOINTED flag inconsistency issue caused by
|
||||
concurrent atomic commit and checkpoint writes (bsc#1012628).
|
||||
- f2fs: fix out-of-bounds access in sysfs attribute read/write
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid UAF in f2fs_write_end_io() (bsc#1012628).
|
||||
- f2fs: support non-4KB block size without packed_ssa feature
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to avoid mapping wrong physical block for swapfile
|
||||
(bsc#1012628).
|
||||
- f2fs: optimize f2fs_overwrite_io() for f2fs_iomap_begin
|
||||
(bsc#1012628).
|
||||
- Revert "f2fs: block cache/dio write during
|
||||
f2fs_enable_checkpoint()" (bsc#1012628).
|
||||
- USB: serial: option: add Telit FN920C04 RNDIS compositions
|
||||
(bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
__write_node_folio() (bsc#1012628).
|
||||
- f2fs: fix to do sanity check on node footer in
|
||||
{read,write}_end_io (bsc#1012628).
|
||||
- f2fs: fix incomplete block usage in compact SSA summaries
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.3-014-iommu-arm-smmu-qcom-do-not-register-driver-in-.patch.
|
||||
- commit fcdf9c5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 18 15:43:45 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Move upstreamed amdxdna patches into sorted section
|
||||
- commit 787d692
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:36:29 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- iommu/arm-smmu-qcom: do not register driver in probe()
|
||||
(git-fixes).
|
||||
- commit 7b303f4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:47 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.2 (bsc#1012628).
|
||||
- Revert "driver core: enforce device_lock for
|
||||
driver_match_device()" (bsc#1012628).
|
||||
- commit 57aa524
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 17 07:15:02 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- Linux 6.19.1 (bsc#1012628).
|
||||
- smb: client: split cached_fid bitfields to avoid shared-byte
|
||||
RMW races (bsc#1012628).
|
||||
- ksmbd: fix infinite loop caused by next_smb2_rcv_hdr_off reset
|
||||
in error paths (bsc#1012628).
|
||||
- ksmbd: add chann_lock to protect ksmbd_chann_list xarray
|
||||
(bsc#1012628).
|
||||
- smb: server: fix leak of active_num_conn in
|
||||
ksmbd_tcp_new_connection() (bsc#1012628).
|
||||
- smb: smbdirect: introduce
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: smbdirect: introduce smbdirect_socket.send_io.bcredits.*
|
||||
(bsc#1012628).
|
||||
- smb: server: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: server: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: server: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: server: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: server: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- smb: client: make use of
|
||||
smbdirect_socket.recv_io.credits.available (bsc#1012628).
|
||||
- smb: client: let recv_done() queue a refill when the peer is
|
||||
low on credits (bsc#1012628).
|
||||
- smb: client: let smbd_post_send() make use of request->wr
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->recv_io.credits.count rollback
|
||||
(bsc#1012628).
|
||||
- smb: client: remove pointless sc->send_io.pending handling in
|
||||
smbd_post_send_iter() (bsc#1012628).
|
||||
- smb: client: port and use the wait_for_credits logic used by
|
||||
server (bsc#1012628).
|
||||
- smb: client: split out smbd_ib_post_send() (bsc#1012628).
|
||||
- smb: client: introduce and use smbd_{alloc, free}_send_io()
|
||||
(bsc#1012628).
|
||||
- smb: client: use smbdirect_send_batch processing (bsc#1012628).
|
||||
- smb: client: make use of smbdirect_socket.send_io.bcredits
|
||||
(bsc#1012628).
|
||||
- smb: client: fix last send credit problem causing disconnects
|
||||
(bsc#1012628).
|
||||
- smb: client: let smbd_post_send_negotiate_req() use
|
||||
smbd_post_send() (bsc#1012628).
|
||||
- smb: client: let send_done handle a completion without
|
||||
IB_SEND_SIGNALED (bsc#1012628).
|
||||
- driver core: enforce device_lock for driver_match_device()
|
||||
(bsc#1012628).
|
||||
- Bluetooth: btusb: Add USB ID 7392:e611 for Edimax EW-7611UXB
|
||||
(bsc#1012628).
|
||||
- ALSA: hda/conexant: Add quirk for HP ZBook Studio G4
|
||||
(bsc#1012628).
|
||||
- crypto: iaa - Fix out-of-bounds index in
|
||||
find_empty_iaa_compression_mode (bsc#1012628).
|
||||
- crypto: octeontx - Fix length check to avoid truncation in
|
||||
ucode_load_store (bsc#1012628).
|
||||
- crypto: omap - Allocate OMAP_CRYPTO_FORCE_COPY scatterlists
|
||||
correctly (bsc#1012628).
|
||||
- crypto: virtio - Add spinlock protection with virtqueue
|
||||
notification (bsc#1012628).
|
||||
- crypto: virtio - Remove duplicated virtqueue_kick in
|
||||
virtio_crypto_skcipher_crypt_req (bsc#1012628).
|
||||
- nilfs2: Fix potential block overflow that cause system hang
|
||||
(bsc#1012628).
|
||||
- hfs: ensure sb->s_fs_info is always cleaned up (bsc#1012628).
|
||||
- wifi: rtw88: Fix alignment fault in rtw_core_enable_beacon()
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Validate sp before freeing associated memory
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Allow recovery for tape devices (bsc#1012628).
|
||||
- scsi: qla2xxx: Delay module unload while fabric scan in progress
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Free sp in error path to fix system crash
|
||||
(bsc#1012628).
|
||||
- scsi: qla2xxx: Query FW again before proceeding with login
|
||||
(bsc#1012628).
|
||||
- sched/mmcid: Don't assume CID is CPU owned on mode switch
|
||||
(bsc#1012628).
|
||||
- bus: fsl-mc: fix use-after-free in driver_override_show()
|
||||
(bsc#1012628).
|
||||
- erofs: fix UAF issue for file-backed mounts w/ directio option
|
||||
(bsc#1012628).
|
||||
- xfs: fix UAF in xchk_btree_check_block_owner (bsc#1012628).
|
||||
- drm/exynos: vidi: use ctx->lock to protect struct vidi_context
|
||||
member variables related to memory alloc/free (bsc#1012628).
|
||||
- PCI: endpoint: Avoid creating sub-groups asynchronously
|
||||
(bsc#1012628).
|
||||
- wifi: rtl8xxxu: fix slab-out-of-bounds in rtl8xxxu_sta_add
|
||||
(bsc#1012628).
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-001-io_uring-io-wq-add-exit-on-idle-state.patch.
|
||||
- Rename to
|
||||
patches.kernel.org/6.19.1-002-io_uring-allow-io-wq-workers-to-exit-when-unus.patch.
|
||||
- commit 2f9cad9
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 12 07:11:01 CET 2026 - jslaby@suse.cz
|
||||
|
||||
- io_uring: allow io-wq workers to exit when unused
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- io_uring/io-wq: add exit-on-idle state
|
||||
(<faa3e25a-ab8e-4589-aa4f-6f58bd93a636@kernel.dk>).
|
||||
- commit b7d1ad1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:33:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19 final
|
||||
- refresh configs (headers only)
|
||||
- commit 8f6da03
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:31:10 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv6hl configs
|
||||
- option values copied from armv7hl
|
||||
- commit 7ef7460
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:28:36 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable armv7hl configs
|
||||
- option values copied from arm64 except
|
||||
- MACH_MT6582=y
|
||||
- CLK_RK3506=y
|
||||
- commit e113f66
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 9 00:16:37 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- config: update and reenable arm64 configs
|
||||
- option values copied from x86_64, i386 and riscv64 except
|
||||
- ARCH_BST=y
|
||||
- ARM64_MPAM=y
|
||||
- PCI_SKY1_HOST=m
|
||||
- PCIE_NXP_S32G=y
|
||||
- CACHEMAINT_FOR_HOTPLUG=y
|
||||
- HISI_SOC_HHA=m
|
||||
- PINCTRL_SKY1=m
|
||||
- PINCTRL_MT6878=y
|
||||
- PINCTRL_KAANAPALI=m
|
||||
- GPIO_SHARED_PROXY=m
|
||||
- CHARGER_BD71828=m
|
||||
- SENSORS_MACSMC_HWMON=m
|
||||
- IMX91_THERMAL=m
|
||||
- VIDEO_ROCKCHIP_CIF=m
|
||||
- DRM_IMX8MP_HDMI_PAI=m
|
||||
- DRM_DW_HDMI_QP_CEC=y
|
||||
- DRM_MEDIATEK_HDMI_V2=m
|
||||
- SND_HDA_CIX_IPBLOQ=m
|
||||
- SND_SOC_MT8189=m
|
||||
- SND_SOC_MT8189_NAU8825=m
|
||||
- USB_DWC3_APPLE=m
|
||||
- SCSI_UFS_AMD_VERSAL2=m
|
||||
- RTC_DRV_MACSMC=m
|
||||
- IPQ_NSSCC_5424=m
|
||||
- SM_VIDEOCC_8750=m
|
||||
- CLK_RV1126B=y
|
||||
- RTK_SYSTIMER=y
|
||||
- MTK_MFG_PM_DOMAIN=y
|
||||
- PWM_AIROHA=m
|
||||
- NVMEM_QNAP_MCU_EEPROM=m
|
||||
- INTERCONNECT_QCOM_KAANAPALI=m
|
||||
- ARM64_MPAM_DRIVER_DEBUG=n
|
||||
- commit 0e2d85d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 13:36:06 CET 2026 - tiwai@suse.de
|
||||
|
||||
- accel/amdxdna: Update firmware version check for latest firmware
|
||||
(bsc#1257724).
|
||||
- accel/amdxdna: Enable temporal sharing only mode (bsc#1257724).
|
||||
- accel/amdxdna: Remove NPU2 support (bsc#1257724).
|
||||
- accel/amdxdna: Remove amdxdna_flush() (bsc#1257724).
|
||||
- commit 6eaf1bb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 5 12:25:17 CET 2026 - tiwai@suse.de
|
||||
|
||||
- Refresh patches.suse/wifi-iwlwifi-Add-missing-firmware-info-for-bz-b0-mod.patch (bsc#1252084)
|
||||
The upstream didn't release *-101.ucode for some models.
|
||||
- commit 33ced68
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 23:11:15 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc8
|
||||
- commit 41a428c
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 26 00:11:33 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc7
|
||||
- drop no longer needed patch (obsoleted by 3f2de814c059)
|
||||
- patches.rpmify/Revert-objtool-fix-build-failure-due-to-missing-libopcodes.patch
|
||||
- update configs
|
||||
- DRM_XE_USERPTR_INVAL_INJECT=n (on i386)
|
||||
- commit 3fe5a20
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 21 16:03:32 CET 2026 - pfalcato@suse.de
|
||||
|
||||
- Revert "objtool: fix build failure due to missing libopcodes
|
||||
check".
|
||||
- commit 50c998d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 09:23:32 CET 2026 - jdelvare@suse.com
|
||||
|
||||
- Enable NCT6694 support on x86_64
|
||||
This multi-function device is platform-independent and can be found
|
||||
on both ARM and x86 platforms.
|
||||
- commit e5dd94d
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 19 06:20:59 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc6
|
||||
- refresh configs
|
||||
- commit e5456de
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 12 09:08:40 CET 2026 - mkubecek@suse.cz
|
||||
|
||||
- update to 6.19-rc5
|
||||
- update configs
|
||||
- MISC_RP1=n (i386)
|
||||
- commit 444cfba
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 7 13:10:18 CET 2026 - tiwai@suse.de
|
||||
|
||||
|
||||
@@ -17,9 +17,9 @@
|
||||
# needssslcertforbuild
|
||||
|
||||
|
||||
%define srcversion 6.19-rc4
|
||||
%define patchversion 6.19.0-rc4
|
||||
%define git_commit 53522494ab7628cbd71a32672d6628920ee26bf9
|
||||
%define srcversion 7.0-rc3
|
||||
%define patchversion 7.0.0-rc3
|
||||
%define git_commit 2efdd9cb76be4a8c4edd48301cd80301fc368c3b
|
||||
%define variant %{nil}
|
||||
%define compress_modules zstd
|
||||
%define compress_vmlinux xz
|
||||
@@ -40,9 +40,9 @@
|
||||
%(chmod +x %_sourcedir/{guards,apply-patches,check-for-config-changes,group-source-files.pl,split-modules,modversions,kabi.pl,arch-symbols,check-module-license,splitflist,mergedep,moddep,modflist,kernel-subpackage-build})
|
||||
|
||||
Name: kernel-zfcpdump
|
||||
Version: 6.19~rc4
|
||||
Version: 7.0~rc3
|
||||
%if 0%{?is_kotd}
|
||||
Release: <RELEASE>.g5352249
|
||||
Release: <RELEASE>.g2efdd9c
|
||||
%else
|
||||
Release: 0
|
||||
%endif
|
||||
|
||||
BIN
linux-6.19-rc4.tar.xz
LFS
BIN
linux-6.19-rc4.tar.xz
LFS
Binary file not shown.
BIN
linux-7.0-rc3.tar.xz
LFS
Normal file
BIN
linux-7.0-rc3.tar.xz
LFS
Normal file
Binary file not shown.
BIN
patches.rpmify.tar.bz2
LFS
BIN
patches.rpmify.tar.bz2
LFS
Binary file not shown.
BIN
patches.suse.tar.bz2
LFS
BIN
patches.suse.tar.bz2
LFS
Binary file not shown.
@@ -38,7 +38,7 @@
|
||||
patches.rpmify/BTF-Don-t-break-ABI-when-debuginfo-is-disabled.patch
|
||||
patches.rpmify/usrmerge-Adjust-module-path-in-the-kernel-sources.patch
|
||||
patches.rpmify/btf-pahole-j1-option.patch
|
||||
patches.rpmify/gendwarfksyms-Fix-build-on-32-bit-hosts.patch
|
||||
patches.rpmify/certs-Replace-openssl-invocation-with-OPENSSL.patch
|
||||
|
||||
########################################################
|
||||
# The sorted section should contain all patches that are
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
2026-01-09 01:45:44 +0000
|
||||
GIT Revision: 53522494ab7628cbd71a32672d6628920ee26bf9
|
||||
2026-03-10 01:31:24 +0000
|
||||
GIT Revision: 2efdd9cb76be4a8c4edd48301cd80301fc368c3b
|
||||
GIT Branch: master
|
||||
|
||||
Reference in New Issue
Block a user