summaryrefslogtreecommitdiff
path: root/src/core/procedures/interactive
blob: d4c3cf67c3e5c3b63b48faccf7bf91403a59c9d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
#!/bin/sh
depend_procedure core base # esp for auto_{network,locale,fstab}, intro and set_clock workers


# This is a port of the original /arch/setup script.  It doesn't use aif phases but uses it's own menu-based flow (phase) control

EDITOR=
BLOCK_ROLLBACK_USELESS=1

# clock
HARDWARECLOCK=
TIMEZONE=

# partitions
PART_ROOT=

# default filesystem specs (the + is bootable flag)
# <mountpoint>:<partsize>:<fstype>[:+]
DEFAULTFS="/boot:32:ext2:+ swap:256:swap /:7500:ext3 /home:*:ext3"

worker_select_source_title='Select Source'
worker_runtime_network_title='Setup Network (Make sure the network is ok before continuing'
worker_select_mirror_title='Choose Mirror'
worker_set_clock_title='Set clock'
worker_prepare_disks_title='Prepare Hard Drive(s)'
worker_package_list_title='Select Packages'
worker_install_packages_title='Install Packages'
worker_configure_system_title='Configure System'
worker_install_bootloader_title='Install Bootloader'

start_process ()
{
	#####################
	## begin execution ##

	execute worker configure
	execute worker intro
	execute worker sysprep

	# menu item tracker- autoselect the next item
	NEXTITEM="1"
	
	while true
	do
    		mainmenu
	done
}


mainmenu()  
{
	default=no
	[ -n "$NEXTITEM" ] && default="$NEXTITEM"

	#TODO: why does a '2' appear instead of '' ??
	ask_option $default "MAIN MENU" '' \
	"1" "$worker_select_source_title" \
	"2" "$worker_set_clock_title" \
	"3" "$worker_prepare_disks_title" \
	"4" "$worker_package_list_title" \
	"5" "$worker_install_packages_title" \
	"6" "$worker_configure_system_title" \
	"7" "$worker_install_bootloader_title" \
	"8" "Exit Install"
	case $ANSWER_OPTION in
	"1")
		                                        execute worker select_source; ret=$?; [ $ret -eq 0 -a "$var_PKG_SOURCE_TYPE" = ftp ] && select_source_extras_menu
		                                                                              [ $ret -eq 0 ] && execute worker runtime_packages                   && NEXTITEM=2 ;;

        "2")
		                                        execute worker set_clock                                                                                  && NEXTITEM=3 ;;
        "3")
		                                        execute worker prepare_disks                                                                              && NEXTITEM=4 ;;
        "4")
		check_depend worker prepare_disks && \
		check_depend worker select_source    && execute worker package_list                                                                               && NEXTITEM=5 ;;
        "5")
		check_depend worker package_list && \
		check_depend worker select_source    && execute worker install_packages   && {                                    execute worker auto_fstab   ; \
		                                                                               ended_ok worker runtime_network && execute worker auto_network ; \
		                                                                                                                  execute worker auto_locale  ; } && NEXTITEM=6 ;;
        "6")
		check_depend worker install_packages && execute worker configure_system   && {                                    execute worker mkinitcpio   ; \
		                                                                                                                  execute worker locales      ; } && NEXTITEM=7 ;; #TODO: why is next item 4 if $?=0?. maybe fixed now
        "7")
		check_depend worker configure_system && execute worker install_bootloader                                                                         && NEXTITEM=8 ;;
        "8")
		notify "If the install finished successfully, you can now type 'reboot' to restart the system." && stop_installer ;;
        *)
		ask_yesno "Abort Installation?" && stop_installer ;;
    esac
}


select_source_extras_menu ()
{
	while true; do
		ask_option no "FTP Installation" '' \
		"1" "$worker_runtime_network_title" \
		"2" "$worker_select_mirror_title" \
		"3" "Return to Main Menu"
		[ "$ANSWER_OPTION" = 1 ] && execute worker runtime_network
		[ "$ANSWER_OPTION" = 2 ] && execute worker select_mirror
		[ "$ANSWER_OPTION" = 3 ] && break
	done
}

worker_configure_system()
{
	## PREPROCESSING ##

	#TODO: only need to do this once.  check 'ended_ok worker configure_system' is not good because this could be done already even if worker did not exit 0
	# /etc/pacman.d/mirrorlist
	# add installer-selected mirror to the top of the mirrorlist
	if [ "$var_PKG_SOURCE_TYPE" = "ftp" -a "${SYNC_URL}" != "" ]; then
		debug "Adding choosen mirror (${SYNC_URL}) to ${var_TARGET_DIR}/$var_MIRRORLIST"
		mirrorlist=`awk "BEGIN { printf(\"# Mirror used during installation\nServer = "${SYNC_URL}"\n\n\") } 1 " "${var_TARGET_DIR}/$var_MIRRORLIST"`
		echo "$mirrorlist" > "${var_TARGET_DIR}/$var_MIRRORLIST" #TODO: test this, this may not work
	fi

	# /etc/rc.conf
	# Make sure timezone and utc info are what we want
	sed -i -e "s/^TIMEZONE=.*/TIMEZONE=\"$TIMEZONE\"/g" \
		-e "s/^HARDWARECLOCK=.*/HARDWARECLOCK=\"$HARDWARECLOCK\"/g" \
		${var_TARGET_DIR}/etc/rc.conf


	interactive_configure_system &&	return 0
	return 1
}


