summaryrefslogtreecommitdiff
path: root/util/broadcom/secimage/Makefile
diff options
context:
space:
mode:
authorPhilipp Deppenwiese <zaolin.daisuki@gmail.com>2018-11-28 18:50:11 +0100
committerPhilipp Deppenwiese <zaolin.daisuki@gmail.com>2018-11-30 10:26:37 +0000
commitaea00f496b1cf41fd5b568b4c6079c2ab76eafd4 (patch)
treea42e9c303964a884ae0ffb8218d2b3cf8696d212 /util/broadcom/secimage/Makefile
parent48418757cb48a08d0e0d4db25a950ba74b77b21e (diff)
downloadcoreboot-aea00f496b1cf41fd5b568b4c6079c2ab76eafd4.tar.xz
broadcom: Remove SoC and board support
The reason for this code cleanup is the legacy Google Purin board which isn't available anymore and AFAIK never made it into the stores. * Remove broadcom cygnus SoC support * Remove /util/broadcom tool * Remove Google Purin mainboard * Remove MAINTAINERS entries Change-Id: I148dd7eb0192d396cb69bc26c4062f88a764771a Signed-off-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com> Reviewed-on: https://review.coreboot.org/c/29905 Reviewed-by: Julius Werner <jwerner@chromium.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/broadcom/secimage/Makefile')
-rw-r--r--util/broadcom/secimage/Makefile42
1 files changed, 0 insertions, 42 deletions
diff --git a/util/broadcom/secimage/Makefile b/util/broadcom/secimage/Makefile
deleted file mode 100644
index ab8a1a4706..0000000000
--- a/util/broadcom/secimage/Makefile
+++ /dev/null
@@ -1,42 +0,0 @@
-#
-# Copyright (C) 2015 Broadcom Corporation
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation version 2.
-#
-# This program is distributed "as is" WITHOUT ANY WARRANTY of any
-# kind, whether express or implied; without even the implied warranty
-# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-
-TARGET = secimage
-OBJS = crypto.o io.o misc.o sbi.o
-CC = gcc
-RM = rm
-CFLAGS += -Wall -g
-
-LIBS = -lssl -lcrypto -lz
-
-%.o : %.c
- $(CC) -c $(CFLAGS) -o $@ $<
-
-all: $(TARGET)
-
-$(TARGET): $(OBJS)
- $(CC) -o $@ $(OBJS) $(LIBS)
-
-install:
- install -d $(DESTDIR)/usr/bin
- install $(TARGET) $(DESTDIR)/usr/bin
-
-.PHONY: test
-test: $(TARGET)
- @find test -maxdepth 1 -type f -executable \
- | xargs -I "{}" sh -c "{} $$(realpath $<)"
-
-.PHONY: clean distclean
-
-clean distclean:
- $(RM) -f $(TARGET) $(OBJS)