
From: Simon Glass <sjg@chromium.org> This series moves the image-creation code into separate files so it is easier to find and maintain. Simon Glass (10): test: Move image creation to test/py/img test: Create a common file for image utilities test: Move Fedora image-creation to its own file test: Move Ubuntu image-creation to its own file test: Move Armbian image-creation to its own file test: Move ChromeOS image-creation to its own file test: Move Android image-creation to its own file test: Move EFI image-creation to its own file test: Move the configuration-editor setup to its own file test: Move localboot image-creation to its own file MAINTAINERS | 5 + test/py/img/android.py | 146 ++++++++ test/py/img/armbian.py | 132 +++++++ test/py/img/cedit.py | 25 ++ test/py/img/chromeos.py | 154 +++++++++ test/py/img/common.py | 88 +++++ test/py/img/efi.py | 37 ++ test/py/img/fedora.py | 35 ++ test/py/img/localboot.py | 27 ++ test/py/img/ubuntu.py | 47 +++ test/py/{tests => }/img/vbe.py | 0 test/py/tests/test_ut.py | 616 +-------------------------------- 12 files changed, 705 insertions(+), 607 deletions(-) create mode 100644 test/py/img/android.py create mode 100644 test/py/img/armbian.py create mode 100644 test/py/img/cedit.py create mode 100644 test/py/img/chromeos.py create mode 100644 test/py/img/common.py create mode 100644 test/py/img/efi.py create mode 100644 test/py/img/fedora.py create mode 100644 test/py/img/localboot.py create mode 100644 test/py/img/ubuntu.py rename test/py/{tests => }/img/vbe.py (100%) -- 2.43.0 base-commit: 0d523d8d55dddbd1efd0c734845ceff9a975ff0b branch: makeb