From b494c54c81e6ca81cef8ce26da772c1fc336ea8d Mon Sep 17 00:00:00 2001 From: Noel Georgi Date: Fri, 24 Oct 2025 16:29:45 +0530 Subject: [PATCH] fix: talos import on non-linux Otherwise it fails to import talos on linux machines due to build constraints. Signed-off-by: Noel Georgi --- pkg/xfs/fsopen/fsopen_other.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 pkg/xfs/fsopen/fsopen_other.go diff --git a/pkg/xfs/fsopen/fsopen_other.go b/pkg/xfs/fsopen/fsopen_other.go new file mode 100644 index 000000000..94ce30dba --- /dev/null +++ b/pkg/xfs/fsopen/fsopen_other.go @@ -0,0 +1,9 @@ +// 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/. + +//go:build !linux + +// Package fsopen provides a simple interface to create and manage a filesystem +// using the Linux syscalls for filesystem operations. +package fsopen