This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Lorenzo L. Ancora - 2022 | |
# SPDX-License-Identifier: EUPL-1.2 | |
from array import array | |
from ctypes import _CData # type:ignore | |
from mmap import mmap | |
from typing import Any, Optional, TypeVar, Union | |
ReadableBuffer = Union[bytes, bytearray, memoryview, array[Any], mmap, _CData] | |
#^ Derived from typeshed/stdlib/typeshed/__init__.py. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# DTB UPDATER 0.2 for Raspberry Pi 3 (aarch64) | |
# Copyright (C) 2018 Lorenzo Ancora | |
# DTB UPDATER 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. | |
# DTB UPDATER is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |