diff options
author | jkh <jkh@FreeBSD.org> | 1998-11-15 09:06:20 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-11-15 09:06:20 +0000 |
commit | ffd97e5342d926be2f35b764575b61c28801658c (patch) | |
tree | f6d951a8fdaddd587487ae7d5a84ea7702875b0a /release/sysinstall/dispatch.c | |
parent | c0977927244cf33b27cc7a36fa0db9652260b50f (diff) | |
download | FreeBSD-src-ffd97e5342d926be2f35b764575b61c28801658c.zip FreeBSD-src-ffd97e5342d926be2f35b764575b61c28801658c.tar.gz |
o Break fixups into binary fixups and XFree86 based fixups.
o Move fixups into extraction routine so all consumers don't have to duplicate
the right behavior.
o Make some things more orthogonal (just for asthetics sake)
o Add option to go back and do it again if XF86Setup fails (possibly with
a different setup - this one has always annoyed me).
Diffstat (limited to 'release/sysinstall/dispatch.c')
-rw-r--r-- | release/sysinstall/dispatch.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/release/sysinstall/dispatch.c b/release/sysinstall/dispatch.c index 9bac849..5e1668a 100644 --- a/release/sysinstall/dispatch.c +++ b/release/sysinstall/dispatch.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: dispatch.c,v 1.24 1997/09/17 16:18:13 pst Exp $ + * $Id: dispatch.c,v 1.25 1998/07/18 09:41:58 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -82,7 +82,8 @@ static struct _word { { "installExpress", installExpress }, { "installNovice", installNovice }, { "installUpgrade", installUpgrade }, - { "installFixup", installFixup }, + { "installFixupBin", installFixupBin }, + { "installFixupXFree", installFixupXFree }, { "installFixitHoloShell", installFixitHoloShell }, { "installFixitCDROM", installFixitCDROM }, { "installFixitFloppy", installFixitFloppy }, |