Begin the sysinstall cleanup. Remove the support for configuring OSF
binary compatibility.
This commit is contained in:
parent
c7c7520a95
commit
3edf1c0b8b
@ -548,17 +548,6 @@ configLinux(dialogMenuItem *self)
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef __alpha__
|
||||
int
|
||||
configOSF1(dialogMenuItem *self)
|
||||
{
|
||||
|
||||
variable_set2(VAR_OSF1_ENABLE, "YES", 1);
|
||||
Mkdir("/compat/osf1");
|
||||
return DITEM_SUCCESS;
|
||||
}
|
||||
#endif
|
||||
|
||||
int
|
||||
configSecurelevel(dialogMenuItem *self)
|
||||
{
|
||||
|
@ -692,12 +692,6 @@ installStandard(dialogMenuItem *self)
|
||||
(void)configLinux(self);
|
||||
#endif
|
||||
|
||||
#ifdef __alpha__
|
||||
dialog_clear_norefresh();
|
||||
if (!msgYesNo("Would you like to enable OSF/1 binary compatibility?"))
|
||||
(void)configOSF1(self);
|
||||
#endif
|
||||
|
||||
#ifdef WITH_MICE
|
||||
dialog_clear_norefresh();
|
||||
if (!msgNoYes("Does this system have a PS/2, serial, or bus mouse?"))
|
||||
|
@ -1256,10 +1256,6 @@ DMenu MenuStartup = {
|
||||
dmenuVarCheck, dmenuToggleVariable, NULL, "ibcs2_enable=YES" },
|
||||
{ " SVR4", "This host wants to be able to run SVR4 binaries.",
|
||||
dmenuVarCheck, dmenuToggleVariable, NULL, "svr4_enable=YES" },
|
||||
#endif
|
||||
#ifdef __alpha__
|
||||
{ " OSF/1", "This host wants to be able to run DEC OSF/1 binaries.",
|
||||
dmenuVarCheck, configOSF1, NULL, VAR_OSF1_ENABLE "=YES" },
|
||||
#endif
|
||||
{ " quotas", "This host wishes to check quotas on startup.",
|
||||
dmenuVarCheck, dmenuToggleVariable, NULL, "check_quotas=YES" },
|
||||
|
@ -169,7 +169,6 @@
|
||||
#define VAR_NO_HOME "noHome"
|
||||
#define VAR_NONINTERACTIVE "nonInteractive"
|
||||
#define VAR_NOVELL "novell"
|
||||
#define VAR_OSF1_ENABLE "osf1_enable"
|
||||
#define VAR_RPCBIND_ENABLE "rpcbind_enable"
|
||||
#define VAR_NTPDATE_FLAGS "ntpdate_flags"
|
||||
#define VAR_PACKAGE "package"
|
||||
@ -533,9 +532,6 @@ extern int configSaverTimeout(dialogMenuItem *self);
|
||||
extern int configLinux(dialogMenuItem *self);
|
||||
#endif
|
||||
extern int configNTP(dialogMenuItem *self);
|
||||
#ifdef __alpha__
|
||||
extern int configOSF1(dialogMenuItem *self);
|
||||
#endif
|
||||
extern int configCountry(dialogMenuItem *self);
|
||||
extern int configUsers(dialogMenuItem *self);
|
||||
extern int configRouter(dialogMenuItem *self);
|
||||
|
Loading…
Reference in New Issue
Block a user