summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2021-07-28 10:30:41 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2021-07-28 10:40:26 +0200
commit0ae3fe76dfde4d6d093e3ab6d8f3b5b0b641c8d9 (patch)
tree15c006fbbb826e81b666197d228fa85f2a52693c
parent6e2749a6f4f82ebd494af319890bf77501834ae4 (diff)
downloadptxdist-0ae3fe76dfde4d6d093e3ab6d8f3b5b0b641c8d9.tar.gz
ptxdist-0ae3fe76dfde4d6d093e3ab6d8f3b5b0b641c8d9.tar.xz
host-cramfs: remove obsolte package
It fails to build with any reasonably new compiler and it's not used by anything in PTXdist. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/host-cramfs.in11
-rw-r--r--rules/host-cramfs.make42
2 files changed, 0 insertions, 53 deletions
diff --git a/rules/host-cramfs.in b/rules/host-cramfs.in
deleted file mode 100644
index 01a997f53..000000000
--- a/rules/host-cramfs.in
+++ /dev/null
@@ -1,11 +0,0 @@
-## SECTION=hosttools_noprompt
-
-config HOST_CRAMFS
- tristate
- select HOST_ZLIB
- default y if ALLYES
- help
- This package contains tools that let you construct a CramFs
- (Compressed ROM File System) image from the contents of a
- given directory, as well as checking a constructed CramFs
- image and extracting its contents.
diff --git a/rules/host-cramfs.make b/rules/host-cramfs.make
deleted file mode 100644
index 4ad12a533..000000000
--- a/rules/host-cramfs.make
+++ /dev/null
@@ -1,42 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2007 by Robert Schwebel
-# (C) 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-HOST_PACKAGES-$(PTXCONF_HOST_CRAMFS) += host-cramfs
-
-#
-# Paths and names
-#
-HOST_CRAMFS_VERSION := 1.1
-HOST_CRAMFS_MD5 := d3912b9f7bf745fbfea68f6a9b9de30f
-HOST_CRAMFS := cramfs-$(HOST_CRAMFS_VERSION)
-HOST_CRAMFS_SUFFIX := tar.gz
-HOST_CRAMFS_URL := $(call ptx/mirror, SF, cramfs/$(HOST_CRAMFS).$(HOST_CRAMFS_SUFFIX))
-HOST_CRAMFS_SOURCE := $(SRCDIR)/$(HOST_CRAMFS).$(HOST_CRAMFS_SUFFIX)
-HOST_CRAMFS_DIR := $(HOST_BUILDDIR)/$(HOST_CRAMFS)
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-HOST_CRAMFS_CONF_TOOL := NO
-
-# ----------------------------------------------------------------------------
-# Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/host-cramfs.install:
- @$(call targetinfo)
- cp $(HOST_CRAMFS_DIR)/mkcramfs $(PTXDIST_SYSROOT_HOST)/bin
- cp $(HOST_CRAMFS_DIR)/cramfsck $(PTXDIST_SYSROOT_HOST)/bin
- @$(call touch)
-
-# vim: syntax=make