summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Grzeschik <m.grzeschik@pengutronix.de>2015-05-03 00:49:21 +0200
committerMichael Grzeschik <m.grzeschik@pengutronix.de>2015-05-03 00:49:21 +0200
commit46e840ea3a3b79ec7396c9116abb354147db11ec (patch)
tree50cb92697875d3153e00a25c8eae7390885f571c
parent5060df279e19938a7c8ca0ab4e2d5a1bcecd263f (diff)
downloadplatform-pengutronix-versatilepb-46e840ea3a3b79ec7396c9116abb354147db11ec.tar.gz
platform-pengutronix-versatilepb-46e840ea3a3b79ec7396c9116abb354147db11ec.tar.xz
sd.make: Remove now obsolete sd imageHEADmaster
This is now handled by ptxdist This reverts commit 1a415aa74a8e6789e0a6de0cd9bea8533cd340aa.
-rw-r--r--config/images/sd.config22
-rw-r--r--platforms/image-sd.in11
-rw-r--r--rules/image-sd.make34
3 files changed, 0 insertions, 67 deletions
diff --git a/config/images/sd.config b/config/images/sd.config
deleted file mode 100644
index e7e8cca..0000000
--- a/config/images/sd.config
+++ /dev/null
@@ -1,22 +0,0 @@
-image boot.vfat {
- vfat {
- file zImage { image = "linuximage" }
- }
- name = boot
- size = 128M
-}
-
-image @IMAGE@ {
- hdimage {
- align = 1M
- }
- size = 512M
- partition boot {
- image = boot.vfat
- partition-type = 0x0C
- }
- partition root {
- image = root.ext2
- partition-type = 0x83
- }
-}
diff --git a/platforms/image-sd.in b/platforms/image-sd.in
deleted file mode 100644
index ba8b129..0000000
--- a/platforms/image-sd.in
+++ /dev/null
@@ -1,11 +0,0 @@
-## SECTION=image2
-
-config IMAGE_SD
- tristate
- select IMAGE_VFAT_TOOLS
- select BAREBOX
- select HOST_GENIMAGE
- select IMAGE_ROOT_EXT
- prompt "Generate images/sd.hdimg"
- help
- FIXME
diff --git a/rules/image-sd.make b/rules/image-sd.make
deleted file mode 100644
index d81f42d..0000000
--- a/rules/image-sd.make
+++ /dev/null
@@ -1,34 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2012 by Jan Luebbe <jlu@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.
-#
-
-#
-# We provide this package
-#
-IMAGE_PACKAGES-$(PTXCONF_IMAGE_SD) += image-sd
-
-#
-# Paths and names
-#
-IMAGE_SD := image-sd
-IMAGE_SD_DIR := $(BUILDDIR)/$(IMAGE_SD)
-IMAGE_SD_IMAGE := $(IMAGEDIR)/sd.hdimg
-IMAGE_SD_FILES := $(IMAGEDIR)/root.tgz
-IMAGE_SD_CONFIG := sd.config
-
-# ----------------------------------------------------------------------------
-# Image
-# ----------------------------------------------------------------------------
-
-$(IMAGE_SD_IMAGE):
- @$(call targetinfo)
- @$(call image/genimage, IMAGE_SD)
- @$(call finish)
-
-# vim: syntax=make