worker_prepare_disks()
{
	DONE=0
	ret=1 # 1 means unsuccessful. 0 for ok
	NEXTITEM=
	DISK_CONFIG_TYPE=
	[ "$BLOCK_ROLLBACK_USELESS" = "0" ] && show_warning "Rollback may be needed" "It seems you already went here.  You should probably rollback previous changes before reformatting, otherwise stuff will probably fail"
	while [ "$DONE" = "0" ]
	do
		rollbackstr=" (you don't need to do this)"
		[ "$BLOCK_ROLLBACK_USELESS" = "0" ] && rollbackstr=" (this will revert your last changes)"

		default=no
		[ -n "$NEXTITEM" ] && default="$NEXTITEM"

		ask_option $default "Prepare Hard Drive" '' \
		"1" "Auto-Prepare (erases the ENTIRE hard drive and sets up partitions and filesystems)" \
		"2" "Partition Hard Drives" \
		"3" "Configure block devices, filesystems and mountpoints" \
		"4" "Rollback last filesystem changes$rollbackstr" \
		"5" "Return to Main Menu"

        case $ANSWER_OPTION in
            "1")
		[ "$BLOCK_ROLLBACK_USELESS" = "0" ] && ask_yesno "You should probably rollback your last changes first, otherwise this will probably fail.  Go back to menu to do rollback?" && NEXTITEM=4 && break;
                interactive_autoprepare && NEXTITEM=5 && ret=0 && DISK_CONFIG_TYPE=auto;; #TODO: for some reason. if this completes $?=0, next item will be 1 :/
            "2")
		[ "$BLOCK_ROLLBACK_USELESS" = "0" ] && ask_yesno "You should probably rollback your last changes first, otherwise this will probably fail.  Go back to menu to do rollback?" && NEXTITEM=4 && break;
		interactive_partition && ret=1 && NEXTITEM=3 && DISK_CONFIG_TYPE=manual
		;;
            "3")
		[ "$BLOCK_ROLLBACK_USELESS" = "0" ] && ask_yesno "You should probably rollback your last changes first, otherwise this will probably fail.  Go back to menu to do rollback?" && NEXTITEM=4 && break;
		PARTFINISH=""
		interactive_filesystems && ret=0 && NEXTITEM=5 && DISK_CONFIG_TYPE=manual
		;;
           "4")
		if [ "$BLOCK_ROLLBACK_USELESS" = "1" ]
		then
			ask_yesno "It seems like you haven't partitioned/formatted/mounted anything yet (or rolled back already).  This operation is useless (unless the installer is buggy), but it doesn't harm.  Do you want to continue?" || NEXTITEM=5
		fi
		if [ $? -eq 0 -o "$BLOCK_ROLLBACK_USELESS" = "0" ]
		then
			if rollback_filesystems #TODO: this part doesn't belong here. move it to ui-interactive. (interactive_rollback)
			then
				infofy "Rollback succeeded"
			else
				show_warning "Rollback failed" "Rollback failed"
			fi
		fi
		;;
            *)
                DONE=1 ;;
        esac
    done
    return $ret
}


worker_select_source ()
{
	#TODO: how to handle user going here again? discard previous settings, warn him that he already done it?
	interactive_select_source && return 0
	return 1
}


worker_intro ()
{
	notify "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."
}


worker_configure ()
{
	var_UI_TYPE=${arg_ui_type:-dia}
}


# select_packages()
# prompts the user to select packages to install
worker_package_list() {
	# if selection has been done before, warn about loss of input and let the user exit gracefully
	ended_ok worker package_list && ! ask_yesno "WARNING: Running this stage again will result in the loss of previous package selections.\n\nDo you wish to continue?" && return 0

	interactive_select_packages
}


worker_install_packages ()
{
	installpkg && return 0
	return 1
}


# Hand-hold through setting up networking
worker_runtime_network() {
	interactive_runtime_network
}


worker_select_mirror ()
{
	interactive_select_mirror
}


worker_install_bootloader ()
{
	ask_option Grub "Choose bootloader" "Which bootloader would you like to use?  Grub is the Arch default." \
			"Grub" "Use the GRUB bootloader (default)" \
			"None" "\Zb\Z1Warning\Z0\ZB: you must install your own bootloader!"

	bl=`tr '[:upper:]' '[:lower:]' <<< "$ANSWER_OPTION"`
	[ "$bl" != grub ] && return 0
	interactive_install_grub
}


worker_auto_network ()
{
	ask_yesno "Do you want to use the network settings from the installer in rc.conf and resolv.conf?\n\nIf you used Proxy settings, they will be written to /etc/profile.d/proxy.sh" || return 0

        [ "$S_DHCP"  = 1 ] && target_configure_network dhcp  "$PROXY_HTTP" "$PROXY_FTP"
        [ "$S_DHCP" != 1 ] && target_configure_network fixed "$PROXY_HTTP" "$PROXY_FTP"
}