]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/install+setup/install/main.c
Changed installer. We now support ext2 installation and dropped reiser4.
[people/pmueller/ipfire-2.x.git] / src / install+setup / install / 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
d6aaa55d 11#include "install.h"
72d80898
MT
12#define _GNU_SOURCE
13
0a0bdf6e 14#define INST_FILECOUNT 6200
33634aa8 15#define UNATTENDED_CONF "/cdrom/boot/unattended.conf"
d6aaa55d 16
ddd1589d
CS
17#define EXT2 0
18#define REISERFS 2
19#define EXT3 1
cd8dd8dd 20
d6aaa55d
MT
21FILE *flog = NULL;
22char *mylog;
10bc6f06 23
d6aaa55d
MT
24char **ctr;
25
d6aaa55d
MT
26extern char url[STRING_SIZE];
27
f9cc0d70
HS
28struct nic nics[20] = { { "" , "" , "" } }; // only defined for compile
29struct knic knics[20] = { { "" , "" , "" , "" } }; // only defined for compile
5057b611 30
10bc6f06 31extern char *en_tr[];
10bc6f06 32extern char *de_tr[];
462515e4 33extern char *fr_tr[];
d6aaa55d
MT
34
35int main(int argc, char *argv[])
36{
98cbb7e6 37 char *langnames[] = { "Deutsch", "English", "Français", NULL };
462515e4
AF
38 char *shortlangnames[] = { "de", "en", "fr" ,NULL };
39 char **langtrs[] = { de_tr, en_tr, fr_tr,NULL };
c78a77eb 40 char hdletter;
77f1c55f 41 char harddrive[30], sourcedrive[5]; /* Device holder. */
72d80898 42 struct devparams hdparams, cdromparams; /* Params for CDROM and HD */
72d80898 43 int rc = 0;
d6aaa55d 44 char commandstring[STRING_SIZE];
cd8dd8dd 45 char mkfscommand[STRING_SIZE];
ddd1589d 46 char *fstypes[] = { "ext2", "ext3", "ReiserFS", NULL };
cfff20e5 47 int fstype = REISERFS;
d6aaa55d 48 int choice;
ee78a5ef
MT
49 int i;
50 int found = 0;
51 int firstrun = 0;
d6aaa55d
MT
52 char shortlangname[10];
53 char message[1000];
54 char title[STRING_SIZE];
55 int allok = 0;
10bc6f06 56 int allok_fastexit=0;
56b548f1 57 int raid_disk = 0;
d6aaa55d
MT
58 struct keyvalue *ethernetkv = initkeyvalues();
59 FILE *handle, *cmdfile;
60 char line[STRING_SIZE];
61 char string[STRING_SIZE];
66294b69 62 long memory = 0, disk = 0, free;
8e2e5cf3 63 long system_partition, boot_partition, root_partition, swap_file;
d6aaa55d 64 int scsi_disk = 0;
5057b611
HS
65 char *yesnoharddisk[3]; // char *yesnoharddisk = { "NO", "YES", NULL };
66
72d80898
MT
67 int unattended = 0;
68 struct keyvalue *unattendedkv = initkeyvalues();
c78a77eb 69 int hardyn = 0;
66335974 70 char restore_file[STRING_SIZE] = "";
d6aaa55d
MT
71
72 setlocale (LC_ALL, "");
10bc6f06 73 sethostname( SNAME , 10);
72d80898 74
d6aaa55d
MT
75 memset(&hdparams, 0, sizeof(struct devparams));
76 memset(&cdromparams, 0, sizeof(struct devparams));
77
78 /* Log file/terminal stuff. */
79 if (argc >= 2)
80 {
81 if (!(flog = fopen(argv[1], "w+")))
82 return 0;
83 }
84 else
85 return 0;
86
87 mylog = argv[1];
88
89 fprintf(flog, "Install program started.\n");
90
91 newtInit();
92 newtCls();
93
7ea444c8
AF
94 newtDrawRootText(14, 0, NAME " " VERSION " - " SLOGAN );
95 sprintf (title, "%s %s - %s", NAME, VERSION, SLOGAN);
96
d6aaa55d
MT
97 if (! (cmdfile = fopen("/proc/cmdline", "r")))
98 {
99 fprintf(flog, "Couldn't open commandline: /proc/cmdline\n");
100 } else {
101 fgets(line, STRING_SIZE, cmdfile);
61e3d218 102
72d80898 103 // check if we have to make an unattended install
ee78a5ef 104 if (strstr (line, "unattended") != NULL) {
72d80898 105 unattended = 1;
bba7212c
MT
106 runcommandwithstatus("/bin/sleep 10", "WARNING: Unattended installation will start in 10 seconds...");
107 }
d6aaa55d 108 }
0db33b56 109
5c95fd40
AF
110 // Load ata-piix prior kudzu because kudzu use ata-generic for ich7
111 mysystem("/sbin/modprobe ata_piix");
112
7ea444c8
AF
113 // Starting hardware detection
114 runcommandwithstatus("/bin/probehw.sh", "Probing Hardware ...");
115
116 // Load common modules
ce9fac5b 117 mysystem("/sbin/modprobe ide-generic");
a23731d1 118 mysystem("/sbin/modprobe ide-cd");
bba7212c 119 mysystem("/sbin/modprobe ide-disk");
98b5cc93 120 mysystem("/sbin/modprobe ehci-hcd");
3485f9a2
CS
121 mysystem("/sbin/modprobe uhci-hcd");
122 mysystem("/sbin/modprobe ohci-hcd");
149a26a8 123 mysystem("/sbin/modprobe ohci1394");
bba7212c
MT
124 mysystem("/sbin/modprobe sd_mod");
125 mysystem("/sbin/modprobe sr_mod");
126 mysystem("/sbin/modprobe usb-storage");
127 mysystem("/sbin/modprobe usbhid");
0b34d1a2 128 mysystem("/sbin/modprobe ahci");
bba7212c
MT
129
130 mysystem("/sbin/modprobe iso9660"); // CDROM
131 mysystem("/sbin/modprobe ext2"); // Boot patition
132 mysystem("/sbin/modprobe vfat"); // USB key
493e5e62
AF
133
134 runcommandwithstatus("/bin/sleep 10", "Waiting for USB Hardware ...");
d6aaa55d 135
72d80898 136 /* German is the default */
d6aaa55d
MT
137 for (choice = 0; langnames[choice]; choice++)
138 {
b4e3cd7f 139 if (strcmp(langnames[choice], "Deutsch") == 0)
d6aaa55d
MT
140 break;
141 }
142 if (!langnames[choice])
143 goto EXIT;
144
72d80898 145 if (!unattended) {
51f3b7f5 146 rc = newtWinMenu("Language selection", "Select the language you wish to use for the " NAME ".", 50, 5, 5, 8,
72d80898
MT
147 langnames, &choice, "Ok", NULL);
148 }
149
d6aaa55d
MT
150 ctr = langtrs[choice];
151 strcpy(shortlangname, shortlangnames[choice]);
3d6e1202 152
d6aaa55d 153 newtPushHelpLine(ctr[TR_HELPLINE]);
0db33b56 154
03d956be
MT
155 sprintf(message, ctr[TR_WELCOME], NAME);
156 newtWinMessage(title, ctr[TR_OK], message);
72d80898 157
03d956be
MT
158 switch (mysystem("/bin/mountsource.sh")) {
159 case 0:
160 break;
161 case 10:
162 errorbox(ctr[TR_NO_CDROM]);
72d80898 163 goto EXIT;
72d80898 164 }
9607771a 165
03d956be
MT
166 /* read source drive letter */
167 if ((handle = fopen("/tmp/source_device", "r")) == NULL) {
168 errorbox(ctr[TR_ERROR_PROBING_CDROM]);
169 goto EXIT;
72d80898 170 }
03d956be
MT
171 fgets(sourcedrive, 5, handle);
172 fprintf(flog, "Source drive: %s\n", sourcedrive);
173 fclose(handle);
1cdddb12 174
ee78a5ef
MT
175 i = 0;
176 while (found == 0) {
177 i++;
178 fprintf(flog, "Harddisk scan pass %i\n", i);
179
aee3027d 180 switch (mysystem("/bin/mountdest.sh") % 255) {
ee78a5ef
MT
181 case 0: // Found IDE disk
182 scsi_disk = 0;
56b548f1 183 raid_disk = 0;
ee78a5ef
MT
184 found = 1;
185 break;
186 case 1: // Found SCSI disk
187 scsi_disk = 1;
56b548f1
MT
188 raid_disk = 0;
189 found = 1;
190 break;
191 case 2: // Found RAID disk
192 scsi_disk = 0;
193 raid_disk= 1;
ee78a5ef
MT
194 found = 1;
195 break;
196 case 10: // No harddisk found
197 if (firstrun == 1) {
198 errorbox(ctr[TR_NO_HARDDISK]);
199 goto EXIT;
200 }
201 // Do this if the kudzu-scan fails...
202 runcommandwithstatus("/bin/probehw.sh deep-scan", ctr[TR_PROBING_HARDWARE]);
203 firstrun = 1;
aee3027d 204 }
ee78a5ef
MT
205 }
206
ee78a5ef
MT
207 if ((handle = fopen("/tmp/dest_device", "r")) == NULL) {
208 errorbox(ctr[TR_NO_HARDDISK]);
209 goto EXIT;
210 }
77f1c55f 211 fgets(harddrive, 30, handle);
ee78a5ef
MT
212 fclose(handle);
213
72d80898
MT
214 /* load unattended configuration */
215 if (unattended) {
216 fprintf(flog, "unattended: Reading unattended.conf\n");
217
218 (void) readkeyvalues(unattendedkv, UNATTENDED_CONF);
c25a0343 219 findkey(unattendedkv, "RESTORE_FILE", restore_file);
72d80898 220 }
72d80898 221
1cdddb12
MT
222 /* Make the hdparms struct and print the contents.
223 With USB-KEY install and SCSI disk, while installing, the disk
224 is named 'sdb,sdc,...' (following keys)
225 On reboot, it will become 'sda'
226 To avoid many test, all names are built in the struct.
227 */
228 sprintf(hdparams.devnode_disk, "/dev/%s", harddrive);
229 /* Address the partition or raid partition (eg dev/sda or /dev/sdap1 */
230 sprintf(hdparams.devnode_part, "/dev/%s%s", harddrive,raid_disk ? "p" : "");
231 /* Now the names after the machine is booted. Only scsi is affected
232 and we only install on the first scsi disk. */
233 { char tmp[30];
234 strcpy(tmp, scsi_disk ? "sda" : harddrive);
235 sprintf(hdparams.devnode_disk_run, "/dev/%s", tmp);
236 sprintf(hdparams.devnode_part_run, "/dev/%s%s", tmp, raid_disk ? "p" : "");
237 }
238
239 fprintf(flog, "Destination drive: %s\n", hdparams.devnode_disk);
240
241 sprintf(message, ctr[TR_PREPARE_HARDDISK], hdparams.devnode_disk);
72d80898
MT
242 if (unattended) {
243 hardyn = 1;
be91126f
MT
244 } else {
245 yesnoharddisk[0] = ctr[TR_NO];
246 yesnoharddisk[1] = ctr[TR_YES];
247 yesnoharddisk[2] = NULL;
72d80898 248 }
5057b611 249
72d80898
MT
250 while (! hardyn) {
251 rc = newtWinMenu(title, message,
252 50, 5, 5, 6, yesnoharddisk,
253 &hardyn, ctr[TR_OK],
254 ctr[TR_CANCEL], NULL);
255 if (rc == 2)
256 goto EXIT;
257 }
5433e2c9
MT
258 if (rc == 2)
259 goto EXIT;
72d80898 260
cd8dd8dd 261 if (!unattended) {
1700769c
CS
262 sprintf(message, ctr[TR_CHOOSE_FILESYSTEM]);
263 rc = newtWinMenu( ctr[TR_CHOOSE_FILESYSTEM], message,
cd8dd8dd
MT
264 50, 5, 5, 6, fstypes, &fstype, ctr[TR_OK],
265 ctr[TR_CANCEL], NULL);
266 } else {
267 rc = 1;
cfff20e5 268 fstype = REISERFS;
cd8dd8dd
MT
269 }
270 if (rc == 2)
271 goto EXIT;
272
72d80898
MT
273 /* Calculate amount of memory in machine */
274 if ((handle = fopen("/proc/meminfo", "r")))
275 {
276 while (fgets(line, STRING_SIZE-1, handle)) {
277 if (sscanf (line, "MemTotal: %s kB", string)) {
278 memory = atoi(string) / 1024 ;
279 }
280 }
281 fclose(handle);
282 }
283
284 /* Partition, mkswp, mkfs.
285 * before partitioning, first determine the sizes of each
286 * partition. In order to do that we need to know the size of
287 * the disk.
288 */
289 /* Don't use mysystem here so we can redirect output */
0b59f25c 290 sprintf(commandstring, "/bin/sfdisk -s /dev/%s > /tmp/disksize 2> /dev/null", harddrive);
72d80898
MT
291 system(commandstring);
292
293 /* Calculate amount of disk space */
d3fb18db
MT
294 if ((handle = fopen("/tmp/disksize", "r"))) {
295 fgets(line, STRING_SIZE-1, handle);
296 if (sscanf (line, "%s", string)) {
ffd4d196 297 disk = atoi(string) / 1024;
d3fb18db
MT
298 }
299 fclose(handle);
300 }
72d80898 301
ffd4d196 302 fprintf(flog, "Disksize = %ld, memory = %ld", disk, memory);
72d80898 303
ffd4d196 304 /* Calculating Swap-Size dependend of Ram Size */
66294b69
MT
305 if (memory < 128)
306 swap_file = 32;
ddd1589d
CS
307 else if (memory > 512)
308 swap_file = 256;
66294b69 309 else
ddd1589d 310 swap_file = memory / 4;
ffd4d196
CS
311
312 /* Calculating Root-Size dependend of Max Disk Space */
a5997a4c 313 if ( disk < 756 )
25943d3b
CS
314 root_partition = 200;
315 else if ( disk >= 756 && disk <= 3072 )
66294b69
MT
316 root_partition = 512;
317 else
318 root_partition = 2048;
319
ffd4d196
CS
320
321 /* Calculating the amount of free space */
322 boot_partition = 20; /* in MB */
323 system_partition = disk - ( root_partition + swap_file + boot_partition );
d3fb18db 324
66294b69
MT
325 fprintf(flog, ", boot = %ld, swap = %ld, mylog = %ld, root = %ld\n",
326 boot_partition, swap_file, system_partition, root_partition);
9cd0c7fd 327 rc = 0;
66294b69 328
9cd0c7fd 329 if ( (!unattended) && (((disk - (root_partition + swap_file + boot_partition)) < 256 ) && ((disk - (root_partition + boot_partition )) > 256)) ) {
a5997a4c 330 rc = newtWinChoice(title, ctr[TR_OK], ctr[TR_CANCEL], ctr[TR_CONTINUE_NO_SWAP]);
9cd0c7fd
MT
331 if (rc == 1){
332 swap_file = 0;
a5997a4c 333 system_partition = disk - ( root_partition + swap_file + boot_partition );
9cd0c7fd 334 fprintf(flog, "Changing Swap Size to 0 MB.\n");
a5997a4c 335 }
9cd0c7fd 336 else if (rc == 2){
a5997a4c
MT
337 fprintf(flog, "Disk is too small.\n");
338 errorbox(ctr[TR_DISK_TOO_SMALL]);goto EXIT;
339 }
66294b69 340 }
58c7871a 341 else if (disk - (root_partition + swap_file + boot_partition) >= 256) {
66294b69
MT
342
343 }
344 else {
345 fprintf(flog, "Disk is too small.\n");
346 errorbox(ctr[TR_DISK_TOO_SMALL]);goto EXIT;
347 }
a5997a4c 348
72d80898
MT
349 handle = fopen("/tmp/partitiontable", "w");
350
72d80898 351 /* Make swapfile */
9cd0c7fd
MT
352 if (swap_file) {
353 fprintf(handle, ",%ld,L,*\n,%ld,S,\n,%ld,L,\n,,L,\n",
354 boot_partition, swap_file, root_partition);
355 } else {
356 fprintf(handle, ",%ld,L,*\n,0,0,\n,%ld,L,\n,,L,\n",
357 boot_partition, root_partition);
358 }
72d80898
MT
359
360 fclose(handle);
361
1cdddb12 362 snprintf(commandstring, STRING_SIZE, "/bin/sfdisk -L -uM %s < /tmp/partitiontable", hdparams.devnode_disk);
72d80898
MT
363 if (runcommandwithstatus(commandstring, ctr[TR_PARTITIONING_DISK]))
364 {
365 errorbox(ctr[TR_UNABLE_TO_PARTITION]);
366 goto EXIT;
367 }
cd8dd8dd 368
ddd1589d
CS
369 if (fstype == EXT2) {
370 mysystem("/sbin/modprobe ext2");
371 sprintf(mkfscommand, "/sbin/mke2fs -T ext2 -c");
cd8dd8dd
MT
372 } else if (fstype == REISERFS) {
373 mysystem("/sbin/modprobe reiserfs");
374 sprintf(mkfscommand, "/sbin/mkreiserfs -f");
375 } else if (fstype == EXT3) {
376 mysystem("/sbin/modprobe ext3");
6027d6b8 377 sprintf(mkfscommand, "/sbin/mke2fs -T ext3 -c");
cd8dd8dd 378 }
72d80898 379
6027d6b8 380 snprintf(commandstring, STRING_SIZE, "/sbin/mke2fs -T ext2 -c %s1", hdparams.devnode_part);
72d80898
MT
381 if (runcommandwithstatus(commandstring, ctr[TR_MAKING_BOOT_FILESYSTEM]))
382 {
383 errorbox(ctr[TR_UNABLE_TO_MAKE_BOOT_FILESYSTEM]);
384 goto EXIT;
385 }
386
387 if (swap_file) {
1cdddb12 388 snprintf(commandstring, STRING_SIZE, "/sbin/mkswap %s2", hdparams.devnode_part);
72d80898
MT
389 if (runcommandwithstatus(commandstring, ctr[TR_MAKING_SWAPSPACE]))
390 {
391 errorbox(ctr[TR_UNABLE_TO_MAKE_SWAPSPACE]);
392 goto EXIT;
393 }
394 }
395
cd8dd8dd 396 snprintf(commandstring, STRING_SIZE, "%s %s3", mkfscommand, hdparams.devnode_part);
72d80898
MT
397 if (runcommandwithstatus(commandstring, ctr[TR_MAKING_ROOT_FILESYSTEM]))
398 {
399 errorbox(ctr[TR_UNABLE_TO_MAKE_ROOT_FILESYSTEM]);
400 goto EXIT;
401 }
402
cd8dd8dd 403 snprintf(commandstring, STRING_SIZE, "%s %s4", mkfscommand, hdparams.devnode_part);
72d80898
MT
404 if (runcommandwithstatus(commandstring, ctr[TR_MAKING_LOG_FILESYSTEM]))
405 {
cd8dd8dd 406 errorbox(ctr[TR_UNABLE_TO_MAKE_LOG_FILESYSTEM]);
72d80898 407 goto EXIT;
9607771a 408 }
72d80898 409
1cdddb12 410 snprintf(commandstring, STRING_SIZE, "/bin/mount %s3 /harddisk", hdparams.devnode_part);
72d80898
MT
411 if (runcommandwithstatus(commandstring, ctr[TR_MOUNTING_ROOT_FILESYSTEM]))
412 {
413 errorbox(ctr[TR_UNABLE_TO_MOUNT_ROOT_FILESYSTEM]);
414 goto EXIT;
415 }
416
417 mkdir("/harddisk/boot", S_IRWXU|S_IRWXG|S_IRWXO);
418 mkdir("/harddisk/var", S_IRWXU|S_IRWXG|S_IRWXO);
419 mkdir("/harddisk/var/log", S_IRWXU|S_IRWXG|S_IRWXO);
420
1cdddb12 421 snprintf(commandstring, STRING_SIZE, "/bin/mount %s1 /harddisk/boot", hdparams.devnode_part);
72d80898
MT
422 if (runcommandwithstatus(commandstring, ctr[TR_MOUNTING_BOOT_FILESYSTEM]))
423 {
424 errorbox(ctr[TR_UNABLE_TO_MOUNT_BOOT_FILESYSTEM]);
425 goto EXIT;
426 }
427 if (swap_file) {
1cdddb12 428 snprintf(commandstring, STRING_SIZE, "/sbin/swapon %s2", hdparams.devnode_part);
72d80898
MT
429 if (runcommandwithstatus(commandstring, ctr[TR_MOUNTING_SWAP_PARTITION]))
430 {
431 errorbox(ctr[TR_UNABLE_TO_MOUNT_SWAP_PARTITION]);
432 goto EXIT;
433 }
434 }
1cdddb12 435 snprintf(commandstring, STRING_SIZE, "/bin/mount %s4 /harddisk/var", hdparams.devnode_part);
72d80898
MT
436 if (runcommandwithstatus(commandstring, ctr[TR_MOUNTING_LOG_FILESYSTEM]))
437 {
438 errorbox(ctr[TR_UNABLE_TO_MOUNT_LOG_FILESYSTEM]);
439 goto EXIT;
9607771a 440 }
c78a77eb 441
03d956be 442 snprintf(commandstring, STRING_SIZE,
dbf157bb 443 "/bin/tar -C /harddisk -xvf /cdrom/" SNAME "-" VERSION ".tlz --lzma");
d6aaa55d 444
edd536b6
MT
445 if (runcommandwithprogress(60, 4, title, commandstring, INST_FILECOUNT,
446 ctr[TR_INSTALLING_FILES]))
d6aaa55d
MT
447 {
448 errorbox(ctr[TR_UNABLE_TO_INSTALL_FILES]);
449 goto EXIT;
450 }
406f019f
MT
451
452 /* Save language und local settings */
453 write_lang_configs(shortlangname);
d6aaa55d
MT
454
455 /* touch the modules.dep files */
10bc6f06 456 snprintf(commandstring, STRING_SIZE,
c78a77eb 457 "/bin/touch /harddisk/lib/modules/%s-ipfire/modules.dep",
10bc6f06
MT
458 KERNEL_VERSION);
459 mysystem(commandstring);
fd383f41 460/* snprintf(commandstring, STRING_SIZE,
c78a77eb 461 "/bin/touch /harddisk/lib/modules/%s-ipfire-smp/modules.dep",
10bc6f06
MT
462 KERNEL_VERSION);
463 mysystem(commandstring);
fd383f41 464*/
999dc5dc 465
d6aaa55d
MT
466 /* Rename uname */
467 rename ("/harddisk/bin/uname.bak", "/harddisk/bin/uname");
468
9607771a
MT
469 /* mount proc filesystem */
470 mysystem("mkdir /harddisk/proc");
ee78a5ef
MT
471 mysystem("/bin/mount --bind /proc /harddisk/proc");
472 mysystem("/bin/mount --bind /dev /harddisk/dev");
473 mysystem("/bin/mount --bind /sys /harddisk/sys");
9607771a 474
330345c2
MT
475 /* Build cache lang file */
476 snprintf(commandstring, STRING_SIZE, "/sbin/chroot /harddisk /usr/bin/perl -e \"require '" CONFIG_ROOT "/lang.pl'; &Lang::BuildCacheLang\"");
477 if (runcommandwithstatus(commandstring, ctr[TR_INSTALLING_LANG_CACHE]))
478 {
479 errorbox(ctr[TR_UNABLE_TO_INSTALL_LANG_CACHE]);
480 goto EXIT;
481 }
482
483 /* Update /etc/fstab */
1cdddb12 484 replace("/harddisk/etc/fstab", "DEVICE", hdparams.devnode_part_run);
cd8dd8dd 485
ddd1589d
CS
486 if (fstype == EXT2) {
487 replace("/harddisk/etc/fstab", "FSTYPE", "ext2");
488 replace("/harddisk/boot/grub/grub.conf", "MOUNT", "ro");
cd8dd8dd
MT
489 } else if (fstype == REISERFS) {
490 replace("/harddisk/etc/fstab", "FSTYPE", "reiserfs");
d3fb18db 491 replace("/harddisk/boot/grub/grub.conf", "MOUNT", "ro");
cd8dd8dd 492 } else if (fstype == EXT3) {
db101f0c 493 snprintf(commandstring, STRING_SIZE, "tune2fs -j %s3", hdparams.devnode_part);
1700769c 494 if (runcommandwithstatus(commandstring, ctr[TR_JOURNAL_EXT3]))
db101f0c 495 {
1700769c 496 errorbox(ctr[TR_JOURNAL_ERROR]);
db101f0c
MT
497 replace("/harddisk/etc/fstab", "FSTYPE", "ext2");
498 goto NOJOURNAL;
499 }
500 snprintf(commandstring, STRING_SIZE, "tune2fs -j %s4", hdparams.devnode_part);
1700769c 501 if (runcommandwithstatus(commandstring, ctr[TR_JOURNAL_EXT3]))
db101f0c 502 {
1700769c 503 errorbox(ctr[TR_JOURNAL_ERROR]);
db101f0c
MT
504 replace("/harddisk/etc/fstab", "FSTYPE", "ext2");
505 goto NOJOURNAL;
506 }
cd8dd8dd 507 replace("/harddisk/etc/fstab", "FSTYPE", "ext3");
db101f0c 508 NOJOURNAL:
d3fb18db 509 replace("/harddisk/boot/grub/grub.conf", "MOUNT", "ro");
cd8dd8dd 510 }
73d9a908 511
a869b064
AF
512 replace("/harddisk/boot/grub/grub.conf", "KVER", KERNEL_VERSION);
513
edd66ab6
AF
514 /* Build the emergency ramdisk with all drivers */
515 mysystem("cp -f /harddisk/etc/mkinitcpio.conf /harddisk/etc/mkinitcpio.conf.org");
516
517 replace("/harddisk/etc/mkinitcpio.conf", " autodetect ", " ");
518 snprintf(commandstring, STRING_SIZE, "/sbin/chroot /harddisk /sbin/mkinitcpio -g /boot/ipfirerd-%s-emergency.img -k %s-ipfire", KERNEL_VERSION, KERNEL_VERSION);
519 runcommandwithstatus(commandstring, ctr[TR_BUILDING_INITRD]);
520
521 mysystem("cp -f /harddisk/etc/mkinitcpio.conf.org /harddisk/etc/mkinitcpio.conf");
522
e62ab04d 523 /* mkinitcpio has a problem if ide and pata are included */
a6e9d42e 524 if ( scsi_disk==1 ) {
e62ab04d
MT
525 /* Remove the ide hook if we install sda */
526 replace("/harddisk/etc/mkinitcpio.conf", " ide ", " ");
527 } else {
2e95c21c 528 /* Remove the pata & sata hook if we install hda */
e62ab04d 529 replace("/harddisk/etc/mkinitcpio.conf", " pata ", " ");
2e95c21c 530 replace("/harddisk/etc/mkinitcpio.conf", " sata ", " ");
a6e9d42e 531 }
ee78a5ef 532 /* Going to make our initrd... */
a869b064 533 snprintf(commandstring, STRING_SIZE, "/sbin/chroot /harddisk /sbin/mkinitcpio -g /boot/ipfirerd-%s.img -k %s-ipfire", KERNEL_VERSION, KERNEL_VERSION);
ee78a5ef 534 runcommandwithstatus(commandstring, ctr[TR_BUILDING_INITRD]);
fd383f41 535/* snprintf(commandstring, STRING_SIZE, "/sbin/chroot /harddisk /sbin/mkinitcpio -g /boot/ipfirerd-%s-smp.img -k %s-ipfire-smp", KERNEL_VERSION, KERNEL_VERSION );
ee78a5ef 536 runcommandwithstatus(commandstring, ctr[TR_BUILDING_INITRD]);
fd383f41 537*/
999dc5dc
AF
538
539
1cdddb12 540 sprintf(string, "root=%s3", hdparams.devnode_part_run);
edd536b6 541 replace( "/harddisk/boot/grub/grub.conf", "root=ROOT", string);
f4e27420 542 mysystem("ln -s grub.conf /harddisk/boot/grub/menu.lst");
fd0763dc 543
f4e27420 544 system("sed -e 's#harddisk\\/##g' < /proc/mounts > /harddisk/etc/mtab");
edd536b6 545
edd536b6 546 snprintf(commandstring, STRING_SIZE,
03d956be 547 "/sbin/chroot /harddisk /usr/sbin/grub-install --no-floppy %s", hdparams.devnode_disk);
edd536b6
MT
548 if (runcommandwithstatus(commandstring, ctr[TR_INSTALLING_GRUB])) {
549 errorbox(ctr[TR_UNABLE_TO_INSTALL_GRUB]);
550 goto EXIT;
551 }
8de160ff 552
c25a0343 553 /* Copy restore file from cdrom */
7062cecd 554 if (unattended && (strlen(restore_file) > 0)) {
c25a0343 555 fprintf(flog, "unattended: Copy restore file\n");
dca095e1 556 snprintf(commandstring, STRING_SIZE,
c25a0343 557 "cp /cdrom/%s /harddisk/var/ipfire/backup", restore_file);
dca095e1 558 mysystem(commandstring);
c25a0343
DG
559 }
560
8de160ff 561 mysystem("umount /cdrom");
3ef6c343
MT
562 snprintf(commandstring, STRING_SIZE, "eject /dev/%s", sourcedrive);
563 mysystem(commandstring);
22b9e405 564
73d9a908
MT
565 if (!unattended) {
566 sprintf(message, ctr[TR_CONGRATULATIONS_LONG],
3ad8835c 567 NAME, SNAME, NAME);
73d9a908
MT
568 newtWinMessage(ctr[TR_CONGRATULATIONS], ctr[TR_OK], message);
569 }
cd8dd8dd 570
22b9e405 571 allok = 1;
edd536b6 572
d6aaa55d 573EXIT:
10bc6f06 574 fprintf(flog, "Install program ended.\n");
d6aaa55d 575
10bc6f06 576 if (!(allok))
d6aaa55d 577 newtWinMessage(title, ctr[TR_OK], ctr[TR_PRESS_OK_TO_REBOOT]);
10bc6f06 578
d6aaa55d 579 freekeyvalues(ethernetkv);
d6aaa55d 580
10bc6f06 581 if (allok && !allok_fastexit)
d6aaa55d 582 {
ee78a5ef
MT
583 if (unattended) {
584 fprintf(flog, "Entering unattended setup\n");
585 if (unattended_setup(unattendedkv)) {
c78a77eb
MT
586 snprintf(commandstring, STRING_SIZE, "/bin/sleep 10");
587 runcommandwithstatus(commandstring, "Unattended installation finished, system will reboot");
ee78a5ef 588 } else {
c78a77eb
MT
589 errorbox("Unattended setup failed.");
590 goto EXIT;
c78a77eb 591 }
ee78a5ef 592 }
c78a77eb 593
ee78a5ef
MT
594 fflush(flog);
595 fclose(flog);
596 newtFinished();
597
598 if (!unattended) {
ee78a5ef
MT
599 if (system("/sbin/chroot /harddisk /usr/local/sbin/setup /dev/tty2 INSTALL"))
600 printf("Unable to run setup.\n");
ee78a5ef 601 }
3a1019f6 602
ee78a5ef
MT
603 if (system("/bin/umount /harddisk/proc"))
604 printf("Unable to umount /harddisk/proc.\n");
5057b611
HS
605 } else {
606 fflush(flog);
607 fclose(flog);
608 newtFinished();
d6aaa55d 609 }
5057b611 610
d6aaa55d
MT
611 fcloseall();
612
3a1019f6 613 if (swap_file) {
1cdddb12 614 snprintf(commandstring, STRING_SIZE, "/bin/swapoff %s2", hdparams.devnode_part);
3a1019f6
MT
615 }
616
617 newtFinished();
618
5057b611
HS
619 system("/bin/umount /harddisk/proc");
620 system("/bin/umount /harddisk/dev");
ee78a5ef 621 system("/bin/umount /harddisk/sys");
5057b611 622
532a3663
MT
623 system("/bin/umount /harddisk/var");
624 system("/bin/umount /harddisk/boot");
625 system("/bin/umount /harddisk");
10bc6f06 626
d6aaa55d
MT
627 system("/etc/halt");
628
629 return 0;
630}