aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2025-12-09 20:29:05 +0000
committerEd Maste <emaste@FreeBSD.org>2026-01-12 18:47:38 +0000
commitdac74b20c706b1f73986fb40dac27ed85c1d2850 (patch)
treedf88e6e76dfdf522b51f492af9a96f4736871834
parenta551b0524953cbfa4f1035c6d968623e64f4436a (diff)
bsdinstall: Drop "Technology preview" from package sets
And refer to dist sets as "legacy." This matches our expectation for FreeBSD 16.0. Reviewed by: cperciva Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D54156
-rwxr-xr-xusr.sbin/bsdinstall/scripts/auto4
-rwxr-xr-xusr.sbin/bsdinstall/scripts/jail4
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/bsdinstall/scripts/auto b/usr.sbin/bsdinstall/scripts/auto
index 2204b33ae105..e9d6da149a85 100755
--- a/usr.sbin/bsdinstall/scripts/auto
+++ b/usr.sbin/bsdinstall/scripts/auto
@@ -209,9 +209,9 @@ if [ ! -f $BSDINSTALL_DISTDIR/MANIFEST ]; then
PKGBASE=yes
else
bsddialog --backtitle "$OSNAME Installer" --title "Select Installation Type" \
- --yes-label "Distribution Sets" --no-label "Packages (Tech Preview)" --yesno \
+ --yes-label "Distribution Sets" --no-label "Packages" --yesno \
$PKGBASE_DEFAULT_BUTTON \
- "Would you like to install the base system using traditional distribution sets or packages (technology preview)?" 0 0
+ "Would you like to install the base system using legacy distribution sets or packages?" 0 0
if [ $? -eq 1 ]; then
PKGBASE=yes
fi
diff --git a/usr.sbin/bsdinstall/scripts/jail b/usr.sbin/bsdinstall/scripts/jail
index e4238ac0a687..5ebeb3eeeacd 100755
--- a/usr.sbin/bsdinstall/scripts/jail
+++ b/usr.sbin/bsdinstall/scripts/jail
@@ -175,8 +175,8 @@ fi
if [ ! "$nonInteractive" == "YES" ]; then
bsddialog --backtitle "$OSNAME Installer" --title "Select Installation Type" \
- --yes-label "Distribution Sets" --no-label "Packages (Tech Preview)" --yesno \
- "Would you like to install the base system using traditional distribution sets or packages (technology preview)?" 0 0
+ --yes-label "Distribution Sets" --no-label "Packages" --yesno \
+ "Would you like to install the base system using legacy distribution sets or packages?" 0 0
if [ $? -eq 1 ]; then
PKGBASE=yes
fi