Удаление 686

master 3.7.3.7
root 1 year ago
parent 3e7f20f4ce
commit 397ac25381

@ -506,8 +506,6 @@ class Distributive():
try:
if path.lexists(path.join(directory, 'lib64')):
d['os_arch_machine'] = 'x86_64'
elif path.lexists(path.join(directory, 'lib')):
d['os_arch_machine'] = 'i686'
else:
d['os_arch_machine'] = ''
dv = LinuxDataVars(systemRoot=directory)

@ -44,7 +44,7 @@ setLocalTranslate('cl_install3', sys.modules[__name__])
class DistroRepository(Linux):
contentCache = {}
marches = ['i686', 'x86_64']
marches = ['x86_64']
extensiton = ['iso', 'tar.bz2', 'tar.gz', 'tar.7z', 'tar.lzma']
@ -391,7 +391,7 @@ class VariableClImageArchMachine(DistroRepository, Variable):
type = 'choice'
opt = ['--march']
metavalue = "ARCH"
available_arch = ["i686", "x86_64"]
available_arch = ["x86_64"]
def init(self):
self.label = "%s %s" % (_("Filter"), _("by processor architecture"))

Loading…
Cancel
Save