kernel-6.3.0-63
* Mon Apr 24 2023 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.3.0-63] - redhat/Makefile: Support building linux-next (Thorsten Leemhuis) - redhat/Makefile: support building stable-rc versions (Thorsten Leemhuis) - redhat/Makefile: Add target to print DISTRELEASETAG (Thorsten Leemhuis) Resolves: Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
This commit is contained in:
parent
182b65b5d5
commit
99a706a4b7
@ -12,7 +12,7 @@ RHEL_MINOR = 99
|
|||||||
#
|
#
|
||||||
# Use this spot to avoid future merge conflicts.
|
# Use this spot to avoid future merge conflicts.
|
||||||
# Do not trim this comment.
|
# Do not trim this comment.
|
||||||
RHEL_RELEASE = 59
|
RHEL_RELEASE = 63
|
||||||
|
|
||||||
#
|
#
|
||||||
# RHEL_REBASE_NUM
|
# RHEL_REBASE_NUM
|
||||||
|
20
kernel.spec
20
kernel.spec
@ -145,13 +145,13 @@ Summary: The Linux kernel
|
|||||||
%define specrpmversion 6.3.0
|
%define specrpmversion 6.3.0
|
||||||
%define specversion 6.3.0
|
%define specversion 6.3.0
|
||||||
%define patchversion 6.3
|
%define patchversion 6.3
|
||||||
%define pkgrelease 0.rc7.20230420gitcb0856346a60.59
|
%define pkgrelease 63
|
||||||
%define kversion 6
|
%define kversion 6
|
||||||
%define tarfile_release 6.3-rc7-89-gcb0856346a60
|
%define tarfile_release 6.3
|
||||||
# This is needed to do merge window version magic
|
# This is needed to do merge window version magic
|
||||||
%define patchlevel 3
|
%define patchlevel 3
|
||||||
# This allows pkg_release to have configurable %%{?dist} tag
|
# This allows pkg_release to have configurable %%{?dist} tag
|
||||||
%define specrelease 0.rc7.20230420gitcb0856346a60.59%{?buildid}%{?dist}
|
%define specrelease 63%{?buildid}%{?dist}
|
||||||
# This defines the kabi tarball version
|
# This defines the kabi tarball version
|
||||||
%define kabiversion 6.3.0
|
%define kabiversion 6.3.0
|
||||||
|
|
||||||
@ -3409,11 +3409,23 @@ fi
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Apr 20 2023 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.3.0-0.rc7.cb0856346a60.59]
|
* Mon Apr 24 2023 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.3.0-63]
|
||||||
- redhat/Makefile: Support building linux-next (Thorsten Leemhuis)
|
- redhat/Makefile: Support building linux-next (Thorsten Leemhuis)
|
||||||
- redhat/Makefile: support building stable-rc versions (Thorsten Leemhuis)
|
- redhat/Makefile: support building stable-rc versions (Thorsten Leemhuis)
|
||||||
- redhat/Makefile: Add target to print DISTRELEASETAG (Thorsten Leemhuis)
|
- redhat/Makefile: Add target to print DISTRELEASETAG (Thorsten Leemhuis)
|
||||||
|
|
||||||
|
* Mon Apr 24 2023 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.3.0-62]
|
||||||
|
- Linux v6.3.0
|
||||||
|
|
||||||
|
* Sun Apr 23 2023 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.3.0-0.rc7.622322f53c6d.61]
|
||||||
|
- Linux v6.3.0-0.rc7.622322f53c6d
|
||||||
|
|
||||||
|
* Sat Apr 22 2023 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.3.0-0.rc7.8e41e0a57566.60]
|
||||||
|
- Linux v6.3.0-0.rc7.8e41e0a57566
|
||||||
|
|
||||||
|
* Fri Apr 21 2023 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.3.0-0.rc7.2af3e53a4dc0.59]
|
||||||
|
- Linux v6.3.0-0.rc7.2af3e53a4dc0
|
||||||
|
|
||||||
* Thu Apr 20 2023 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.3.0-0.rc7.cb0856346a60.58]
|
* Thu Apr 20 2023 Fedora Kernel Team <kernel-team@fedoraproject.org> [6.3.0-0.rc7.cb0856346a60.58]
|
||||||
- Linux v6.3.0-0.rc7.cb0856346a60
|
- Linux v6.3.0-0.rc7.cb0856346a60
|
||||||
|
|
||||||
|
@ -119,7 +119,7 @@ index 000000000000..effb81d04bfd
|
|||||||
+
|
+
|
||||||
+endmenu
|
+endmenu
|
||||||
diff --git a/Makefile b/Makefile
|
diff --git a/Makefile b/Makefile
|
||||||
index b5c48e3c935a..52256e180434 100644
|
index f5543eef4f82..44f8a5e7b84b 100644
|
||||||
--- a/Makefile
|
--- a/Makefile
|
||||||
+++ b/Makefile
|
+++ b/Makefile
|
||||||
@@ -22,6 +22,18 @@ $(if $(filter __%, $(MAKECMDGOALS)), \
|
@@ -22,6 +22,18 @@ $(if $(filter __%, $(MAKECMDGOALS)), \
|
||||||
@ -2524,10 +2524,10 @@ index 5984d0d550b4..e01d28e48d9c 100644
|
|||||||
|
|
||||||
#if defined(CONFIG_SECURITY) && defined(CONFIG_WATCH_QUEUE)
|
#if defined(CONFIG_SECURITY) && defined(CONFIG_WATCH_QUEUE)
|
||||||
diff --git a/init/Kconfig b/init/Kconfig
|
diff --git a/init/Kconfig b/init/Kconfig
|
||||||
index 1fb5f313d18f..c164f0e87e14 100644
|
index c88bb30a8b0b..8bdbf31c5570 100644
|
||||||
--- a/init/Kconfig
|
--- a/init/Kconfig
|
||||||
+++ b/init/Kconfig
|
+++ b/init/Kconfig
|
||||||
@@ -1711,7 +1711,7 @@ config AIO
|
@@ -1707,7 +1707,7 @@ config AIO
|
||||||
this option saves about 7k.
|
this option saves about 7k.
|
||||||
|
|
||||||
config IO_URING
|
config IO_URING
|
||||||
|
6
sources
6
sources
@ -1,3 +1,3 @@
|
|||||||
SHA512 (linux-6.3-rc7-89-gcb0856346a60.tar.xz) = b842fb77aaf66d29ef9c0a29cb79add07575ddc87968c1f6b04cd5436c6a07043000b6cba434560988e5da1660bc19f326a768c2273929ebe9b1a463a8e2acbc
|
SHA512 (linux-6.3.tar.xz) = bd74dd45fce659b28edd9804fac35c54cc9e2eea214a949411116079b2004a2305eed4748fcc55babbe952537fc1f22c36cee17784178797d1e2fd8285a53746
|
||||||
SHA512 (kernel-abi-stablelists-6.3.0.tar.bz2) = 59b8b7d9954c2a8bd5fc259d48971e493c5c87eac81190870b586e36bb617d13cc7b85c40f4d5ba50bdc8691c9e1ab9d9aee8373f80dc3bc0ddf0531267b6aeb
|
SHA512 (kernel-abi-stablelists-6.3.0.tar.bz2) = 74f41675a8b14b5e0bc87e5a4da824fc38e310442c8de55c08eaed0acd7c5a1e9ef656a26e69f74d06524cfa10626e71049850448775b6e115bcf115af880467
|
||||||
SHA512 (kernel-kabi-dw-6.3.0.tar.bz2) = c9fe64dc46838d4e05c9396a1dc60b95d831377b6a254d8b22839ac2b29c349a9a8112bc082ac2a11250eb73410e8859c634d6f29952b0a4630f960f541ec098
|
SHA512 (kernel-kabi-dw-6.3.0.tar.bz2) = bc50e40f138d9ff40b056c4c116954f31fe2689096afc94c14cf5275a8697db49b29d97e479b89a7b1d37f46ede22fc7c612287a99ac5d25d2a60a82a7d5a204
|
||||||
|
Loading…
Reference in New Issue
Block a user