Skip to content

Commit

Permalink
[v1.7.5] Update version
Browse files Browse the repository at this point in the history
Update makedumpfile to version 1.7.5.
This version supports the following new kernels:

  - 6.7, 6.8 (x86_64)

Signed-off-by: Kazuhito Hagio <k-hagio-ab@nec.com>
  • Loading branch information
k-hagio committed Apr 12, 2024
1 parent 94241fd commit c266469
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
@@ -1,7 +1,7 @@
# makedumpfile

VERSION=1.7.4++
DATE=6 Nov 2023
VERSION=1.7.5
DATE=12 Apr 2024

# Honour the environment variable CC
ifeq ($(strip $CC),)
Expand Down
2 changes: 2 additions & 0 deletions README
Expand Up @@ -172,6 +172,8 @@
6.4 | | ** | | | | ** | | -- | | OK | | |
6.5 | | ** | | | | ** | | -- | | OK | | |
6.6 | | ** | | | | ** | | -- | | OK | | |
6.7 | | ** | | | | ** | | -- | | OK | | |
6.8 | | ** | | | | ** | | -- | | OK | | |

OK : Support.
-- : Not support.
Expand Down
2 changes: 1 addition & 1 deletion makedumpfile.h
Expand Up @@ -498,7 +498,7 @@ do { \
#define KVER_MIN_SHIFT 16
#define KERNEL_VERSION(x,y,z) (((x) << KVER_MAJ_SHIFT) | ((y) << KVER_MIN_SHIFT) | (z))
#define OLDEST_VERSION KERNEL_VERSION(2, 6, 15) /* linux-2.6.15 */
#define LATEST_VERSION KERNEL_VERSION(6, 6, 0) /* linux-6.6.0 */
#define LATEST_VERSION KERNEL_VERSION(6, 8, 4) /* linux-6.8.4 */

/*
* for printk caller_id support
Expand Down
2 changes: 1 addition & 1 deletion makedumpfile.spec
@@ -1,6 +1,6 @@
Name: makedumpfile
Summary: makedumpfile package
Version: 1.7.4
Version: 1.7.5
Release: 1
Group: Applications/Text
License: GPL
Expand Down

0 comments on commit c266469

Please sign in to comment.