Merge pull request #343 from shinji-s/mx-fix

Fix booting of MX-17.1 (an antiX derivative).
pull/344/head
multibootusb 6 years ago committed by GitHub
commit 85aa42634d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -904,7 +904,7 @@ class FedoraConfigTweaker(PersistenceConfigTweaker):
class AntixConfigTweaker(NoPersistenceTweaker):
def param_operations(self):
content = self.file_content('version')
if content and 0 <= content.find('antiX-17'):
if content and ('antiX-17' in content or 'MX-17' in content):
ops = [
add_or_replace_kv('buuid=', self.setup_params.usb_uuid),
add_or_replace_kv('bdir=',

Loading…
Cancel
Save