summaryrefslogtreecommitdiff
path: root/util/getpir/Makefile
diff options
context:
space:
mode:
authorMohamed Mansoor <mansoor@iwavesystems.com>2009-09-26 16:18:22 +0000
committerStefan Reinauer <stepan@openbios.org>2009-09-26 16:18:22 +0000
commitbde683ce9fcc346096a07222047fa5a16aa74243 (patch)
tree41fcbdcd15c911a4cb41e460f534defd4880034f /util/getpir/Makefile
parent5db685fedfe7f291719c90088bbf7618b31f3da6 (diff)
downloadcoreboot-bde683ce9fcc346096a07222047fa5a16aa74243.tar.xz
This patch changes following in getpir application.
1 - Moved the check sum validation to probe_table function. 2 - Proper handling of resources allocated. 3 - Signature check is done in 16 byte boundaries. 4 - irq_tables.c file is created only if a valid PIRQ table is found. 5 – Makefile and README file are modified accordingly. Signed-off-by: Mohamed Mansoor <mansoor@iwavesystems.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4680 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/getpir/Makefile')
-rw-r--r--util/getpir/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/util/getpir/Makefile b/util/getpir/Makefile
index 13bf47efc9..94270f54a6 100644
--- a/util/getpir/Makefile
+++ b/util/getpir/Makefile
@@ -5,8 +5,7 @@
CC=gcc
CFLAGS=-O2 -D_GNU_SOURCE -DGETPIR -Wall
-all: getpir checkpir
- ./checkpir
+all: getpir
getpir: getpir.o checksum.o code_gen.o
$(CC) $(CFLAGS) -o getpir $^