Magellan Linux

Contents of /trunk/installer-simple/functions/installer-dialogs.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2882 - (show annotations) (download) (as text)
Fri Jul 31 09:39:45 2015 UTC (8 years, 9 months ago) by niro
File MIME type: application/x-sh
File size: 2177 byte(s)
-consolidate install functions for every single method
1 welcome()
2 {
3 messagebox -y 10 -x 70 -h $"Welcome" $"Welcome to the ${DEFAULT_TITLE}.\n\n\nPress [Enter] to continue."
4 }
5
6 finish()
7 {
8 OK_LABEL=$"Exit" messagebox -y 10 -x 70 -h $"Finish" $"Installation was successfully finished."
9 }
10
11 dialog_setup_hdd_create_partitions()
12 {
13 infobox $"Creating partitions ..."
14 }
15
16 dialog_setup_hdd_format()
17 {
18 infobox $"Creating filesystems ..."
19 }
20
21 dialog_install_settings()
22 {
23 infobox $"Saving system settings ..."
24 }
25
26 dialog_install_system_image()
27 {
28 gaugebox $"Copying system image ..."
29 }
30
31 dialog_install_initrd()
32 {
33 infobox $"Writing initrd ..."
34 }
35
36 dialog_install_bootsector()
37 {
38 infobox $"Writing bootsector ..."
39 }
40
41 dialog_install_successful()
42 {
43 OK_LABEL=$"Finish" messagebox $"The installation was \Z2successful\Zn."
44 }
45
46 dialog_install_failure()
47 {
48 messagebox $"The installation \Z1failed\Zn.\n\nError at ${ERROR}, RetVal: ${RETVAL}"
49 }
50
51 dialog_no_harddrive_found()
52 {
53 OK_LABEL=$"Abort" messagebox $"No appropriate harddrive found.\nInstallation failed."
54 }
55
56 dialog_select_target_harddrive()
57 {
58 menubox $"Select installation target drive:" $(for i in ${ALL_DISKS}; do echo "${i}:";done)
59 }
60
61 dialog_setup_hdd_info()
62 {
63 case "${INSTALL_METHOD}" in
64 auto)
65 dialog_setup_hdd_info_auto
66 dialog_setup_hdd_create_partitions
67 ;;
68 normal) dialog_setup_hdd_info_normal ;;
69 esac
70 }
71
72 dialog_setup_hdd_info_normal()
73 {
74 local drivenode="${HDD//\/dev\/}1"
75
76 messagebox -h $"[ Harddrive partitioning ]" \
77 $"Please create 1 partition.\n\n[ \Z3${drivenode}\Zn ] type: \Z3linux\Zn with the whole diskspace.\nPlease mark ${drivenode} \Z3bootable\Zn."
78 }
79
80 dialog_setup_hdd_info_auto()
81 {
82 local drivenode="${HDD//\/dev\/}"
83
84 messagebox -h $"[ Harddrive partitioning ]" \
85 $"\Z1Warning!\Zn\n\nAll data on disk [ \Z3${drivenode}\Zn ] will be erased!"
86 }
87
88 dialog_setup_system_menu()
89 {
90 menubox -h $"[ Harddrive partitioning ]" $"\nSelect an installation mode" \
91 $"1:Automatic setup (recommended)" \
92 ":" \
93 $":\Z1Expert modes:\Zn" \
94 $"2:Common IDE-disk (manual setup)"
95 }
96
97 dialog_main()
98 {
99 CANCEL_LABEL=$"Exit" menubox $"Configuration:" \
100 $"1:Install system" \
101 $"2:Show detected harddrives" \
102 $"3:Exit and reboot" \
103 $"4:Exit and drop into a shell"
104 }