go.mod: update osbuild/images to v0.128.0

Signed-off-by: Tomáš Hozza <thozza@redhat.com>
This commit is contained in:
Tomáš Hozza 2025-03-25 15:14:26 +01:00 committed by Simon de Vlieger
parent f9a8ae8d0d
commit ae9386fe3e
74 changed files with 2673 additions and 2826 deletions

View file

@ -9,18 +9,19 @@ import (
// Filesystem related functions
type Filesystem struct {
Type string
Type string `json:"type"`
// ID of the filesystem, vfat doesn't use traditional UUIDs, therefore this
// is just a string.
UUID string
Label string
Mountpoint string
UUID string `json:"uuid,omitempty"`
Label string `json:"label,omitempty"`
Mountpoint string `json:"mountpoint,omitempty"`
// The fourth field of fstab(5); fs_mntops
FSTabOptions string
FSTabOptions string `json:"fstab_options,omitempty"`
// The fifth field of fstab(5); fs_freq
FSTabFreq uint64
FSTabFreq uint64 `json:"fstab_freq,omitempty"`
// The sixth field of fstab(5); fs_passno
FSTabPassNo uint64
FSTabPassNo uint64 `json:"fstab_passno,omitempty"`
}
func init() {