From 012251a3785007f4c2b62a2f3fa4f6565c0844ad Mon Sep 17 00:00:00 2001 From: netchild Date: Mon, 7 Aug 2006 23:35:49 +0000 Subject: Say welcome to 'sade', the SysAdmins Disk Editor. It's the fdisk and disklabel part of sysinstall. So sysinstall may retire now, we have the important non-install part of it covered. ATM it doesn't understand GEOM stuff (like mirror, stripe, raid, ...), but patches to change this and to clean it up internally are more than welcome. Submitted by: mami@nyitolap.hu --- usr.sbin/sade/globals.c | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) (limited to 'usr.sbin/sade/globals.c') diff --git a/usr.sbin/sade/globals.c b/usr.sbin/sade/globals.c index 892d852..0b08da3 100644 --- a/usr.sbin/sade/globals.c +++ b/usr.sbin/sade/globals.c @@ -1,9 +1,4 @@ /* - * The new sysinstall program. - * - * This is probably the last program in the `sysinstall' line - the next - * generation being essentially a complete rewrite. - * * $FreeBSD$ * * Copyright (c) 1995 @@ -34,7 +29,7 @@ * */ -#include "sysinstall.h" +#include "sade.h" /* * Various global variables and an initialization hook to set them to @@ -43,13 +38,11 @@ int DebugFD; /* Where diagnostic output goes */ Boolean Fake; /* Only pretend to be useful */ -Boolean RunningAsInit; /* Are we running as init? */ Boolean DialogActive; /* Is libdialog initialized? */ Boolean ColorDisplay; /* Are we on a color display? */ Boolean OnVTY; /* Are we on a VTY? */ Boolean Restarting; /* Are we restarting sysinstall? */ Variable *VarHead; /* The head of the variable chain */ -Device *mediaDevice; /* Where we're installing from */ int BootMgr; /* Which boot manager we're using */ int StatusLine; /* Where to stick our status messages */ jmp_buf BailOut; /* Beam me up, scotty! The natives are pissed! */ @@ -78,8 +71,6 @@ globalsInit(void) OnVTY = FALSE; DialogActive = FALSE; VarHead = NULL; - mediaDevice = NULL; - RunningAsInit = FALSE; HomeChunk = NULL; RootChunk = NULL; -- cgit v1.1