aboutsummaryrefslogtreecommitdiff
path: root/release
diff options
context:
space:
mode:
Diffstat (limited to 'release')
-rw-r--r--release/Makefile9
-rwxr-xr-xrelease/scripts/compat1x-install.sh11
-rwxr-xr-xrelease/scripts/compat20-install.sh11
-rwxr-xr-xrelease/scripts/compat21-install.sh11
-rwxr-xr-xrelease/scripts/compat22-install.sh11
-rwxr-xr-xrelease/scripts/compat3x-install.sh11
-rwxr-xr-xrelease/scripts/compat4x-install.sh11
7 files changed, 2 insertions, 73 deletions
diff --git a/release/Makefile b/release/Makefile
index 6cf03946ee110..903022147a2ee 100644
--- a/release/Makefile
+++ b/release/Makefile
@@ -153,14 +153,9 @@ DIST_DOCS_ARCH_DEP= installation relnotes hardware
# Things which without too much trouble can be considered variables
# BASE_DISTS are special in that they get full /etc installation sets.
#
-.if ${TARGET_ARCH} == "i386"
-COMPAT_DISTS?= compat1x compat20 compat21 compat22 compat3x compat4x
-.elif ${TARGET_ARCH} == "alpha"
-COMPAT_DISTS?= compat4x
-.endif
OTHER_DISTS?= catpages manpages games proflibs dict info doc
BASE_DISTS?= base
-DISTRIBUTIONS?= ${BASE_DISTS} ${OTHER_DISTS} ${COMPAT_DISTS}
+DISTRIBUTIONS?= ${BASE_DISTS} ${OTHER_DISTS}
# mountpoint for filesystems.
MNT= /mnt
@@ -601,7 +596,7 @@ release.5:
# Remove all the directories we don't need.
-cd ${RD}/trees && \
- find ${OTHER_DISTS} ${COMPAT_DISTS} -depth -type d -print | xargs rmdir
+ find ${OTHER_DISTS} -depth -type d -print | xargs rmdir
touch ${.TARGET}
#
diff --git a/release/scripts/compat1x-install.sh b/release/scripts/compat1x-install.sh
deleted file mode 100755
index b471caa9dfde9..0000000000000
--- a/release/scripts/compat1x-install.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-if [ "`id -u`" != "0" ]; then
- echo "Sorry, this must be done as root."
- exit 1
-fi
-cat compat1x.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
-exit 0
diff --git a/release/scripts/compat20-install.sh b/release/scripts/compat20-install.sh
deleted file mode 100755
index ec0faeca3427b..0000000000000
--- a/release/scripts/compat20-install.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-if [ "`id -u`" != "0" ]; then
- echo "Sorry, this must be done as root."
- exit 1
-fi
-cat compat20.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
-exit 0
diff --git a/release/scripts/compat21-install.sh b/release/scripts/compat21-install.sh
deleted file mode 100755
index 5680c290139d4..0000000000000
--- a/release/scripts/compat21-install.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-if [ "`id -u`" != "0" ]; then
- echo "Sorry, this must be done as root."
- exit 1
-fi
-cat compat21.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
-exit 0
diff --git a/release/scripts/compat22-install.sh b/release/scripts/compat22-install.sh
deleted file mode 100755
index 97708c59617e1..0000000000000
--- a/release/scripts/compat22-install.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-if [ "`id -u`" != "0" ]; then
- echo "Sorry, this must be done as root."
- exit 1
-fi
-cat compat22.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
-exit 0
diff --git a/release/scripts/compat3x-install.sh b/release/scripts/compat3x-install.sh
deleted file mode 100755
index e2168180f5c98..0000000000000
--- a/release/scripts/compat3x-install.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-if [ "`id -u`" != "0" ]; then
- echo "Sorry, this must be done as root."
- exit 1
-fi
-cat compat3x.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
-exit 0
diff --git a/release/scripts/compat4x-install.sh b/release/scripts/compat4x-install.sh
deleted file mode 100755
index 2950a1b6b9fca..0000000000000
--- a/release/scripts/compat4x-install.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-if [ "`id -u`" != "0" ]; then
- echo "Sorry, this must be done as root."
- exit 1
-fi
-cat compat4x.?? | tar --unlink -xpzf - -C ${DESTDIR:-/}
-exit 0