Skip to content

Commit

Permalink
linux/efa_nv_peermem: Bump version to 1.1.1
Browse files Browse the repository at this point in the history
Reviewed-by: Daniel Kranzdorf <[email protected]>
Reviewed-by: Firas Jahjah <[email protected]>
Signed-off-by: Michael Margolin <[email protected]>
  • Loading branch information
mrgolin committed Feb 15, 2024
1 parent d483166 commit 885483d
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 8 deletions.
3 changes: 3 additions & 0 deletions kernel/linux/efa_nv_peermem/RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
## Supported Kernel Versions and Distributions
https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html#efa-amis

## r1.1.1 release notes
* Reduce build process output to stdout

## r1.1.0 release notes

Initial commit
2 changes: 1 addition & 1 deletion kernel/linux/efa_nv_peermem/conf/dkms.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACKAGE_NAME="efa-nv-peermem"
PACKAGE_VERSION="1.1.0"
PACKAGE_VERSION="1.1.1"
CLEAN="cd build; make modules_clean; make clean"
PRE_BUILD="./configure-dkms.sh $kernelver $source_tree"
# Quoted 'make' to suppress DKMS append of KERNELRELEASE
Expand Down
5 changes: 5 additions & 0 deletions kernel/linux/efa_nv_peermem/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
efa-nv-peermem (1.1.1-1.amzn1) unstable; urgency=medium
* Reduce build process output to stdout

-- Michael Margolin <[email protected]> Thu, 15 Feb 2024 08:08:00 +0000

efa-nv-peermem (1.1.0-1.amzn1) unstable; urgency=medium
* Initial release of efa_nv_peermem kernel driver Debian package

Expand Down
2 changes: 1 addition & 1 deletion kernel/linux/efa_nv_peermem/debian/efa-nv-peermem.postinst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

NAME=efa-nv-peermem
DRIVER_VERSION=1.1.0
DRIVER_VERSION=1.1.1
INSTALL_PATH=/usr/src/${NAME}-${DRIVER_VERSION}

cd $INSTALL_PATH
Expand Down
2 changes: 1 addition & 1 deletion kernel/linux/efa_nv_peermem/debian/efa-nv-peermem.prerm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

NAME=efa-nv-peermem
DRIVER_VERSION=1.1.0
DRIVER_VERSION=1.1.1

dkms remove -m ${NAME} -v ${DRIVER_VERSION} --all

Expand Down
2 changes: 1 addition & 1 deletion kernel/linux/efa_nv_peermem/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include /usr/share/dpkg/pkg-info.mk
export DH_VERBOSE = 1

NAME = efa-nv-peermem
VERSION = 1.1.0
VERSION = 1.1.1
DESTDIR:=`pwd`/debian/${NAME}
INSTALL_PATH = /usr/src/${NAME}-${VERSION}

Expand Down
2 changes: 1 addition & 1 deletion kernel/linux/efa_nv_peermem/rpm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

NAME = efa-nv-peermem
SPEC = $(NAME).spec
VERSION = 1.1.0
VERSION = 1.1.1

TOPDIR := $(shell git rev-parse --show-toplevel)
TAG ?= HEAD
Expand Down
5 changes: 4 additions & 1 deletion kernel/linux/efa_nv_peermem/rpm/efa-nv-peermem.spec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2023 Amazon.com, Inc. or its affiliates. All rights reserved
# Copyright 2023-2024 Amazon.com, Inc. or its affiliates. All rights reserved

%define name efa-nv-peermem
%define driver_name efa_nv_peermem
Expand Down Expand Up @@ -70,5 +70,8 @@ install -m 644 Kbuild.in %{buildroot}%{install_path}/src
/etc/modules-load.d/efa_nv_peermem.conf

%changelog
* Thu Feb 15 2024 Michael Margolin <[email protected]> - 1.1.1
- Reduce build process output to stdout

* Wed Oct 25 2023 Michael Margolin <[email protected]> - 1.1.0
- initial build for RHEL
4 changes: 2 additions & 2 deletions kernel/linux/efa_nv_peermem/src/efa_nv_peermem_main.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause
/*
* Copyright 2023 Amazon.com, Inc. or its affiliates. All rights reserved.
* Copyright 2023-2024 Amazon.com, Inc. or its affiliates. All rights reserved.
*/

#include <linux/module.h>
Expand All @@ -11,7 +11,7 @@
#define DRV_MODULE_NAME "EFA NV Peermem"
#define DRV_MODULE_VER_MAJOR 1
#define DRV_MODULE_VER_MINOR 1
#define DRV_MODULE_VER_SUBMINOR 0
#define DRV_MODULE_VER_SUBMINOR 1

#ifndef DRV_MODULE_VERSION
#define DRV_MODULE_VERSION \
Expand Down

0 comments on commit 885483d

Please sign in to comment.