summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--platforms/image_tgz.in18
-rw-r--r--rules/post/image_tgz.make29
2 files changed, 0 insertions, 47 deletions
diff --git a/platforms/image_tgz.in b/platforms/image_tgz.in
deleted file mode 100644
index 8cda6f62b..000000000
--- a/platforms/image_tgz.in
+++ /dev/null
@@ -1,18 +0,0 @@
-## SECTION=image
-
-menuconfig IMAGE_TGZ
- bool
- prompt "Generate images/root.tgz "
- help
- Build a tar.gz archive of the root filesystem, containing the
- right owner/group and access permissions.
-
-if IMAGE_TGZ
-config IMAGE_TGZ_LABEL
- string
- prompt "label"
- default "${PTXCONF_PROJECT_VENDOR}-${PTXCONF_PROJECT}${PTXCONF_PROJECT_VERSION}"
- help
- This string gets expanded to form the label. An empty string produces no label.
-
-endif
diff --git a/rules/post/image_tgz.make b/rules/post/image_tgz.make
deleted file mode 100644
index bace4daec..000000000
--- a/rules/post/image_tgz.make
+++ /dev/null
@@ -1,29 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2003-2010 by the ptxdist project <ptxdist@pengutronix.de>
-#
-# See CREDITS for details about who has contributed to this project.
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-SEL_ROOTFS-$(PTXCONF_IMAGE_TGZ) += $(IMAGEDIR)/root.tgz
-
-ifdef PTXCONF_IMAGE_TGZ
-IMAGE_TGZ_LABEL := $(call remove_quotes,$(PTXCONF_IMAGE_TGZ_LABEL))
-ifneq ($(IMAGE_TGZ_LABEL),)
-IMAGE_TGZ_LABEL_ARGS=--label '$(IMAGE_TGZ_LABEL)'
-endif
-
-$(IMAGEDIR)/root.tgz: $(STATEDIR)/image_working_dir
- @echo -n 'Creating root.tgz from working dir$(if $(IMAGE_TGZ_LABEL), with label "$(IMAGE_TGZ_LABEL)",)... '
- @cd $(image/work_dir); \
- (awk $(DOPERMISSIONS) $(image/permissions) && \
- ( echo -n "tar ${IMAGE_TGZ_LABEL_ARGS} -zcf "; \
- echo -n "$@ ." ) \
- ) | $(FAKEROOT) --
- @echo "done."
-endif
-
-# vim: syntax=make