kernel-6.1.11-100
* Thu Feb 09 2023 Augusto Caringi <acaringi@redhat.com> [6.1.11-0] - Linux v6.1.11 Resolves: Signed-off-by: Augusto Caringi <acaringi@redhat.com>
This commit is contained in:
parent
a7d05f8e82
commit
6df2fbc8ee
3 changed files with 17 additions and 14 deletions
|
|
@ -124,17 +124,17 @@ Summary: The Linux kernel
|
|||
# the --with-release option overrides this setting.)
|
||||
%define debugbuildsenabled 1
|
||||
# define buildid .local
|
||||
%define specversion 6.1.10
|
||||
%define specversion 6.1.11
|
||||
%define patchversion 6.1
|
||||
%define pkgrelease 100
|
||||
%define kversion 6
|
||||
%define tarfile_release 6.1.10
|
||||
%define tarfile_release 6.1.11
|
||||
# This is needed to do merge window version magic
|
||||
%define patchlevel 1
|
||||
# This allows pkg_release to have configurable %%{?dist} tag
|
||||
%define specrelease 100%{?buildid}%{?dist}
|
||||
# This defines the kabi tarball version
|
||||
%define kabiversion 6.1.10
|
||||
%define kabiversion 6.1.11
|
||||
|
||||
# If this variable is set to 1, a bpf selftests build failure will cause a
|
||||
# fatal kernel package build error
|
||||
|
|
@ -3178,6 +3178,9 @@ fi
|
|||
#
|
||||
#
|
||||
%changelog
|
||||
* Thu Feb 09 2023 Augusto Caringi <acaringi@redhat.com> [6.1.11-0]
|
||||
- Linux v6.1.11
|
||||
|
||||
* Mon Feb 06 2023 Augusto Caringi <acaringi@redhat.com> [6.1.10-0]
|
||||
- Linux v6.1.10
|
||||
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@
|
|||
42 files changed, 534 insertions(+), 190 deletions(-)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index 6e34c942744e..cebf71e7b1bf 100644
|
||||
index e039f2af1772..5202d1936211 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -18,6 +18,10 @@ $(if $(filter __%, $(MAKECMDGOALS)), \
|
||||
|
|
@ -536,7 +536,7 @@ index 8d151e332584..bd29fe4ddbf3 100644
|
|||
obj-$(CONFIG_EFI_RCI2_TABLE) += rci2-table.o
|
||||
obj-$(CONFIG_EFI_EMBEDDED_FIRMWARE) += embedded-firmware.o
|
||||
diff --git a/drivers/firmware/efi/efi.c b/drivers/firmware/efi/efi.c
|
||||
index 033aac6be7da..28f9bf73368b 100644
|
||||
index b43e5e6ddaf6..3179641e9855 100644
|
||||
--- a/drivers/firmware/efi/efi.c
|
||||
+++ b/drivers/firmware/efi/efi.c
|
||||
@@ -32,6 +32,7 @@
|
||||
|
|
@ -1199,7 +1199,7 @@ index 0aaaadb02cc6..a5f68eae241a 100644
|
|||
* disconnected while waiting for the lock to succeed. */
|
||||
usb_lock_device(hdev);
|
||||
diff --git a/include/linux/efi.h b/include/linux/efi.h
|
||||
index 4aa1dbc7b064..acf09c081658 100644
|
||||
index 4e1bfee9675d..c9d330ff3614 100644
|
||||
--- a/include/linux/efi.h
|
||||
+++ b/include/linux/efi.h
|
||||
@@ -43,6 +43,8 @@
|
||||
|
|
@ -1211,7 +1211,7 @@ index 4aa1dbc7b064..acf09c081658 100644
|
|||
typedef unsigned long efi_status_t;
|
||||
typedef u8 efi_bool_t;
|
||||
typedef u16 efi_char16_t; /* UNICODE character */
|
||||
@@ -864,6 +866,14 @@ extern int __init efi_setup_pcdp_console(char *);
|
||||
@@ -865,6 +867,14 @@ extern int __init efi_setup_pcdp_console(char *);
|
||||
#define EFI_MEM_ATTR 10 /* Did firmware publish an EFI_MEMORY_ATTRIBUTES table? */
|
||||
#define EFI_MEM_NO_SOFT_RESERVE 11 /* Is the kernel configured to ignore soft reservations? */
|
||||
#define EFI_PRESERVE_BS_REGIONS 12 /* Are EFI boot-services memory segments available? */
|
||||
|
|
@ -1226,7 +1226,7 @@ index 4aa1dbc7b064..acf09c081658 100644
|
|||
|
||||
#ifdef CONFIG_EFI
|
||||
/*
|
||||
@@ -875,6 +885,8 @@ static inline bool efi_enabled(int feature)
|
||||
@@ -876,6 +886,8 @@ static inline bool efi_enabled(int feature)
|
||||
}
|
||||
extern void efi_reboot(enum reboot_mode reboot_mode, const char *__unused);
|
||||
|
||||
|
|
@ -1235,7 +1235,7 @@ index 4aa1dbc7b064..acf09c081658 100644
|
|||
bool __pure __efi_soft_reserve_enabled(void);
|
||||
|
||||
static inline bool __pure efi_soft_reserve_enabled(void)
|
||||
@@ -896,6 +908,8 @@ static inline bool efi_enabled(int feature)
|
||||
@@ -897,6 +909,8 @@ static inline bool efi_enabled(int feature)
|
||||
static inline void
|
||||
efi_reboot(enum reboot_mode reboot_mode, const char *__unused) {}
|
||||
|
||||
|
|
@ -1244,7 +1244,7 @@ index 4aa1dbc7b064..acf09c081658 100644
|
|||
static inline bool efi_soft_reserve_enabled(void)
|
||||
{
|
||||
return false;
|
||||
@@ -910,6 +924,7 @@ static inline void efi_find_mirror(void) {}
|
||||
@@ -911,6 +925,7 @@ static inline void efi_find_mirror(void) {}
|
||||
#endif
|
||||
|
||||
extern int efi_status_to_err(efi_status_t status);
|
||||
|
|
@ -1252,7 +1252,7 @@ index 4aa1dbc7b064..acf09c081658 100644
|
|||
|
||||
/*
|
||||
* Variable Attributes
|
||||
@@ -1135,13 +1150,6 @@ static inline bool efi_runtime_disabled(void) { return true; }
|
||||
@@ -1136,13 +1151,6 @@ static inline bool efi_runtime_disabled(void) { return true; }
|
||||
extern void efi_call_virt_check_flags(unsigned long flags, const char *call);
|
||||
extern unsigned long efi_call_virt_save_flags(void);
|
||||
|
||||
|
|
|
|||
6
sources
6
sources
|
|
@ -1,3 +1,3 @@
|
|||
SHA512 (linux-6.1.10.tar.xz) = ca89ef420ef87fdeab8993ce33268a2ba580e44b22716fa08e9550f3c303391269f8863d7fba5e8b7e278a85b257bb8e2882042e4b5a6c0dc4182b844a1c4c14
|
||||
SHA512 (kernel-abi-stablelists-6.1.10.tar.bz2) = ba7c55aaa38a66853b8a2ee6a7b797b66cf1861a5e78094fac0dbffa75279e78538e1f8932598443c7569bf36afb7eec50c21822b989e3b77d7cf909ac9c24fa
|
||||
SHA512 (kernel-kabi-dw-6.1.10.tar.bz2) = 5530aa6f61a237bf272f816edd3b6d753eab4004a818a8ca463053ac09c3dbaf3cbfc2f2ff1d60256e3bf134ce86e84f417f365f068fcb3ce0f40d48fc0eb01d
|
||||
SHA512 (linux-6.1.11.tar.xz) = 55c072ec70549dd980e6b36a8d336561581827d016fabc3400384800dbaeddcff67cb0eb07abcde3ce7c1320379969525885ccac4207e7d4b157b7ae3b77372c
|
||||
SHA512 (kernel-abi-stablelists-6.1.11.tar.bz2) = 0acb74bd7cbf34e86fe0c04f6c9820eab80e4c1f474e4a91df13a19caa4304bd6e6c36f1b8fc7c5bb691d35bda9fa6f81bc85c1bebe0e4ccbaf46465485e6ca3
|
||||
SHA512 (kernel-kabi-dw-6.1.11.tar.bz2) = d888b5b0f3247ee0dec52dbc8fab4b2015475d0fb17070c8ae5d88999d8f690152dacb6ad94e509ff669762d68ef33d7855fb91741baac2ab339c9b5996313d5
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue