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
| #!/usr/bin/env python3 | |
| # blkenvflash_mac_pwrite.py — fast Luckfox TF writer (macOS), uses pwrite() | |
| # fork of BLKENVFLASH by Rene K. Mueller <spiritdude@gmail.com> | |
| # License: MIT | |
| # | |
| # History: | |
| # 2024/06/18: after the hint by A. Schuetz https://github.com/LuckfoxTECH/luckfox-pico/issues/129 was able to make script functional | |
| # 2024/06/10: start |
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 | |
| echo "===================================================================" | |
| echo | |
| echo " My m68000 Development Setup " | |
| echo " You may be prompted for root credentials to complete the install. " | |
| echo | |
| echo " Toolchain is GNU so it expects you to write AT&T style assembly. " | |
| echo " If you want the Windows (MSYS2) script, it's here: " | |
| echo " https://gist.github.com/WillSams/f592f9d494b51119945440f7e91079b0 " |