summaryrefslogtreecommitdiff
path: root/release/SETUP
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1997-04-16 19:53:41 +0000
committerThomas Bushnell <thomas@gnu.org>1997-04-16 19:53:41 +0000
commit30f268f8a13209f720dc4879e1dde8e8319ebcb8 (patch)
tree1085d9f7c6b3971f69745d4f180775b0a8ebdc46 /release/SETUP
parent2e77e9a4d22a5e29af1b9d8d4d24ed7e35b94325 (diff)
Fri Apr 11 14:21:29 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* SETUP: Comment out frobbing of BOOT_DEV; grub does that on it's own now. * INSTALL-GRUB-MBR: Delete file. * Makefile (dist-files): Omit INSTALL-GRUB-MBR. (install-dist): Likewise. * menu.lst (title): Replace install entries with new versions. * INSTALL-binary (STEP IV): Revised instructions to correspond to new reality, with Grub 0.4.
Diffstat (limited to 'release/SETUP')
-rw-r--r--release/SETUP44
1 files changed, 22 insertions, 22 deletions
diff --git a/release/SETUP b/release/SETUP
index 92f3c241..4f410792 100644
--- a/release/SETUP
+++ b/release/SETUP
@@ -3,20 +3,20 @@
PATH=/bin:/sbin
-BOOT_DEV="$1"
-if [ ! "$BOOT_DEV" ]; then
- echo "No device to install a boot loader was specified."
- echo "Here are some possible devices to use:"
- /bin/devprobe sd0 hd0 sd1 hd1
- echo -n "Boot device? [none] "
- read BOOT_DEV
-fi
-
-if [ "$BOOT_DEV" ]; then
- if /bin/devprobe -s "$BOOT_DEV"; then true; else
- echo 2>&1 "$0: $BOOT_DEV: No such device known"; exit 1
- fi
-fi
+# BOOT_DEV="$1"
+# if [ ! "$BOOT_DEV" ]; then
+# echo "No device to install a boot loader was specified."
+# echo "Here are some possible devices to use:"
+# /bin/devprobe sd0 hd0 sd1 hd1
+# echo -n "Boot device? [none] "
+# read BOOT_DEV
+# fi
+#
+# if [ "$BOOT_DEV" ]; then
+# if /bin/devprobe -s "$BOOT_DEV"; then true; else
+# echo 2>&1 "$0: $BOOT_DEV: No such device known"; exit 1
+# fi
+# fi
set -v
@@ -33,14 +33,14 @@ cd /dev
set +v
-if test "$BOOT_DEV" && /bin/sh ./MAKEDEV "$BOOT_DEV"; then
- echo -n "Install grub as main boot record on $BOOT_DEV? [y] "
- read yn
- case "$yn" in
- "" | "[yY]*")
- /bin/sh /INSTALL-GRUB-MBR /dev/$BOOT_DEV;;
- esac
-fi
+# if test "$BOOT_DEV" && /bin/sh ./MAKEDEV "$BOOT_DEV"; then
+# echo -n "Install grub as main boot record on $BOOT_DEV? [y] "
+# read yn
+# case "$yn" in
+# "" | "[yY]*")
+# /bin/sh /INSTALL-GRUB-MBR /dev/$BOOT_DEV;;
+# esac
+# fi
echo 'Hit ^C now for shell prompt or RET to reboot'
read response