Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mediatek: mt7986: only protect BL32 memory if needed #6

Closed

Commits on Jul 4, 2023

  1. Makefile: enable debug symbols for release build

    Enable debug symbols for release build which will be convenient for
    debugging over JTAG.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    b8beda0 View commit details
    Browse the repository at this point in the history
  2. build_macros.mk: add support to use prebuilt libraries

    Add support to use prebuilt libraries for BL2 and BL31
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    1c18c4e View commit details
    Browse the repository at this point in the history
  3. tools: mediatek: add support for MediaTek bromimage utility

    This utility is used for adding a BootROM readable header for BL2 image.
    The BL2 image is directly loaded by the BootROM and supports RSA signing
    for secure boot.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    464e030 View commit details
    Browse the repository at this point in the history
  4. tools: mediatek: add anti-rollback related tools

    Add tools to generate anti-rollback table with an example
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    184a713 View commit details
    Browse the repository at this point in the history
  5. tools: mediatek: add offline signing tool for TBBR

    There's a situation that ROT_KEY(private) does not exist in building
    environment, and thus signing is impossible during build stage.
    
    This tool is used to sign certificate without knowing ROT_KEY
    
    Since ROT_KEY is used to sign trusted_key.cert, we only need to make sure
    trusted_key.crt is signed correctly.
    
    This tool does the first, and third actions within following flow:
    
    1. Extract sign body from trusted_key.cert
    2. Sign body using ROT_KEY [Done by user after build]
    3. Use signature to assemble new trusted_key.cert
    4. use fiptool to generate new FIP image
    
    Usage:
    Extract sign body from trusted_key.crt:
      signoffline -p [fip_public_key] -c [trusted_key.crt] \
                  -m [message to be signed]
    
    Use signature to assemble new trusted_key.crt:
      signoffline -p [fip_public_key] -c [trusted_key.crt] \
                  -s [signature] -o [new trusted_key.crt]
    
    Signed-off-by: Tim-cy Yang <Tim-cy.Yang@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    ee13a12 View commit details
    Browse the repository at this point in the history
  6. tools: add production-related tools

    Add GPT editor for generate GPT table for SD/eMMC
    Add single image (ROM dump image) making tool
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    ebbcfb6 View commit details
    Browse the repository at this point in the history
  7. mmc: do not check mmc_csd.spec_vers for eMMC

    Some eMMC chips have wrong value of field spec_vers in CSD register.
    spec_vers is not checked by both linux kernel and u-boot. So it better to
    remove this check.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    65128b5 View commit details
    Browse the repository at this point in the history
  8. mmc: add support to poll card busy state

    Add support to poll card busy state for R1b command
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    e2bd6a5 View commit details
    Browse the repository at this point in the history
  9. nand: record oob size in nand framework

    Add oob_size field for nand framework
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    6ea9767 View commit details
    Browse the repository at this point in the history
  10. spi-nor: extend support for 4-byte address flashes

    Support more 4-byte address flashes
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    219283b View commit details
    Browse the repository at this point in the history
  11. gpio: add interface for changing gpio mode

    Add interface for gpio driver to change gpio mode
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    a3cfe2f View commit details
    Browse the repository at this point in the history
  12. drivers: io: add support for UBI

    This patch adds UBI loading support for BL2.
    
    The main UBI code comes from u-boot (drivers/mtd/ubispl.c) with
    modifications. The original code permits BSD-3-Clause license.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    939117a View commit details
    Browse the repository at this point in the history
  13. mediatek: add common files for APSoC platform

    The APSoC platform includes mt7622, mt7629, filogic chips and future chips.
    
    These common files are shared between all chips list above.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    7171bda View commit details
    Browse the repository at this point in the history
  14. mediatek: common: add mediatek's generic spi-nand driver

    We have detached from upstream spi-nand driver and implement this dedicated
    spi-nand driver with more features.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    712329c View commit details
    Browse the repository at this point in the history
  15. mediatek: common: add SiP implementation for APSoC platform

    We have detached from upstream platforms, and thus implement APSoC's
    own SiP implementation.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    
    fixup to apsoc imp
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    0af11f9 View commit details
    Browse the repository at this point in the history
  16. mediatek: common: add MediaTek SD/eMMC controller driver

    Add MediaTek SD/eMMC controller driver
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    038d3e9 View commit details
    Browse the repository at this point in the history
  17. mediatek: common: add SPI-NAND flash interface (SNFI) driver

    Add SNFI driver for SPI-NAND flashes.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    b3446fb View commit details
    Browse the repository at this point in the history
  18. mediatek: common: add generic high-speed UART console driver

    Add generic high-speed UART console driver.
    
    This driver can be used to register console.
    When baud <= 115200, 16550-compatible mode will be used, otherwise
    high-speed mode will be used.
    
    An option can be used to force using high-speed mode.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    e0aa42c View commit details
    Browse the repository at this point in the history
  19. mediatek: common: add general-purpose timer (GPT) driver

    Add general-purpose timer driver
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    1001697 View commit details
    Browse the repository at this point in the history
  20. mediatek: common: add generic efuse driver

    Add generic efuse driver
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    1f215f0 View commit details
    Browse the repository at this point in the history
  21. mediatek: common: add common i2c bus and host drivers

    This patch add i2c frameowrk for medaitek SoC.
    Also add rt5190 PMIC and ds3232 HWRTC example drivers
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    1ab146d View commit details
    Browse the repository at this point in the history
  22. mediatek: common: add spi-mem controller driver

    This patch adds spi-mem controller driver with support for quad-spi
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    0baeee0 View commit details
    Browse the repository at this point in the history
  23. mediatek: common: add UART download protocol support

    Add support for BL2 (boot from RAM ver.) to receive FIP from serial port.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    8ceb616 View commit details
    Browse the repository at this point in the history
  24. lib: add NAND mapping block management (NMBM) library

    Add NAND mapping block management (NMBM) common library.
    This library acts as a translation layer to hide bad blocks of a raw NAND
    device. It's very useful for factory production where data may shift due
    to bad blocks.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    e3704a8 View commit details
    Browse the repository at this point in the history
  25. lib: xz: add xz decompress support from xz-embedded-20210201

    Add xz-embedded-20210201 from
    https://tukaani.org/xz/embedded.html
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    9a4578f View commit details
    Browse the repository at this point in the history
  26. Build: add xz compression image filter

    Add support to compress images using xz
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    9457190 View commit details
    Browse the repository at this point in the history
  27. Makefile: add new bootloader stage for decompressing BL2 payload

    This patch adds a new bootloader stage named BL2PL (aka. BL2 preloader)
    to support BL2 compression.
    
    This stage only implements XZ decompression for BL2 payload, and the BL2
    payload must be compressed by XZ with crc32 checksum support.
    
    To make use of this stage, a BL2PL specific image header must be added to
    the compressed BL2 payload to record its load address and size. Then this
    payload with header should be directly appended to the end of BL2PL raw
    binary without any padding.
    
    -------------------------------
    | BL2PL | Header | XZ payload |
    -------------------------------
    
    On startup, BL2PL will first relocate itself to On-Chip SRAM and setup
    the C environment, and then decompress the real BL2 to its load address,
    and finally jump to the real BL2.
    
    ---------------------------------------------------------------
    | Stage | On-Chip SRAM |            L2 shared SRAM            |
    ---------------------------------------------------------------
    |   1   |              | BL2PL | XZ payload                   |
    ---------------------------------------------------------------
    |   2   | BL2PL        |                           XZ payload |
    ---------------------------------------------------------------
    |   3   | BL2PL        | BL2                     | XZ payload |
    ---------------------------------------------------------------
    
    Also, add a tool named bl2plimage to generate BL2PL image header for XZ
    compressed BL2 payload.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    c624304 View commit details
    Browse the repository at this point in the history
  28. make_helpers: add simple build option dependency check

    This patch adds a simple build option dependency checking mechanism, which
    makes changes of build options to take effect immediately without a clean.
    
    Currently we have many C macros defined in gcc command line by build
    options passed from the make command line. However in ATF build framework,
    the macros defined in gcc command line will not be treated as dependency,
    which means changes in those macros will not take effect to C source files
    using those macros.
    
    This mechanism is done by adding a dependency rule explictly for a
    specific source file, and the dependency rule is a new header file.
    
    Everytime before building, the mechanism writes all registered build
    options of a file to the dependency rule file. Once the build option is
    changed, the content of the dependency rule file will also be changed,
    which will trigger a rebuild of the source file.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    4015be6 View commit details
    Browse the repository at this point in the history
  29. Prepare for MediaTek Anti-Rollback mechanism

    The Anti-Rollback mechanism of MediaTek uses NV-counter for the minimum
    allowed version, and discard the original purpose of NV-counter.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    63c7515 View commit details
    Browse the repository at this point in the history
  30. Prepare for MediaTek FSEK mechanism

    The FSEK is used to help decrypt rootfs data.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    5f1b572 View commit details
    Browse the repository at this point in the history
  31. mediatek: mt7622: add initial BL2/BL31 support

    Add initial BL2/BL31 support for mt7622.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    af97ca5 View commit details
    Browse the repository at this point in the history
  32. mediatek: mt7622: add DDR initialization support

    Add DDR initialization support for mt7622
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    1 Configuration menu
    Copy the full SHA
    a1663e3 View commit details
    Browse the repository at this point in the history
  33. mediatek: mt7622: add eFuse read/write support

    Add eFuse prebuilt library and relative SIP services for BL31 to allow
    BL33 to manipulate the eFuse features (SecureBoot, Anti-Rollback, ...)
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    0a07e77 View commit details
    Browse the repository at this point in the history
  34. mediatek: mt7622: add basic anti-rollback framework

    Add basic anti-rollback framework for mt7622 (PATCH-v3)
    - Add ar_table tool which support parsing customer's
      version control xml file to generate auto-config
      file, and embeded those information into atf code
    - Modify platform.mk that allow us feed customer's
      version control xml file and build anti-rollback
      atf image in one step
    
    Usage:
    Add following parameters to make input:
    ANTI_ROLLBACK=1 ANTI_ROLLBACK_CONF=./ar_table_example.xml
    
    Add following make target to make input:
    ar_table
    
    For example:
    make PLAT=mt7622 BOOT_DEVICE=snand BROM_SIGN_KEY=/path/to/key	\
    BL33=/path/to/u-boot-binary MBEDTLS_DIR=/path/to/mbedtls	\
    TRUSTED_BOARD_BOOT=1 GENERATE_COT=1 ROT_KEY=/path/to/key	\
    ANTI_ROLLBACK=1 ANTI_ROLLBACK_CONF=path/to/version-xml		\
    ar_table all fip
    
    Change since v2:
    - Fix multiple cert_tool --tfw-nvctr and --ntfw-nvctr parameters
    exist in the CERT_ARGS variable
    - Remove duplicate ar_table make target in platform.mk
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    8417a93 View commit details
    Browse the repository at this point in the history
  35. mediatek: mt7622: add build option dependency rules

    Add build option dependency rules to make sure option changes take effect
    on .o files immediately to avoid cleaning current build.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    2795ecb View commit details
    Browse the repository at this point in the history
  36. mediatek: mt7629: add initial BL2/BL32 support

    Add initial BL2/BL32 support for mt7629.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    882087d View commit details
    Browse the repository at this point in the history
  37. mediatek: mt7629: add DDR initialization support

    Add DDR initialization support for mt7629
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    bbc815f View commit details
    Browse the repository at this point in the history
  38. mediatek: mt7629: add eFuse read/write support

    Add eFuse prebuilt library and relative SIP services for BL32 to allow
    BL33 to manipulate the eFuse features (SecureBoot, Anti-Rollback, ...)
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    c4c23d1 View commit details
    Browse the repository at this point in the history
  39. mediatek: mt7629: add build option dependency rules

    Add build option dependency rules to make sure option changes take effect
    on .o files immediately to avoid cleaning current build.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    86f174a View commit details
    Browse the repository at this point in the history
  40. mediatek: mt7986: add initial BL2/BL31 support

    Add initial BL2/BL31 support for mt7986.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    72a72ba View commit details
    Browse the repository at this point in the history
  41. mediatek: mt7986: add DDR initialization support

    Add DDR initialization support for mt7986
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    1e04ac3 View commit details
    Browse the repository at this point in the history
  42. mediatek: mt7986: add eFuse read/write support

    Add eFuse prebuilt library and relative SIP services for BL31 to allow
    BL33 to manipulate the eFuse features (SecureBoot, Anti-Rollback, ...)
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    089246c View commit details
    Browse the repository at this point in the history
  43. mediatek: mt7986: add anti-rollback support

    This patch adds anti-rollback v2 support for mt7986
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    77d57fe View commit details
    Browse the repository at this point in the history
  44. mediatek: mt7986: add FSEK support

    Add FSEK (FS encryption key) helper support for FS data decryption
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    dae39e7 View commit details
    Browse the repository at this point in the history
  45. mediatek: mt7986: add build option dependency rules

    Add build option dependency rules to make sure option changes take effect
    on .o files immediately to avoid cleaning current build.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    2ede294 View commit details
    Browse the repository at this point in the history
  46. mediatek: mt7981: add initial BL2/BL31 support

    Add initial BL2/BL31 support for mt7981.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    dd1ce80 View commit details
    Browse the repository at this point in the history
  47. mediatek: mt7981: add DDR initialization support

    Add DDR initialization support for mt7981
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    df15747 View commit details
    Browse the repository at this point in the history
  48. mediatek: mt7981: add eFuse read/write support

    Add eFuse prebuilt library and relative SIP services for BL31 to allow
    BL33 to manipulate the eFuse features (SecureBoot, Anti-Rollback, ...)
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    9e86e7f View commit details
    Browse the repository at this point in the history
  49. mediatek: mt7981: add anti-rollback support

    This patch adds anti-rollback v2 support for mt7981
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    2b37ce0 View commit details
    Browse the repository at this point in the history
  50. mediatek: mt7981: add build option dependency rules

    Add build option dependency rules to make sure option changes take effect
    on .o files immediately to avoid cleaning current build.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    32f65ae View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2023

  1. mediatek: mt7988: add initial BL2/BL31 support

    Add initial BL2/BL31 support for mt7988.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 19, 2023
    Configuration menu
    Copy the full SHA
    2584d32 View commit details
    Browse the repository at this point in the history
  2. mediatek: mt7988: add DDR initialization support

    Add DDR initialization support for mt7988
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 19, 2023
    Configuration menu
    Copy the full SHA
    b9067b0 View commit details
    Browse the repository at this point in the history
  3. mediatek: mt7988: add eFuse read/write support

    Add eFuse prebuilt library and relative SIP services for BL31 to allow
    BL33 to manipulate the eFuse features (SecureBoot, Anti-Rollback, ...)
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 19, 2023
    Configuration menu
    Copy the full SHA
    8cb0bc2 View commit details
    Browse the repository at this point in the history
  4. mediatek: mt7988: add anti-rollback support

    This patch adds anti-rollback v2 support for mt7988
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 19, 2023
    Configuration menu
    Copy the full SHA
    d97911c View commit details
    Browse the repository at this point in the history
  5. mediatek: mt7988: add build option dependency rules

    Add build option dependency rules to make sure option changes take effect
    on .o files immediately to avoid cleaning current build.
    
    Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
    hackpascal committed Jul 19, 2023
    Configuration menu
    Copy the full SHA
    abcbd12 View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2023

  1. mediatek: mt7986: only protect BL32 memory if needed

    Existing non-secure images for MT7986 exepect the reserved memory to
    span 0x43000000~0x4303ffff. Now, however, TZRAM2_SIZE added another
    0x10000 on top of that which renders existing images incompatible with
    the updated TF-A build.
    To maintain compatibility, only protect memory for BL32 if NEED_BL32
    is set and hence BL32 will be used at all.
    
    Signed-off-by: Daniel Golle <daniel@makrotopia.org>
    dangowrt committed Jul 23, 2023
    Configuration menu
    Copy the full SHA
    0594e61 View commit details
    Browse the repository at this point in the history