Skip to content

Commit

Permalink
Add support for nvme device partition names.
Browse files Browse the repository at this point in the history
  • Loading branch information
vigo332 authored Oct 31, 2024
1 parent d8ce286 commit b43dc3e
Showing 1 changed file with 6 additions and 0 deletions.
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

0 comments on commit b43dc3e

Please sign in to comment.