Merge remote-tracking branch 'origin/master' into develop

master3.3
Mike khiretskiy 10 years ago
commit ac904a811f

@ -134,10 +134,6 @@ start() {
touch /* /bin/* /sbin/*
udevadm trigger --action="add" --subsystem-match=net
fi
if [[ $roottype != "livecd" ]]
then
/usr/bin/eix-checkout &>/dev/null &
fi
/sbin/rc-update --update
return 0

@ -754,7 +754,7 @@ class PartitionDistributive(Distributive):
mulipartDataNotBind = filter(lambda x: x[2]!="bind",
self.getMultipartData())
for dev, mountPoint, fileSystem, isFormat, partTable\
in mulipartDataNotBind:
in sorted(mulipartDataNotBind, key=lambda x:x[1]):
if fileSystem!="swap":
realMountPoint = pathJoin(mdirectory, mountPoint)
self._mountPartition(dev,realMountPoint,"-t %s"%fileSystem)

@ -86,8 +86,6 @@ class VariableOsFormatUse(ReadonlyVariable):
'value': "off"}
def checkFunc(self,fs):
if fs == "btrfs" and self.Get('os_root_type') == 'livecd':
return "no"
if "format" in FileSystemManager.supportFS[fs] and \
path.exists(FileSystemManager.supportFS[fs]["format"]):
return "yes"

Loading…
Cancel
Save