Skip to content

Commit

Permalink
Merge pull request #5586 from grom72/get-system-info-w-pmem
Browse files Browse the repository at this point in the history
common: show pmem devices as part of system info
  • Loading branch information
wlemkows authored Apr 18, 2023
2 parents 94f2221 + 0da0c72 commit acd71e8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion utils/gha-runners/get-system-info.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# SPDX-License-Identifier: BSD-3-Clause
# Copyright 2022, Intel Corporation
# Copyright 2022-2023, Intel Corporation

#
# get-system-info.sh - Script for printing system info
Expand Down Expand Up @@ -42,6 +42,9 @@ function system_info {
dnf check-update 2>/dev/null || true
echo "**********list-enviroment**********"
env
echo "**********list-avaialble-pmem-devices**********"
ls -la /dev/dax*
ls -la /dev/pmem*
}

# Call the function above to print system info.
Expand Down

0 comments on commit acd71e8

Please sign in to comment.