1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-01 14:11:15 +02:00

Trying to make this general purpose user-land flash burner

Corresponding to coreboot v1 svn r489.
This commit is contained in:
Ronald G. Minnich
2002-01-29 18:21:41 +00:00
commit 5e5f75e559
11 changed files with 1016 additions and 0 deletions

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
OBJS = jedec.o sst28sf040.o am29f040b.o mx29f002.c
CC = gcc -O2
all: ${OBJS}
${CC} -o flash_rom flash_rom.c ${OBJS}
${CC} -o flash_on flash_on.c
${CC} -o acpi_reset acpi_reset.c
${CC} -o acpi_shutdown acpi_shutdown.c
clean:
rm -f flash_rom flash_on acpi_reset acpi_shutdown *.o *~