https://github.com/9elements/embedded_reflash
Very small tool to reflash embedded Linux systems in-place.
https://github.com/9elements/embedded_reflash
Last synced: 4 months ago
JSON representation
Very small tool to reflash embedded Linux systems in-place.
- Host: GitHub
- URL: https://github.com/9elements/embedded_reflash
- Owner: 9elements
- License: bsd-3-clause
- Created: 2024-04-26T10:18:50.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-26T10:42:27.000Z (about 1 year ago)
- Last Synced: 2025-02-16T19:09:47.323Z (4 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Embedded Reflash Tool
Small utility built primarily to replace AMI MegaRAC with OpenBMC in the field.
To build for Aspeed type SoCs:Pre Go 1.22
```bash
GOARCH=arm GOARM=5 go build -ldflags="-s -w"
```Go 1.22 or later
```bash
GOARCH=arm GOARM=6,softfloat go build -ldflags="-s -w" # AST2500
GOARCH=arm GOARM=7,softfloat go build -ldflags="-s -w" # AST2600
```