This patch adds Jordan's romtool support for v2.

There are a few changes. The 20K bootblock size restriction is gone. 

ROMFS has been tested and works on v2 with qemu and kontron. Once this 
patch is in, those patches will follow. 

Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4032 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Ronald G. Minnich
2009-03-31 11:57:36 +00:00
committed by Patrick Georgi
parent 0f0f9bb9a2
commit 5d01ec0f80
71 changed files with 11835 additions and 0 deletions

27
util/romtool/Makefile Normal file
View File

@@ -0,0 +1,27 @@
COMMANDS=create.o bootblock.o delete.o add.o print.o resize.o
OBJ= $(COMMANDS) romtool.o util.o fs.o
H=romtool.h
DESTDIR=/usr/local/bin
all: romtool tools/rom-mkpayload tools/rom-mkstage
romtool: $(OBJ)
$(CC) -o $@ $(OBJ)
tools/rom-mkpayload tools/rom-mkstage:
make -C tools/ $(patsubst tools/%, %, $@)
%.o: %.c
$(CC) -g -Wall -Werror -c -o $@ $<
install: romtool tools/rom-mkpayload tools/rom-mkstage
@ install -d $(DESTDIR)
@ install -m 0755 romtool $(DESTDIR)/romtool
@ install -m 0755 tools/rom-mkstage $(DESTDIR)/rom-mkstage
@ install -m 0755 tools/rom-mkpayload $(DESTDIR)/rom-mkpayload
tags:
ctags *.[ch] */*.[ch]
clean:
make -C tools/ clean
rm -f *.o romtool