add SPDX-License-Identifier: MIT to all source

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
Brian S. Stephan 2023-12-18 10:17:08 -06:00
parent 6aa3ea6f84
commit b2bf7984b0
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
12 changed files with 46 additions and 11 deletions

View File

@ -1,4 +1,7 @@
"""Initialize the package and get dependencies."""
"""Initialize the package and get dependencies.
SPDX-License-Identifier: MIT
"""
import argparse
import importlib
import logging

View File

@ -1,4 +1,7 @@
"""Build binary files for a GP2040-CE board."""
"""Build binary files for a GP2040-CE board.
SPDX-License-Identifier: MIT
"""
import argparse
import copy
import logging

View File

@ -1,4 +1,7 @@
"""GUI applications for working with binary files."""
"""GUI applications for working with binary files.
SPDX-License-Identifier: MIT
"""
import argparse
import logging

View File

@ -1,6 +1,8 @@
"""Methods to interact with the Raspberry Pi RP2040 directly.
Much of this code is a partial Python implementation of picotool.
SPDX-License-Identifier: MIT
"""
import logging
import struct

View File

@ -1,4 +1,7 @@
"""Interact with the protobuf config from a picotool flash dump of a GP2040-CE board."""
"""Interact with the protobuf config from a picotool flash dump of a GP2040-CE board.
SPDX-License-Identifier: MIT
"""
import argparse
import binascii
import logging

View File

@ -1,4 +1,7 @@
"""Create the test fixtures and other data."""
"""Create the test fixtures and other data.
SPDX-License-Identifier: MIT
"""
import os
import pytest

View File

@ -1,4 +1,7 @@
"""Tests for the image builder module."""
"""Tests for the image builder module.
SPDX-License-Identifier: MIT
"""
import os
import sys
import unittest.mock as mock

View File

@ -1,4 +1,7 @@
"""Test our tools themselves to make sure they adhere to certain flags."""
"""Test our tools themselves to make sure they adhere to certain flags.
SPDX-License-Identifier: MIT
"""
import json
import os
import sys

View File

@ -1,4 +1,7 @@
"""Test the Textual GUI."""
"""Test the Textual GUI.
SPDX-License-Identifier: MIT
"""
import os
import sys
import unittest.mock as mock

View File

@ -1,4 +1,7 @@
"""Test high level package capabilities."""
"""Test high level package capabilities.
SPDX-License-Identifier: MIT
"""
import os
import sys

View File

@ -1,4 +1,7 @@
"""Test operations for interfacing directly with a Pico."""
"""Test operations for interfacing directly with a Pico.
SPDX-License-Identifier: MIT
"""
import os
import struct
import sys

View File

@ -1,4 +1,7 @@
"""Unit tests for the storage module."""
"""Unit tests for the storage module.
SPDX-License-Identifier: MIT
"""
import os
import sys
import unittest.mock as mock