]> git.ipfire.org Git - ipfire-2.x.git/blame - src/installer/main.c
installer: When there is only one disk, fix automatic selection
[ipfire-2.x.git] / src / installer / main.c
CommitLineData
d6aaa55d
MT
1/* SmoothWall install program.
2 *
3 * This program is distributed under the terms of the GNU General Public
4 * Licence. See the file COPYING for details.
5 *
6 * (c) Lawrence Manning, 2001
f9cc0d70 7 * Contains main entry point, and misc functions.6
d6aaa55d 8 *
d6aaa55d 9 */
10bc6f06 10
f0fa1795
MT
11#include <assert.h>
12#include <errno.h>
b83b8f70 13#include <stdio.h>
f0fa1795
MT
14#include <stdlib.h>
15#include <string.h>
16#include <sys/mount.h>
17
18#include "hw.h"
19#include "install.h"
5315fae6
MT
20
21// Translation
22#include <libintl.h>
23#define _(x) dgettext("installer", x)
24
68561214 25#define INST_FILECOUNT 21000
33634aa8 26#define UNATTENDED_CONF "/cdrom/boot/unattended.conf"
918546e2 27#define LICENSE_FILE "/cdrom/COPYING"
d6aaa55d 28
d6aaa55d
MT
29extern char url[STRING_SIZE];
30
d7dd283b
MT
31static int newtChecklist(const char* title, const char* message,
32 unsigned int width, unsigned int height, unsigned int num_entries,
33 const char** entries, int* states) {
34 int ret;
35 const int list_height = 4;
36
37 char cbstates[num_entries];
38
39 for (unsigned int i = 0; i < num_entries; i++) {
40 cbstates[i] = states[i] ? '*' : ' ';
41 }
42
43 newtCenteredWindow(width, height, title);
44
45 newtComponent textbox = newtTextbox(1, 1, width - 2, height - 6 - list_height,
46 NEWT_FLAG_WRAP);
47 newtTextboxSetText(textbox, message);
48
49 int top = newtTextboxGetNumLines(textbox) + 2;
50
51 newtComponent form = newtForm(NULL, NULL, 0);
52
53 newtComponent sb = NULL;
54 if (list_height < num_entries) {
55 sb = newtVerticalScrollbar(
56 width - 4, top + 1, list_height,
57 NEWT_COLORSET_CHECKBOX, NEWT_COLORSET_ACTCHECKBOX);
58
59 newtFormAddComponent(form, sb);
60 }
61
62 newtComponent subform = newtForm(sb, NULL, 0);
63 newtFormSetBackground(subform, NEWT_COLORSET_CHECKBOX);
64
65 newtFormSetHeight(subform, list_height);
66 newtFormSetWidth(subform, width - 10);
67
68 for (unsigned int i = 0; i < num_entries; i++) {
69 newtComponent cb = newtCheckbox(4, top + i, entries[i], cbstates[i],
70 NULL, &cbstates[i]);
71
72 newtFormAddComponent(subform, cb);
73 }
74
75 newtFormAddComponents(form, textbox, subform, NULL);
76
5315fae6
MT
77 newtComponent btn_okay = newtButton((width - 18) / 3, height - 4, _("OK"));
78 newtComponent btn_cancel = newtButton((width - 18) / 3 * 2 + 9, height - 4, _("Cancel"));
d7dd283b
MT
79 newtFormAddComponents(form, btn_okay, btn_cancel, NULL);
80
81 newtComponent answer = newtRunForm(form);
82
83 if ((answer == NULL) || (answer == btn_cancel)) {
84 ret = -1;
85 } else {
86 ret = 0;
87
88 for (unsigned int i = 0; i < num_entries; i++) {
89 states[i] = (cbstates[i] != ' ');
90
91 if (states[i])
92 ret++;
93 }
94 }
95
96 newtFormDestroy(form);
97 newtPopWindow();
98
99 return ret;
100}
101
102static int newtWinOkCancel(const char* title, const char* message, int width, int height,
103 const char* btn_txt_ok, const char* btn_txt_cancel) {
104 int ret = 1;
105
106 newtCenteredWindow(width, height, title);
107
108 newtComponent form = newtForm(NULL, NULL, 0);
109
110 newtComponent textbox = newtTextbox(1, 1, width - 2, height - 6, NEWT_FLAG_WRAP);
111 newtTextboxSetText(textbox, message);
112 newtFormAddComponent(form, textbox);
113
114 newtComponent btn_ok = newtButton((width - 16) / 3, height - 4, btn_txt_ok);
115 newtComponent btn_cancel = newtButton((width - 16) / 3 * 2 + 9, height - 4,
116 btn_txt_cancel);
117
118 newtFormAddComponents(form, btn_ok, btn_cancel, NULL);
119
120 newtComponent answer = newtRunForm(form);
121
122 if (answer == btn_ok) {
123 ret = 0;
124 }
125
126 newtFormDestroy(form);
127 newtPopWindow();
128
129 return ret;
130}
131
bd5e7c29
MT
132static int newtLicenseBox(const char* title, const char* text, int width, int height) {
133 int ret = 1;
134
135 newtCenteredWindow(width, height, title);
136
137 newtComponent form = newtForm(NULL, NULL, 0);
138
139 newtComponent textbox = newtTextbox(1, 1, width - 2, height - 7,
140 NEWT_FLAG_WRAP|NEWT_FLAG_SCROLL);
141 newtTextboxSetText(textbox, text);
142 newtFormAddComponent(form, textbox);
143
144 char choice;
5315fae6 145 newtComponent checkbox = newtCheckbox(3, height - 3, _("I accept this license"),
bd5e7c29
MT
146 ' ', " *", &choice);
147
5315fae6 148 newtComponent btn = newtButton(width - 15, height - 4, _("OK"));
bd5e7c29
MT
149
150 newtFormAddComponents(form, checkbox, btn, NULL);
151
152 newtComponent answer = newtRunForm(form);
153 if (answer == btn && choice == '*')
154 ret = 0;
155
156 newtFormDestroy(form);
157 newtPopWindow();
158
159 return ret;
160}
161
5315fae6
MT
162int write_lang_configs(const char *lang) {
163 struct keyvalue *kv = initkeyvalues();
164
165 /* default stuff for main/settings. */
166 replacekeyvalue(kv, "LANGUAGE", lang);
167 replacekeyvalue(kv, "HOSTNAME", SNAME);
168 replacekeyvalue(kv, "THEME", "ipfire");
169 writekeyvalues(kv, "/harddisk" CONFIG_ROOT "/main/settings");
170 freekeyvalues(kv);
171
172 return 1;
173}
174
b83b8f70
MT
175static char* get_system_release() {
176 char system_release[STRING_SIZE] = "\0";
177
178 FILE* f = fopen("/etc/system-release", "r");
179 if (f) {
180 fgets(system_release, sizeof(system_release), f);
181 fclose(f);
182 }
183
184 return strdup(system_release);
185}
186
187static char* center_string(const char* str, int width) {
188 unsigned int str_len = strlen(str);
189
190 unsigned int indent_length = (width - str_len) / 2;
191 char indent[indent_length + 1];
192
193 for (unsigned int i = 0; i < indent_length; i++) {
194 indent[i] = ' ';
195 }
196 indent[indent_length] = '\0';
197
198 char* string = NULL;
199 if (asprintf(&string, "%s%s", indent, str) < 0)
200 return NULL;
201
202 return string;
203}
204
37f3421a
MT
205#define DEFAULT_LANG "English"
206#define NUM_LANGS 8
207
208static struct lang {
209 const char* code;
210 char* name;
211} languages[NUM_LANGS + 1] = {
d04d4d58
MT
212 { "nl_NL.utf8", "Dutch (Nederlands)" },
213 { "en_US.utf8", "English" },
214 { "fr_FR.utf8", "French (Français)" },
215 { "de_DE.utf8", "German (Deutsch)" },
216 { "pl_PL.utf8", "Polish (Polski)" },
217 { "ru_RU.utf8", "Russian (Русский)" },
218 { "es_ES.utf8", "Spanish (Español)" },
219 { "tr_TR.utf8", "Turkish (Türkçe)" },
37f3421a
MT
220 { NULL, NULL },
221};
222
f0fa1795
MT
223int main(int argc, char *argv[]) {
224 struct hw* hw = hw_init();
46b56e20 225 const char* logfile = NULL;
e0bbaf87 226
b83b8f70
MT
227 // Read /etc/system-release
228 char* system_release = get_system_release();
229
e0bbaf87
AF
230 char discl_msg[40000] = "Disclaimer\n";
231
f0fa1795 232 char* sourcedrive = NULL;
72d80898 233 int rc = 0;
d6aaa55d 234 char commandstring[STRING_SIZE];
d6aaa55d
MT
235 int choice;
236 char shortlangname[10];
d7dd283b 237 char message[STRING_SIZE];
d6aaa55d
MT
238 char title[STRING_SIZE];
239 int allok = 0;
e0bbaf87 240 FILE *handle, *cmdfile, *copying;
d6aaa55d 241 char line[STRING_SIZE];
5057b611 242
72d80898 243 int unattended = 0;
5faa66cf 244 int serialconsole = 0;
72d80898 245 struct keyvalue *unattendedkv = initkeyvalues();
66335974 246 char restore_file[STRING_SIZE] = "";
d6aaa55d
MT
247
248 setlocale (LC_ALL, "");
10bc6f06 249 sethostname( SNAME , 10);
72d80898 250
d6aaa55d 251 /* Log file/terminal stuff. */
46b56e20
MT
252 FILE* flog = NULL;
253 if (argc >= 2) {
254 logfile = argv[1];
255
256 if (!(flog = fopen(logfile, "w+")))
d6aaa55d 257 return 0;
46b56e20 258 } else {
d6aaa55d 259 return 0;
46b56e20
MT
260 }
261
d6aaa55d
MT
262 fprintf(flog, "Install program started.\n");
263
264 newtInit();
265 newtCls();
266
b83b8f70
MT
267 // Determine the size of the screen
268 int screen_cols = 0;
269 int screen_rows = 0;
270
271 newtGetScreenSize(&screen_cols, &screen_rows);
272
273 // Draw title
274 char* roottext = center_string(system_release, screen_cols);
275 newtDrawRootText(0, 0, roottext);
276
ae5edf16 277 snprintf(title, sizeof(title), "%s - %s", NAME, SLOGAN);
7ea444c8 278
d6aaa55d
MT
279 if (! (cmdfile = fopen("/proc/cmdline", "r")))
280 {
281 fprintf(flog, "Couldn't open commandline: /proc/cmdline\n");
282 } else {
283 fgets(line, STRING_SIZE, cmdfile);
61e3d218 284
72d80898 285 // check if we have to make an unattended install
ee78a5ef 286 if (strstr (line, "unattended") != NULL) {
72d80898 287 unattended = 1;
46b56e20 288 runcommandwithstatus("/bin/sleep 10", title, "WARNING: Unattended installation will start in 10 seconds...", NULL);
bba7212c 289 }
5faa66cf
AF
290 // check if we have to patch for serial console
291 if (strstr (line, "console=ttyS0") != NULL) {
292 serialconsole = 1;
293 }
d6aaa55d 294 }
0db33b56 295
7ea444c8 296 // Load common modules
46b56e20
MT
297 mysystem(logfile, "/sbin/modprobe vfat"); // USB key
298 hw_stop_all_raid_arrays(logfile);
4a0d9bef 299
72d80898 300 if (!unattended) {
37f3421a
MT
301 // Language selection
302 char* langnames[NUM_LANGS + 1];
72d80898 303
37f3421a
MT
304 for (unsigned int i = 0; i < NUM_LANGS; i++) {
305 if (strcmp(languages[i].name, DEFAULT_LANG) == 0)
306 choice = i;
307
308 langnames[i] = languages[i].name;
309 }
310 langnames[NUM_LANGS] = NULL;
311
312 rc = newtWinMenu(_("Language selection"), _("Select the language you wish to use for the installation."),
313 50, 5, 5, 8, langnames, &choice, _("OK"), NULL);
314
315 assert(choice <= NUM_LANGS);
316
317 fprintf(flog, "Selected language: %s (%s)\n", languages[choice].name, languages[choice].code);
d04d4d58
MT
318
319 setenv("LANGUAGE", languages[choice].code, 1);
37f3421a
MT
320 setlocale(LC_ALL, languages[choice].code);
321 }
3d6e1202 322
b83b8f70
MT
323 char* helpline = center_string(_("<Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"), screen_cols);
324 newtPushHelpLine(helpline);
0db33b56 325
e0bbaf87 326 if (!unattended) {
5315fae6 327 snprintf(message, sizeof(message),
ae5edf16 328 _("Welcome to the %s installation program.\n\n"
5315fae6
MT
329 "Selecting Cancel on any of the following screens will reboot the computer."), NAME);
330 newtWinMessage(title, _("Start installation"), message);
e0bbaf87
AF
331 }
332
f0fa1795
MT
333 /* Search for a source drive that holds the right
334 * version of the image we are going to install. */
335 sourcedrive = hw_find_source_medium(hw);
9607771a 336
f0fa1795
MT
337 fprintf(flog, "Source drive: %s\n", sourcedrive);
338 if (!sourcedrive) {
5315fae6 339 newtWinMessage(title, _("OK"), _("No local source media found. Starting download."));
46b56e20 340 runcommandwithstatus("/bin/downloadsource.sh", title, _("Downloading installation image ..."), logfile);
0f680bcc 341 if ((handle = fopen("/tmp/source_device", "r")) == NULL) {
5315fae6 342 errorbox(_("Download error"));
0f680bcc
AF
343 goto EXIT;
344 }
f0fa1795
MT
345
346 fgets(sourcedrive, 5, handle);
347 fclose(handle);
72d80898 348 }
0f680bcc 349
f0fa1795
MT
350 assert(sourcedrive);
351
25fcce25 352 int r = hw_mount(sourcedrive, SOURCE_MOUNT_PATH, "iso9660", MS_RDONLY);
f0fa1795
MT
353 if (r) {
354 fprintf(flog, "Could not mount %s to %s\n", sourcedrive, SOURCE_MOUNT_PATH);
355 fprintf(flog, strerror(errno));
356 exit(1);
357 }
918546e2 358
d7dd283b
MT
359 /* load unattended configuration */
360 if (unattended) {
361 fprintf(flog, "unattended: Reading unattended.conf\n");
362
363 (void) readkeyvalues(unattendedkv, UNATTENDED_CONF);
364 findkey(unattendedkv, "RESTORE_FILE", restore_file);
365 }
366
918546e2
MT
367 if (!unattended) {
368 // Read the license file.
369 if (!(copying = fopen(LICENSE_FILE, "r"))) {
370 sprintf(discl_msg, "Could not open license file: %s\n", LICENSE_FILE);
371 fprintf(flog, discl_msg);
372 } else {
373 fread(discl_msg, 1, 40000, copying);
374 fclose(copying);
375
ae5edf16 376 if (newtLicenseBox(_("License Agreement"), discl_msg, 75, 20)) {
5315fae6 377 errorbox(_("License not accepted!"));
bd5e7c29 378
918546e2
MT
379 goto EXIT;
380 }
381 }
382 }
383
d7dd283b 384 int part_type = HW_PART_TYPE_NORMAL;
ee78a5ef 385
d7dd283b 386 // Scan for disks to install on.
ee00d203 387 struct hw_disk** disks = hw_find_disks(hw, sourcedrive);
d7dd283b
MT
388
389 struct hw_disk** selected_disks = NULL;
390 unsigned int num_selected_disks = 0;
391
392 // Check how many disks have been found and what
393 // we can do with them.
394 unsigned int num_disks = hw_count_disks(disks);
395
396 while (1) {
397 // no harddisks found
398 if (num_disks == 0) {
5315fae6 399 errorbox(_("No hard disk found."));
d7dd283b
MT
400 goto EXIT;
401
402 // exactly one disk has been found
403 } else if (num_disks == 1) {
404 selected_disks = hw_select_disks(disks, NULL);
405
406 // more than one usable disk has been found and
407 // the user needs to choose what to do with them
408 } else {
409 const char* disk_names[num_disks];
410 int disk_selection[num_disks];
411
412 for (unsigned int i = 0; i < num_disks; i++) {
413 disk_names[i] = &disks[i]->description;
414 disk_selection[i] = 0;
415 }
416
417 while (!selected_disks) {
5315fae6
MT
418 rc = newtChecklist(_("Disk Selection"),
419 _("Select the disk(s) you want to install IPFire on. "
420 "First those will be partitioned, and then the partitions will have a filesystem put on them.\n\n"
421 "ALL DATA ON THE DISK WILL BE DESTROYED."),
d7dd283b
MT
422 50, 20, num_disks, disk_names, disk_selection);
423
424 // Error
425 if (rc < 0) {
426 goto EXIT;
427
428 // Nothing has been selected
429 } else if (rc == 0) {
5315fae6
MT
430 errorbox(_("No disk has been selected.\n\n"
431 "Please select one or more disks you want to install IPFire on."));
d7dd283b
MT
432
433 } else {
434 selected_disks = hw_select_disks(disks, disk_selection);
435 }
436 }
437 }
438
439 num_selected_disks = hw_count_disks(selected_disks);
440
441 if (num_selected_disks == 1) {
5315fae6
MT
442 snprintf(message, sizeof(message),
443 _("The installation program will now prepare the chosen harddisk:\n\n %s\n\n"
444 "Do you agree to continue?"), (*selected_disks)->description);
445 rc = newtWinOkCancel(_("Disk Setup"), message, 50, 10,
446 _("Delete all data"), _("Cancel"));
d7dd283b
MT
447
448 if (rc == 0)
56b548f1 449 break;
d7dd283b
MT
450
451 } else if (num_selected_disks == 2) {
5315fae6
MT
452 snprintf(message, sizeof(message),
453 _("The installation program will now set up a RAID configuration on the selected harddisks:\n\n %s\n %s\n\n"
5a3b3718 454 "Do you agree to continue?"), selected_disks[0]->description, selected_disks[1]->description);
5315fae6
MT
455 rc = newtWinOkCancel(_("RAID Setup"), message, 50, 14,
456 _("Delete all data"), _("Cancel"));
d7dd283b
MT
457
458 if (rc == 0) {
459 part_type = HW_PART_TYPE_RAID1;
460
ee78a5ef 461 break;
d7dd283b
MT
462 }
463
464 // Currently not supported
465 } else {
5315fae6 466 errorbox(_("You disk configuration is currently not supported."));
ee43f517 467 fprintf(flog, "Num disks selected: %d\n", num_selected_disks);
aee3027d 468 }
ee78a5ef 469
d7dd283b
MT
470 if (selected_disks) {
471 hw_free_disks(selected_disks);
472 selected_disks = NULL;
473 }
212cab4f 474 }
212cab4f 475
d7dd283b 476 hw_free_disks(disks);
72d80898 477
d7dd283b 478 struct hw_destination* destination = hw_make_destination(part_type, selected_disks);
5057b611 479
25fcce25 480 if (!destination) {
5315fae6 481 errorbox(_("Your harddisk is too small."));
cd8dd8dd 482 goto EXIT;
25fcce25 483 }
cd8dd8dd 484
25fcce25 485 fprintf(flog, "Destination drive: %s\n", destination->path);
48d6a112
MT
486 fprintf(flog, " bootldr: %s (%lluMB)\n", destination->part_bootldr, BYTES2MB(destination->size_bootldr));
487 fprintf(flog, " boot : %s (%lluMB)\n", destination->part_boot, BYTES2MB(destination->size_boot));
488 fprintf(flog, " swap : %s (%lluMB)\n", destination->part_swap, BYTES2MB(destination->size_swap));
489 fprintf(flog, " root : %s (%lluMB)\n", destination->part_root, BYTES2MB(destination->size_root));
490 fprintf(flog, " data : %s (%lluMB)\n", destination->part_data, BYTES2MB(destination->size_data));
72d80898 491
25fcce25
MT
492 // Warn the user if there is not enough space to create a swap partition
493 if (!unattended && !*destination->part_swap) {
5315fae6 494 rc = newtWinChoice(title, _("OK"), _("Cancel"),
ae5edf16 495 _("Your harddisk is very small, but you can continue without a swap partition."));
4f26ff7f 496
25fcce25
MT
497 if (rc != 1)
498 goto EXIT;
72d80898 499 }
9a3d3d95 500
25fcce25
MT
501 // Filesystem selection
502 if (!unattended) {
503 struct filesystems {
504 int fstype;
505 const char* description;
506 } filesystems[] = {
5315fae6
MT
507 { HW_FS_EXT4, _("ext4 Filesystem") },
508 { HW_FS_EXT4_WO_JOURNAL, _("ext4 Filesystem without journal") },
509 { HW_FS_XFS, _("XFS Filesystem") },
510 { HW_FS_REISERFS, _("ReiserFS Filesystem") },
25fcce25
MT
511 { 0, NULL },
512 };
513 unsigned int num_filesystems = sizeof(filesystems) / sizeof(*filesystems);
514
515 char* fs_names[num_filesystems];
516 int fs_choice = 0;
517 for (unsigned int i = 0; i < num_filesystems; i++) {
518 if (HW_FS_DEFAULT == filesystems[i].fstype)
519 fs_choice = i;
520
521 fs_names[i] = filesystems[i].description;
522 }
72d80898 523
5315fae6
MT
524 rc = newtWinMenu(_("Filesystem Selection"), _("Please choose your filesystem:"),
525 50, 5, 5, 6, fs_names, &fs_choice, _("OK"), _("Cancel"), NULL);
25fcce25 526
eb3ff46e 527 if (rc == 2)
72d80898 528 goto EXIT;
139cb500
MT
529
530 destination->filesystem = filesystems[fs_choice].fstype;
72d80898
MT
531 }
532
4a0d9bef
MT
533 // Setting up RAID if needed.
534 if (destination->is_raid) {
5315fae6 535 statuswindow(60, 4, title, _("Building RAID..."));
4a0d9bef 536
46b56e20 537 rc = hw_setup_raid(destination, logfile);
4a0d9bef 538 if (rc) {
5315fae6 539 errorbox(_("Unable to build the RAID."));
4a0d9bef
MT
540 goto EXIT;
541 }
542
543 newtPopWindow();
d78fffa0
MT
544 } else {
545 // We will have to destroy all RAID setups that may have
546 // been on the devices that we want to use now.
547 hw_destroy_raid_superblocks(destination, logfile);
4a0d9bef
MT
548 }
549
25fcce25 550 // Execute the partitioning...
5315fae6 551 statuswindow(60, 4, title, _("Partitioning disk..."));
72d80898 552
46b56e20 553 rc = hw_create_partitions(destination, logfile);
25fcce25 554 if (rc) {
5315fae6 555 errorbox(_("Unable to partition the disk."));
72d80898 556 goto EXIT;
9607771a 557 }
72d80898 558
25fcce25 559 newtPopWindow();
72d80898 560
25fcce25 561 // Execute the formatting...
5315fae6 562 statuswindow(60, 4, title, _("Creating filesystems..."));
b8e2d108 563
46b56e20 564 rc = hw_create_filesystems(destination, logfile);
25fcce25 565 if (rc) {
5315fae6 566 errorbox(_("Unable to create filesystems."));
72d80898
MT
567 goto EXIT;
568 }
25fcce25
MT
569
570 rc = hw_mount_filesystems(destination, DESTINATION_MOUNT_PATH);
571 if (rc) {
5315fae6 572 errorbox(_("Unable to mount filesystems."));
72d80898 573 goto EXIT;
9607771a 574 }
c78a77eb 575
25fcce25
MT
576 newtPopWindow();
577
578 // Extract files...
03d956be 579 snprintf(commandstring, STRING_SIZE,
5315fae6
MT
580 "/bin/tar -C /harddisk -xvf /cdrom/distro.img --lzma 2>/dev/null");
581
edd536b6 582 if (runcommandwithprogress(60, 4, title, commandstring, INST_FILECOUNT,
46b56e20 583 _("Installing the system..."), logfile)) {
5315fae6 584 errorbox(_("Unable to install the system."));
d6aaa55d
MT
585 goto EXIT;
586 }
7f69d8a4
MT
587
588 // Write fstab
589 rc = hw_write_fstab(destination);
590 if (rc) {
591 fprintf(flog, "Could not write /etc/fstab\n");
592 goto EXIT;
593 }
594
406f019f
MT
595 /* Save language und local settings */
596 write_lang_configs(shortlangname);
d6aaa55d 597
330345c2 598 /* Build cache lang file */
6cf9e770 599 snprintf(commandstring, STRING_SIZE, "/usr/sbin/chroot /harddisk /usr/bin/perl -e \"require '" CONFIG_ROOT "/lang.pl'; &Lang::BuildCacheLang\"");
46b56e20 600 if (runcommandwithstatus(commandstring, title, _("Installing the language cache..."), logfile)) {
5315fae6 601 errorbox(_("Unable to install the language cache."));
330345c2
MT
602 goto EXIT;
603 }
604
f5007e9c 605 // Installing bootloader...
5315fae6 606 statuswindow(60, 4, title, _("Installing the bootloader..."));
423400cf 607
5faa66cf
AF
608 /* Serial console ? */
609 if (serialconsole) {
610 /* grub */
9dd16c6d
MT
611 FILE* f = fopen(DESTINATION_MOUNT_PATH "/etc/default/grub", "a");
612 if (!f) {
613 errorbox(_("Unable to open /etc/default/grub for writing."));
614 goto EXIT;
615 }
5faa66cf 616
9dd16c6d
MT
617 fprintf(f, "GRUB_TERMINAL=\"serial console\"\n");
618 fprintf(f, "GRUB_SERIAL_COMMAND=\"serial --unit=0 --speed=%d\"\n", SERIAL_BAUDRATE);
619 fclose(f);
620
621 replace(DESTINATION_MOUNT_PATH "/etc/default/grub", "panic=10", "panic=10 console=ttyS0,115200n8");
622
623 /* inittab */
5faa66cf
AF
624 replace("/harddisk/etc/inittab", "1:2345:respawn:", "#1:2345:respawn:");
625 replace("/harddisk/etc/inittab", "2:2345:respawn:", "#2:2345:respawn:");
626 replace("/harddisk/etc/inittab", "3:2345:respawn:", "#3:2345:respawn:");
627 replace("/harddisk/etc/inittab", "4:2345:respawn:", "#4:2345:respawn:");
628 replace("/harddisk/etc/inittab", "5:2345:respawn:", "#5:2345:respawn:");
629 replace("/harddisk/etc/inittab", "6:2345:respawn:", "#6:2345:respawn:");
630 replace("/harddisk/etc/inittab", "#7:2345:respawn:", "7:2345:respawn:");
631 }
632
9dd16c6d
MT
633 rc = hw_install_bootloader(destination, logfile);
634 if (rc) {
635 errorbox(_("Unable to install the bootloader."));
636 goto EXIT;
637 }
638
639 newtPopWindow();
640
dfa59dbd 641 /* Set marker that the user has already accepted the gpl */
46b56e20 642 mysystem(logfile, "/usr/bin/touch /harddisk/var/ipfire/main/gpl_accepted");
dfa59dbd 643
c25a0343 644 /* Copy restore file from cdrom */
7062cecd 645 if (unattended && (strlen(restore_file) > 0)) {
c25a0343 646 fprintf(flog, "unattended: Copy restore file\n");
dca095e1 647 snprintf(commandstring, STRING_SIZE,
c25a0343 648 "cp /cdrom/%s /harddisk/var/ipfire/backup", restore_file);
46b56e20 649 mysystem(logfile, commandstring);
c25a0343 650 }
2c9c458c 651
ddd32a5c
MT
652 // Umount the destination drive
653 hw_umount_filesystems(destination, DESTINATION_MOUNT_PATH);
654
655 // Stop the RAID array if we are using RAID
656 if (destination->is_raid)
657 hw_stop_all_raid_arrays(logfile);
658
2c9c458c
MT
659 // Umount source drive and eject
660 hw_umount(SOURCE_MOUNT_PATH);
661
662 snprintf(commandstring, STRING_SIZE, "/usr/bin/eject %s", sourcedrive);
46b56e20 663 mysystem(logfile, commandstring);
22b9e405 664
73d9a908 665 if (!unattended) {
ae5edf16
MT
666 snprintf(message, sizeof(message), _(
667 "%s was successfully installed!\n\n"
668 "Please remove any installation mediums from this system and hit the reboot button. "
669 "Once the system has restarted you will be asked to setup networking and system passwords. "
670 "After that, you should point your web browser at https://%s:444 (or what ever you name "
671 "your %s) for the web configuration console."), NAME, SNAME, NAME);
5315fae6 672 newtWinMessage(_("Congratulations!"), _("Reboot"), message);
73d9a908 673 }
cd8dd8dd 674
22b9e405 675 allok = 1;
edd536b6 676
d6aaa55d 677EXIT:
46b56e20 678 fprintf(flog, "Install program ended.\n");
ae5edf16
MT
679 fflush(flog);
680 fclose(flog);
d6aaa55d 681
ae5edf16
MT
682 if (!allok)
683 newtWinMessage(title, _("OK"), _("Setup has failed. Press Ok to reboot."));
3a1019f6
MT
684
685 newtFinished();
686
f0fa1795 687 // Free resources
b83b8f70
MT
688 free(system_release);
689 free(roottext);
690 free(helpline);
691
f0fa1795 692 free(sourcedrive);
ddd32a5c 693 free(destination);
d7dd283b 694
46b56e20 695 hw_stop_all_raid_arrays(logfile);
4a0d9bef 696
d7dd283b
MT
697 if (selected_disks)
698 hw_free_disks(selected_disks);
699
700 hw_free(hw);
f0fa1795 701
25fcce25
MT
702 fcloseall();
703
f0a61a0a
MT
704 if (allok == 1)
705 return 0;
25fcce25 706
f0a61a0a 707 return 1;
d6aaa55d 708}