added utils

This commit is contained in:
adrcs 2025-01-29 11:17:14 -07:00 committed by GitHub
parent a9a3f739b4
commit a9b13d2c39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
85 changed files with 9213 additions and 0 deletions

31
rpi/stm32flash/INSTALL Normal file
View file

@ -0,0 +1,31 @@
Building stm32flash
A set of static makefiles is provided that should work on most operating
systems with a standard build environment, for instance GNU make and gcc.
1. Build executable
make
2. Install executable and manual page (optional)
make install
The install location base can be set with the PREFIX flag (default
is /usr/local), e.g. make install PREFIX=/opt
Using autotools
If using a git checkout, you must have autoconf installed and run:
autoreconf -i -v
to generate configure and various macro files. If using the release
tarballs this step is not necessary.
Then run ./configure to generate makefiles. Use ./configure --help to
list general options.
Finally run "make" and "make install" as described above.