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