- replace `interface{}` with `any` using `gofmt -r 'interface{} -> any -w'` - replace `a = []T{}` with `var a []T` where possible. - replace `a = []T{}` with `a = make([]T, 0, len(b))` where possible. Signed-off-by: Dmitriy Matrenichev <dmitry.matrenichev@siderolabs.com>
31 lines
679 B
Go
31 lines
679 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...)
|
|
|
|
var args []string
|
|
|
|
if opts.Label != "" {
|
|
args = append(args, "-F", "32", "-n", opts.Label)
|
|
}
|
|
|
|
if opts.Reproducible {
|
|
args = append(args, "--invariant")
|
|
}
|
|
|
|
args = append(args, partname)
|
|
|
|
_, err := cmd.Run("mkfs.vfat", args...)
|
|
|
|
return err
|
|
}
|