Deleted Added
full compact
globals.c (8363) globals.c (8549)
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: globals.c,v 1.2 1995/05/06 09:34:16 jkh Exp $
7 * $Id: globals.c,v 1.3 1995/05/08 21:39:36 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

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

51int CpioFD; /* The file descriptor for our CPIO floppy */
52int DebugFD; /* Where diagnostic output goes */
53Boolean OnCDROM; /* Are we running off of a CDROM? */
54Boolean OnSerial; /* Are we on a serial console? */
55Boolean DialogActive;
56Boolean ColorDisplay;
57Boolean OnVTY;
58Variable *VarHead; /* The head of the variable chain */
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

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

51int CpioFD; /* The file descriptor for our CPIO floppy */
52int DebugFD; /* Where diagnostic output goes */
53Boolean OnCDROM; /* Are we running off of a CDROM? */
54Boolean OnSerial; /* Are we on a serial console? */
55Boolean DialogActive;
56Boolean ColorDisplay;
57Boolean OnVTY;
58Variable *VarHead; /* The head of the variable chain */
59DeviceType MediaType; /* Where we're installing from */
60char *MediaDevice; /* More detail on how to find it */
61
62/*
63 * Yes, I know some of these are already automatically initialized as
64 * globals. I simply find it clearer to set everything explicitly.
65 */
66void
67globalsInit(void)
68{

--- 12 unchanged lines hidden ---
59
60/*
61 * Yes, I know some of these are already automatically initialized as
62 * globals. I simply find it clearer to set everything explicitly.
63 */
64void
65globalsInit(void)
66{

--- 12 unchanged lines hidden ---