Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for nvme device partition names. #7477

Merged
merged 1 commit into from
Nov 2, 2024
Merged
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
6 changes: 6 additions & 0 deletions xCAT-server/share/xcat/netboot/add-on/statelite/rc.localdisk
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,12 @@ doconfigure () {
fi
partnum=`expr $partnum + 1`
partdev=$dev$partnum

# need to handle nvme device name, nvme0n1 so partnum is nvme0n1p1
if [[ $dev == *"nvme"* ]]; then
partdev=${dev}p$partnum
fi

echo "Create filesystem $fstype on $partdev" >>$LOG
echo "mkfs.$fstype -f -q $partdev" >>$LOG
`mkfs.$fstype -f -q $partdev > /dev/null`
Expand Down