Skip to content

Commit

Permalink
Merge pull request #7477 from vigo332/patch-1
Browse files Browse the repository at this point in the history
Add support for nvme device partition names.
  • Loading branch information
Obihoernchen authored Nov 2, 2024
2 parents d8ce286 + b43dc3e commit ba90d9e
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 ba90d9e

Please sign in to comment.