ports/filesystems: Fix fallout

A new filesystems category was created in the ports tree, with 142
filesystem related ports moved to there, some of them renamed.
Update all references in the src tree to the new locations.

PR:		283881
Fixes:		ports:6e2da9672f79f44 (filesystems: add new category)
MFC after:	1 month
Reviewed by:	fuz, mhorne, bapt
Accepted by:	mhorne (mentor)
Differential Revision:	https://reviews.freebsd.org/D48406

(cherry picked from commit 066ef2aec187ae93a9df01d25fa8e47d67ff972b)
This commit is contained in:
Alexander Ziaee 2025-01-27 14:59:17 -05:00
parent 70858d8e20
commit cf522ceef8
No known key found for this signature in database
GPG key ID: 0A8F850BCDEF4511
10 changed files with 11 additions and 11 deletions

View file

@ -1,7 +1,7 @@
#!/bin/sh
# This script generates the dummy HFS filesystem used for the PowerPC boot
# blocks. It uses hfsutils (emulators/hfsutils) to generate a template
# blocks. It uses hfsutils (filesystems/hfsutils) to generate a template
# filesystem with the relevant interesting files. These are then found by
# grep, and the offsets written to a Makefile snippet.
#

View file

@ -228,7 +228,7 @@ without mounting does not write anything to the
.Tn Linux
RAID.
Then you do a
.Nm fsck.ext2fs Pq Pa ports/sysutils/e2fsprogs
.Nm fsck.ext2fs Pq Pa ports/filesystems/e2fsprogs
on the
.Nm
device using the

View file

@ -59,7 +59,7 @@ and
may be removed from a future version of
.Fx .
Users are advised to evaluate the
.Pa sysutils/fusefs-smbnetfs
.Pa filesystems/smbnetfs
port instead.
.Ef
.Sh SEE ALSO

View file

@ -1,7 +1,7 @@
#!/bin/sh
# This script generates the dummy HFS filesystem used for the PowerPC boot
# blocks. It uses hfsutils (emulators/hfsutils) to generate a template
# blocks. It uses hfsutils (filesystems/hfsutils) to generate a template
# filesystem with the relevant interesting files. These are then found by
# grep, and the offsets written to a Makefile snippet.
#

View file

@ -32,7 +32,7 @@
. ../default.cfg
# Uses mke2fs from sysutils/e2fsprogs
# Uses mke2fs from filesystems/e2fsprogs
[ -z "`type mke2fs 2>/dev/null`" ] &&
echo "Skipping test as mke2fs not installed" && exit 0

View file

@ -33,7 +33,7 @@
. ../default.cfg
# Uses mke2fs from sysutils/e2fsprogs
# Uses mke2fs from filesystems/e2fsprogs
[ -x /usr/local/sbin/mke2fs ] || exit 0
mount | grep "$mntpoint" | grep -q md$mdstart && umount -f $mntpoint
mdconfig -l | grep -q $mdstart && mdconfig -d -u $mdstart

View file

@ -35,7 +35,7 @@
. ../default.cfg
# Uses mke2fs from sysutils/e2fsprogs
# Uses mke2fs from filesystems/e2fsprogs
[ -z "`type mke2fs 2>/dev/null`" ] &&
echo "Skipping test as mke2fs not installed" && exit 0

View file

@ -33,7 +33,7 @@
. ../default.cfg
# Uses mke2fs from sysutils/e2fsprogs
# Uses mke2fs from filesystems/e2fsprogs
[ -z "`type mke2fs 2>/dev/null`" ] &&
echo "Skipping test as mke2fs not installed" && exit 0

View file

@ -36,7 +36,7 @@
. ../default.cfg
# Uses mke2fs from sysutils/e2fsprogs
# Uses mke2fs from filesystems/e2fsprogs
[ -z "`type mke2fs 2>/dev/null`" ] &&
echo "Skipping test as mke2fs not installed" && exit 0

View file

@ -43,7 +43,7 @@ print_map_entry() {
echo "-mountprog=/usr/local/sbin/mount.exfat,fstype=${_fstype},sync :/dev/${_p}"
else
/usr/bin/logger -p info -t "special_media[$$]" \
"Cannot mount ${_fstype} formatted device /dev/${_p}: Install sysutils/fusefs-exfat first"
"Cannot mount ${_fstype} formatted device /dev/${_p}: Install filesystems/exfat first"
exit 1
fi
;;
@ -52,7 +52,7 @@ print_map_entry() {
echo "-mountprog=/usr/local/bin/ntfs-3g,fstype=${_fstype},sync :/dev/${_p}"
else
/usr/bin/logger -p info -t "special_media[$$]" \
"Cannot mount ${_fstype} formatted device /dev/${_p}: Install sysutils/fusefs-ntfs first"
"Cannot mount ${_fstype} formatted device /dev/${_p}: Install filesystems/ntfs first"
exit 1
fi
;;