summaryrefslogtreecommitdiffstats
path: root/configs/platform-v7a/rules
diff options
context:
space:
mode:
authorAlexander Dahl <ada@thorsis.com>2018-10-18 12:38:38 +0200
committerRobert Schwebel <r.schwebel@pengutronix.de>2018-10-23 08:21:44 +0200
commit7bd4e5b1abbce48574553939a381da839b0b4f73 (patch)
treef9089d6508f5f0975b986c4d8cd81e8a82f19d74 /configs/platform-v7a/rules
parent91426871cc379c9eb337b1a369b5d26b6ab717b0 (diff)
downloadDistroKit-7bd4e5b1abbce48574553939a381da839b0b4f73.tar.gz
DistroKit-7bd4e5b1abbce48574553939a381da839b0b4f73.tar.xz
platform: v7a: Remove no longer needed make rule
That one was used before renaming the platform to v7a, and later reintroducing support for Raspberry Pi 2. The package is not activated anymore and so there's no need to overwrite the rule from ptxdist itself anymore. Signed-off-by: Alexander Dahl <ada@thorsis.com>
Diffstat (limited to 'configs/platform-v7a/rules')
-rw-r--r--configs/platform-v7a/rules/image-boot-vfat.make49
1 files changed, 0 insertions, 49 deletions
diff --git a/configs/platform-v7a/rules/image-boot-vfat.make b/configs/platform-v7a/rules/image-boot-vfat.make
deleted file mode 100644
index 185c2b7..0000000
--- a/configs/platform-v7a/rules/image-boot-vfat.make
+++ /dev/null
@@ -1,49 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2012 by Michael Olbrich <m.olbrich@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_BOOT_VFAT) += image-boot-vfat
-
-#
-# Paths and names
-#
-IMAGE_BOOT_VFAT := image-boot-vfat
-IMAGE_BOOT_VFAT_DIR := $(BUILDDIR)/$(IMAGE_BOOT_VFAT)
-IMAGE_BOOT_VFAT_IMAGE := $(IMAGEDIR)/boot.vfat
-IMAGE_BOOT_VFAT_DATA := \
- $(wildcard $(PTXDIST_PLATFORMCONFIGDIR)/rpi-firmware/*.bin) \
- $(wildcard $(PTXDIST_PLATFORMCONFIGDIR)/rpi-firmware/*.elf) \
- $(wildcard $(PTXDIST_PLATFORMCONFIGDIR)/rpi-firmware/*.dat) \
- $(wildcard $(PTXDIST_PLATFORMCONFIGDIR)/rpi-firmware/config.txt)
-IMAGE_BOOT_VFAT_CONFIG := boot-vfat.config
-
-# ----------------------------------------------------------------------------
-# Image
-# ----------------------------------------------------------------------------
-
-define squote_and_comma
-$(subst $(ptx/def/space),$(comma) ,$(addsuffix $(ptx/def/squote),$(addprefix $(ptx/def/squote),$(1))))
-endef
-
-
-IMAGE_BOOT_VFAT_ENV := \
- FIRMWARE_RPI2="$(call squote_and_comma,$(IMAGE_BOOT_VFAT_DATA))"
-
-$(IMAGE_BOOT_VFAT_IMAGE):
- @$(call targetinfo)
- @GPU_MEM=$(PTXCONF_IMAGE_BOOT_VFAT_GPU_MEM) \
- ptxd_replace_magic "$(PTXDIST_PLATFORMCONFIGDIR)/rpi-firmware/config.txt" > \
- "$(PTXDIST_TEMPDIR)/config.txt"
- @$(call image/genimage, IMAGE_BOOT_VFAT)
- @$(call finish)
-
-# vim: syntax=make