summaryrefslogtreecommitdiff
path: root/src/lib/setup_TOPROCESS
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/setup_TOPROCESS')
-rw-r--r--src/lib/setup_TOPROCESS85
1 files changed, 0 insertions, 85 deletions
diff --git a/src/lib/setup_TOPROCESS b/src/lib/setup_TOPROCESS
index 14120f1..5ce5cb1 100644
--- a/src/lib/setup_TOPROCESS
+++ b/src/lib/setup_TOPROCESS
@@ -1,16 +1,5 @@
#!/bin/bash
-# taken from setup
-# Disable swap and all mounted partitions for the destination system. Unmount
-# the destination root partition last!
-target_umountall()
-{
- DIALOG --infobox "Disabling swapspace, unmounting already mounted disk devices..." 0 0
- swapoff -a >/dev/null 2>&1
- umount $(mount | grep -v "${TARGET_DIR} " | grep "${TARGET_DIR}" | sed 's|\ .*||g') >/dev/null 2>&1
- umount $(mount | grep "${TARGET_DIR} " | sed 's|\ .*||g') >/dev/null 2>&1
-}
-
autoprepare()
{
DISCS=$(finddisks)
@@ -1004,77 +993,3 @@ configure_system()
S_CONFIG=1
}
-
-install_bootloader()
-{
- DIALOG --colors --menu "Which bootloader would you like to use? Grub is the Arch default.\n\n" \
- 10 65 2 \
- "GRUB" "Use the GRUB bootloader (default)" \
- "None" "\Zb\Z1Warning\Z0\ZB: you must install your own bootloader!" 2>$ANSWER
- case $(cat $ANSWER) in
- "GRUB") dogrub ;;
- esac
-}
-
-mainmenu()
-{
- if [ -n "$NEXTITEM" ]; then
- DEFAULT="--default-item $NEXTITEM"
- else
- DEFAULT=""
- fi
- DIALOG $DEFAULT --title " MAIN MENU " \
- --menu "Use the UP and DOWN arrows to navigate menus. Use TAB to switch between buttons and ENTER to select." 16 55 8 \
- "0" "Select Source" \
- "1" "Set Clock" \
- "2" "Prepare Hard Drive" \
- "3" "Select Packages" \
- "4" "Install Packages" \
- "5" "Configure System" \
- "6" "Install Bootloader" \
- "7" "Exit Install" 2>$ANSWER
- NEXTITEM="$(cat $ANSWER)"
- case $(cat $ANSWER) in
- "0")
- select_source ;;
- "1")
- set_clock ;;
- "2")
- prepare_harddrive ;;
- "3")
- select_packages ;;
- "4")
- installpkg ;;
- "5")
- configure_system ;;
- "6")
- install_bootloader ;;
- "7")
- echo ""
- echo "If the install finished successfully, you can now type 'reboot'"
- echo "to restart the system."
- echo ""
- exit 0 ;;
- *)
- DIALOG --yesno "Abort Installation?" 6 40 && exit 0
- ;;
- esac
-}
-
-#####################
-## begin execution ##
-
-DIALOG --msgbox "Welcome to the Arch Linux Installation program. The install \
-process is fairly straightforward, and you should run through the options in \
-the order they are presented. If you are unfamiliar with partitioning/making \
-filesystems, you may want to consult some documentation before continuing. \
-You can view all output from commands by viewing your VC7 console (ALT-F7). \
-ALT-F1 will bring you back here." 14 65
-
-while true; do
- mainmenu
-done
-
-exit 0
-
-# vim: set ts=4 sw=4 et: