Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ endif()

# Define project
project(ReadoutCard
VERSION 0.31.0
VERSION 0.45.6
DESCRIPTION "O2 ReadoutCard library"
LANGUAGES C CXX
)
Expand Down
3 changes: 3 additions & 0 deletions doc/releaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,6 @@ This file describes the main feature changes for released versions of ReadoutCar

## v0.45.5 - 19/12/2024
- Added internal fallback when hugeadm tool not available to setup hugepages (e.g.for RHEL9).

## v0.45.6 - 07/02/2025
- Updated list of firmwares.
1 change: 1 addition & 0 deletions src/FirmwareChecker.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ FirmwareChecker::FirmwareChecker() : mCompatibleFirmwareList({
{ "adc37d07", "v3.19.0" },
{ "641a503d", "v3.19.2" },
{ "b0332f4e", "v3.19.3" },
{ "f6b5d742", "v3.19.4" },
/* CRORC (before 2.14, keep 7 chars only for the hash) */
{ "267f8e5", "v2.9.1" },
{ "cecc295", "v2.9.0" },
Expand Down
2 changes: 1 addition & 1 deletion src/ReadoutCardVersion.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#include "ReadoutCard/Version.h"

#define O2_READOUTCARD_VERSION "0.45.5"
#define O2_READOUTCARD_VERSION "0.45.6"

namespace o2
{
Expand Down
2 changes: 1 addition & 1 deletion src/o2-roc-setup-hugetlbfs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ else
mountpoint -q $MPDIR
if [ "$?" -ne 0 ]; then
echo "Mounting $MPDIR"
mount -t hugetlbfs -o pagesize=${sz} none $MPDIR
mount -t hugetlbfs -o pagesize=${sz},X-mount.mkdir none $MPDIR
chown root:root $MPDIR
chmod 1777 $MPDIR
else
Expand Down
Loading