aboutsummaryrefslogtreecommitdiff
path: root/Makefile.upgrade
diff options
context:
space:
mode:
authorJohn Birrell <jb@FreeBSD.org>1998-09-23 01:46:25 +0000
committerJohn Birrell <jb@FreeBSD.org>1998-09-23 01:46:25 +0000
commit6f74911f7e77a33f4e2ca84ca25eafbfef940668 (patch)
tree66239254d119ffe327f390ae8f9db52221c435f1 /Makefile.upgrade
parentc6d9533ece018f699a42465f585cfd0ce05a46cd (diff)
downloadsrc-6f74911f7e77a33f4e2ca84ca25eafbfef940668.tar.gz
src-6f74911f7e77a33f4e2ca84ca25eafbfef940668.zip
Change 3.0-CURRENT to 3.0-BETA when deciding if the installed system
is current-enough (or is that beta-enough?). Add a NOCONFIRM test for those brave souls who are game to upgrade a system in blind faith.
Notes
Notes: svn path=/head/; revision=39578
Diffstat (limited to 'Makefile.upgrade')
-rw-r--r--Makefile.upgrade20
1 files changed, 15 insertions, 5 deletions
diff --git a/Makefile.upgrade b/Makefile.upgrade
index 8840afc389b9..ba8018e63c54 100644
--- a/Makefile.upgrade
+++ b/Makefile.upgrade
@@ -1,5 +1,5 @@
#
-# $Id: Makefile.upgrade,v 1.4 1998/09/05 08:10:44 jb Exp $
+# $Id: Makefile.upgrade,v 1.5 1998/09/09 06:02:31 jb Exp $
#
# This makefile contains rules for preforming upgrades that are outside
# the scope of the normal build world process.
@@ -129,6 +129,7 @@ AOUTLIBDIRS+=${_lib}/aout
# directory.
#
${MAKEOBJDIRPREFIX}/do_move_aout_libs move-aout-libs :
+.if !defined(NOCONFIRM)
@echo
@echo "--------------------------------------------------------------"
@echo " You are about to move all the installed a.out libraries into"
@@ -139,6 +140,9 @@ ${MAKEOBJDIRPREFIX}/do_move_aout_libs move-aout-libs :
@echo Directories to search: ${LIBDIRS}
@/bin/sh -c "read -p \"Return to continue or Ctrl-C to abort: \" _e"
@sh ${.CURDIR}/tools/tools/upgrade/move_aout_libs.sh ${LIBDIRS}
+.else
+ @NOCONFIRM=1 sh ${.CURDIR}/tools/tools/upgrade/move_aout_libs.sh ${LIBDIRS}
+.endif
@ldconfig ${AOUTLIBDIRS}
@touch ${MAKEOBJDIRPREFIX}/do_move_aout_libs
@@ -152,6 +156,7 @@ ${MAKEOBJDIRPREFIX}/do_move_aout_libs move-aout-libs :
# elf world will be updated.
#
${MAKEOBJDIRPREFIX}/do_aout_installworld :
+.if !defined(NOCONFIRM)
@echo
@echo "--------------------------------------------------------------"
@echo " You are about to update the installed system (or the system"
@@ -159,7 +164,8 @@ ${MAKEOBJDIRPREFIX}/do_aout_installworld :
@echo " now or press return to start the first phase of the update."
@echo "--------------------------------------------------------------"
@/bin/sh -c "read -p \"Return to continue or Ctrl-C to abort: \" _e"
-.if ${INSTALLEDVERSION} != "3.0-CURRENT"
+.endif
+.if ${INSTALLEDVERSION} != "3.0-BETA"
@echo
@echo "--------------------------------------------------------------"
@echo " Saving a copy of programs required to shut the system down"
@@ -185,10 +191,10 @@ ${MAKEOBJDIRPREFIX}/do_aout_installworld :
# directory as an obscure name just in case a reboot is required?
#
${MAKEOBJDIRPREFIX}/do_aout_kernel :
-.if ${INSTALLEDVERSION} == "3.0-CURRENT"
+.if ${INSTALLEDVERSION} == "3.0-BETA"
@echo
@echo "--------------------------------------------------------------"
- @echo " You are already running 3.0-CURRENT, so a kernel build"
+ @echo " You are already running 3.0-BETA, so a kernel build"
@echo " is probably not required."
@echo "--------------------------------------------------------------"
.else
@@ -213,6 +219,7 @@ ${MAKEOBJDIRPREFIX}/do_aout_kernel :
# installed in different places (typically in aout subdirectories).
#
${MAKEOBJDIRPREFIX}/do_elf_installworld :
+.if !defined(NOCONFIRM)
@echo
@echo "--------------------------------------------------------------"
@echo " You are about to update the installed system (or the system"
@@ -222,6 +229,7 @@ ${MAKEOBJDIRPREFIX}/do_elf_installworld :
@echo " press return to start the second phase of the update."
@echo "--------------------------------------------------------------"
@/bin/sh -c "read -p \"Return to continue or Ctrl-C to abort: \" _e"
+.endif
@echo
@echo "--------------------------------------------------------------"
@echo " Doing an elf installworld using the aout tools in the aout"
@@ -250,7 +258,7 @@ ${MAKEOBJDIRPREFIX}/do_set_objformat :
# and reboot.
#
${MAKEOBJDIRPREFIX}/do_install_kernel_reboot :
-.if ${INSTALLEDVERSION} == "3.0-CURRENT"
+.if ${INSTALLEDVERSION} == "3.0-BETA"
@echo
@echo "--------------------------------------------------------------"
@echo " Your system has been updated to run elf by default!"
@@ -259,6 +267,7 @@ ${MAKEOBJDIRPREFIX}/do_install_kernel_reboot :
@echo "--------------------------------------------------------------"
@touch ${MAKEOBJDIRPREFIX}/do_install_kernel_reboot
.else
+.if !defined(NOCONFIRM)
@echo
@echo "--------------------------------------------------------------"
@echo " Your system has been updated to run elf by default!"
@@ -270,6 +279,7 @@ ${MAKEOBJDIRPREFIX}/do_install_kernel_reboot :
@echo " system rebooted."
@echo "--------------------------------------------------------------"
@${MAKEOBJDIRPREFIX}/sh -c "read -p \"Return to continue or Ctrl-C to abort: \" _e"
+.endif
@echo
@echo "--------------------------------------------------------------"
@echo " Installing a new GENERICupgrade kernel"