#!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of asmc, a bootstrapping OS with minimal seed # Copyright (C) 2018 Giovanni Mascellani # https://gitlab.com/giomasce/asmc # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . import sys import os import struct import shutil def main(): assert 2 <= len(sys.argv) <= 6 mbr_filename = sys.argv[1] parts_filenames = sys.argv[2:] mbr_size = os.stat(mbr_filename).st_size parts_sizes = [os.stat(x).st_size for x in parts_filenames] assert 0 <= len(parts_sizes) <= 4 with open(mbr_filename, 'rb') as fmbr: mbr = fmbr.read() assert len(mbr) == 512 # Check we are not overwriting anything assert mbr[0x1be:0x1fe] == b'\0' * (0x1fe - 0x1be) current_lba = 1 parts_data = b'' for size in parts_sizes: sectors = (size + 511) // 512 parts_data += b'\x00\xff\xff\xff\x01\xff\xff\xff' parts_data += struct.pack('