Deleted Added
full compact
menus.c (8576) menus.c (8589)
1/*
2 * The new sysinstall program.
3 *
4 * This is probably the last program in the `sysinstall' line - the next
5 * generation being essentially a complete rewrite.
6 *
1/*
2 * The new sysinstall program.
3 *
4 * This is probably the last program in the `sysinstall' line - the next
5 * generation being essentially a complete rewrite.
6 *
7 * $Id: menus.c,v 1.14 1995/05/16 11:37:20 jkh Exp $
7 * $Id: menus.c,v 1.15 1995/05/17 14:39:54 jkh Exp $
8 *
9 * Copyright (c) 1995
10 * Jordan Hubbard. All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright

--- 525 unchanged lines hidden (view full) ---

541 DMENU_SET_VARIABLE, (void *)"debug=no", 0, 0 },
542 { NULL } },
543};
544
545DMenu MenuOptionsFTP = {
546 DMENU_NORMAL_TYPE | DMENU_SELECTION_RETURNS,
547 "Choose FTP Options",
548 "In case of ftp failure, how would you like this installation\n\
8 *
9 * Copyright (c) 1995
10 * Jordan Hubbard. All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright

--- 525 unchanged lines hidden (view full) ---

541 DMENU_SET_VARIABLE, (void *)"debug=no", 0, 0 },
542 { NULL } },
543};
544
545DMenu MenuOptionsFTP = {
546 DMENU_NORMAL_TYPE | DMENU_SELECTION_RETURNS,
547 "Choose FTP Options",
548 "In case of ftp failure, how would you like this installation\n\
549to deal with it? You have one of several choices:",
549to deal with it? You have several choices:",
550 NULL,
551 NULL,
552 { { "Ftp Retry", "On transfer failure, retry same host",
553 DMENU_SET_VARIABLE, (void *)"ftpRetryType=loop", 0, 0 },
554 { "Ftp Reselect", "On transfer failure, ask for another host",
555 DMENU_SET_VARIABLE, (void *)"ftpRetryType=reselect", 0, 0 },
556 { "Ftp Abort", "On transfer failure, abort installation",
557 DMENU_SET_VARIABLE, (void *)"ftpRetryType=abort", 0, 0 },

--- 14 unchanged lines hidden (view full) ---

572after a final confirmation). If you do not wish to install FreeBSD\n\
573at this time then select Cancel to leave this menu.",
574 "Press F1 to read the installation guide",
575 "install.hlp",
576 { { "Distributions", "Choose the type of installation you want", /* T */
577 DMENU_SUBMENU, (void *)&MenuInstallType, 0, 0 },
578 { "Media", "Choose the installation media type", /* M */
579 DMENU_SUBMENU, (void *)&MenuMedia, 0, 0 },
550 NULL,
551 NULL,
552 { { "Ftp Retry", "On transfer failure, retry same host",
553 DMENU_SET_VARIABLE, (void *)"ftpRetryType=loop", 0, 0 },
554 { "Ftp Reselect", "On transfer failure, ask for another host",
555 DMENU_SET_VARIABLE, (void *)"ftpRetryType=reselect", 0, 0 },
556 { "Ftp Abort", "On transfer failure, abort installation",
557 DMENU_SET_VARIABLE, (void *)"ftpRetryType=abort", 0, 0 },

--- 14 unchanged lines hidden (view full) ---

572after a final confirmation). If you do not wish to install FreeBSD\n\
573at this time then select Cancel to leave this menu.",
574 "Press F1 to read the installation guide",
575 "install.hlp",
576 { { "Distributions", "Choose the type of installation you want", /* T */
577 DMENU_SUBMENU, (void *)&MenuInstallType, 0, 0 },
578 { "Media", "Choose the installation media type", /* M */
579 DMENU_SUBMENU, (void *)&MenuMedia, 0, 0 },
580 { "Partition", "Go to the Disk Partition Editor", /* P */
580 { "Partition", "Allocate disk space for FreeBSD", /* P */
581 DMENU_CALL, (void *)diskPartitionEditor, 0, 0 },
581 DMENU_CALL, (void *)diskPartitionEditor, 0, 0 },
582 { "Label", "Label allocated disk partitions for FreeBSD", /* L */
582 { "Label", "Label allocated disk partitions", /* L */
583 DMENU_CALL, (void *)diskLabelEditor, 0, 0 },
584 { "Networking", "Configure any network interfaces", /* N */
585 DMENU_CALL, (void *)tcpOpenDialog, 0, 0 },
586 { "GO!", "Start the whole show and go out for coffee!", /* P */
587 DMENU_CALL, (void *)installCommit, 0, 0 },
588 { NULL } },
589};
583 DMENU_CALL, (void *)diskLabelEditor, 0, 0 },
584 { "Networking", "Configure any network interfaces", /* N */
585 DMENU_CALL, (void *)tcpOpenDialog, 0, 0 },
586 { "GO!", "Start the whole show and go out for coffee!", /* P */
587 DMENU_CALL, (void *)installCommit, 0, 0 },
588 { NULL } },
589};