Deleted Added
full compact
menus.c (149402) menus.c (153430)
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 * Copyright (c) 1995
8 * Jordan Hubbard. All rights reserved.

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

29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 */
34
35#ifndef lint
36static const char rcsid[] =
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 * Copyright (c) 1995
8 * Jordan Hubbard. All rights reserved.

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

29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 */
34
35#ifndef lint
36static const char rcsid[] =
37 "$FreeBSD: head/usr.sbin/sysinstall/menus.c 149402 2005-08-24 02:21:12Z rodrigc $";
37 "$FreeBSD: head/usr.sbin/sysinstall/menus.c 153430 2005-12-15 01:04:51Z iedowse $";
38#endif
39
40#include "sysinstall.h"
41
42/* Miscellaneous work routines for menus */
43static int
44setSrc(dialogMenuItem *self)
45{

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

1367#ifdef PCCARD_ARCH
1368 { " pccard", "Enable PCCARD (AKA PCMCIA) services (also laptops)",
1369 dmenuVarCheck, dmenuToggleVariable, NULL, "pccard_enable=YES" },
1370 { " pccard mem", "Set PCCARD memory address (if enabled)",
1371 dmenuVarCheck, dmenuISetVariable, NULL, "pccard_mem" },
1372 { " pccard ifconfig", "List of PCCARD ethernet devices to configure",
1373 dmenuVarCheck, dmenuISetVariable, NULL, "pccard_ifconfig" },
1374#endif
38#endif
39
40#include "sysinstall.h"
41
42/* Miscellaneous work routines for menus */
43static int
44setSrc(dialogMenuItem *self)
45{

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

1367#ifdef PCCARD_ARCH
1368 { " pccard", "Enable PCCARD (AKA PCMCIA) services (also laptops)",
1369 dmenuVarCheck, dmenuToggleVariable, NULL, "pccard_enable=YES" },
1370 { " pccard mem", "Set PCCARD memory address (if enabled)",
1371 dmenuVarCheck, dmenuISetVariable, NULL, "pccard_mem" },
1372 { " pccard ifconfig", "List of PCCARD ethernet devices to configure",
1373 dmenuVarCheck, dmenuISetVariable, NULL, "pccard_ifconfig" },
1374#endif
1375 { " usbd", "Enable USB daemon (detect USB attach / detach)",
1376 dmenuVarCheck, dmenuToggleVariable, NULL, "usbd_enable=YES" },
1377 { " usbd flags", "Set default flags to usbd (if enabled)",
1378 dmenuVarCheck, dmenuISetVariable, NULL, "usbd_flags" },
1379 { " ", " -- ", NULL, NULL, NULL, NULL, ' ', ' ', ' ' },
1380 { " Startup dirs", "Set the list of dirs to look for startup scripts",
1381 dmenuVarCheck, dmenuISetVariable, NULL, "local_startup" },
1382 { " named", "Run a local name server on this host",
1383 dmenuVarCheck, dmenuToggleVariable, NULL, "named_enable=YES" },
1384 { " named flags", "Set default flags to named (if enabled)",
1385 dmenuVarCheck, dmenuISetVariable, NULL, "named_flags" },
1386 { " NIS client", "This host wishes to be an NIS client.",

--- 886 unchanged lines hidden ---
1375 { " ", " -- ", NULL, NULL, NULL, NULL, ' ', ' ', ' ' },
1376 { " Startup dirs", "Set the list of dirs to look for startup scripts",
1377 dmenuVarCheck, dmenuISetVariable, NULL, "local_startup" },
1378 { " named", "Run a local name server on this host",
1379 dmenuVarCheck, dmenuToggleVariable, NULL, "named_enable=YES" },
1380 { " named flags", "Set default flags to named (if enabled)",
1381 dmenuVarCheck, dmenuISetVariable, NULL, "named_flags" },
1382 { " NIS client", "This host wishes to be an NIS client.",

--- 886 unchanged lines hidden ---