Apply formatting

This commit is contained in:
jld3103 2021-08-08 18:32:42 +02:00
parent 8b943a903a
commit 98040d8a31
10 changed files with 375 additions and 232 deletions

15
boot.py
View file

@ -1,11 +1,10 @@
import os
import urllib.request
from image import get_device_and_flavour, get_image_name
from logger import *
from logger import logging, setup_logging, verbose_option
import click
import subprocess
FASTBOOT = 'fastboot'
JUMPDRIVE = 'jumpdrive'
@ -20,9 +19,12 @@ boot_strategies = {
def dump_bootimg(image_name: str) -> str:
path = '/tmp/boot.img'
result = subprocess.run(['debugfs',
image_name,
'-R', f'dump /boot/boot.img {path}'])
result = subprocess.run([
'debugfs',
image_name,
'-R',
f'dump /boot/boot.img {path}',
])
if result.returncode != 0:
logging.fatal(f'Faild to dump boot.img')
exit(1)
@ -43,8 +45,7 @@ def cmd_boot(verbose, type):
if type == JUMPDRIVE:
file = f'boot-{device}.img'
path = os.path.join('/var/cache/jumpdrive', file)
urllib.request.urlretrieve(
f'https://github.com/dreemurrs-embedded/Jumpdrive/releases/download/{jumpdrive_version}/{file}', path)
urllib.request.urlretrieve(f'https://github.com/dreemurrs-embedded/Jumpdrive/releases/download/{jumpdrive_version}/{file}', path)
else:
path = dump_bootimg(image_name)