Skip to content

Commit

Permalink
ports/filesystems: Fix fallout
Browse files Browse the repository at this point in the history
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
  • Loading branch information
concussious committed Jan 27, 2025
1 parent 582c8de commit 066ef2a
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion release/powerpc/generate-hfs.sh
Original file line number Diff line number Diff line change
@@ -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.
#
Expand Down
2 changes: 1 addition & 1 deletion share/man/man4/ccd.4
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion share/man/man4/smbfs.4
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,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
Expand Down
2 changes: 1 addition & 1 deletion stand/powerpc/boot1.chrp/generate-hfs.sh
Original file line number Diff line number Diff line change
@@ -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.
#
Expand Down
2 changes: 1 addition & 1 deletion tools/test/stress2/misc/ext2fs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tools/test/stress2/misc/ext2fs2.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tools/test/stress2/misc/ext2fs3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tools/test/stress2/misc/ext3fs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tools/test/stress2/misc/ext4fs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions usr.sbin/autofs/autofs/special_media
Original file line number Diff line number Diff line change
Expand Up @@ -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
;;
Expand All @@ -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
;;
Expand Down

0 comments on commit 066ef2a

Please sign in to comment.