From aea00f496b1cf41fd5b568b4c6079c2ab76eafd4 Mon Sep 17 00:00:00 2001 From: Philipp Deppenwiese Date: Wed, 28 Nov 2018 18:50:11 +0100 Subject: 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 Reviewed-on: https://review.coreboot.org/c/29905 Reviewed-by: Julius Werner Reviewed-by: Angel Pons Tested-by: build bot (Jenkins) --- util/broadcom/secimage/Makefile | 42 ----------------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 util/broadcom/secimage/Makefile (limited to 'util/broadcom/secimage/Makefile') 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) -- cgit v1.2.3