talos/pkg/makefs/vfat.go
Andrey Smirnov 343c55762e
chore: replace talos-systems Go modules with siderolabs
This the first step towards replacing all import paths to be based on
`siderolabs/` instead of `talos-systems/`.

All updates contain no functional changes, just refactorings to adapt to
the new path structure.

Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
2022-11-01 12:55:40 +04:00

27 lines
615 B
Go

// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
package makefs
import (
"github.com/siderolabs/go-cmd/pkg/cmd"
)
// VFAT creates a VFAT filesystem on the specified partition.
func VFAT(partname string, setters ...Option) error {
opts := NewDefaultOptions(setters...)
args := []string{}
if opts.Label != "" {
args = append(args, "-F", "32", "-n", opts.Label)
}
args = append(args, partname)
_, err := cmd.Run("mkfs.vfat", args...)
return err
}