Historical package that has since been renamed to barebox.
Fixes: 6815a8a1789ed3b3437436e0f859 ("[barebox] add new packet barebox")
Signed-off-by: Roland Hieber <[email protected]>
---
platforms/u-boot-v2.in | 32 -------------
rules/u-boot-v2.make | 105 -----------------------------------------
2 files changed, 137 deletions(-)
delete mode 100644 platforms/u-boot-v2.in
delete mode 100644 rules/u-boot-v2.make
diff --git a/platforms/u-boot-v2.in b/platforms/u-boot-v2.in
deleted file mode 100644
index 5ceffdf54..000000000
--- a/platforms/u-boot-v2.in
+++ /dev/null
@@ -1,32 +0,0 @@
-## SECTION=bootloader
-
-menuconfig U_BOOT_V2
- select BOOTLOADER
- prompt "U-Boot V2 "
- bool
-
-config U_BOOT_V2_VERSION
- prompt "u-boot-v2 version"
- depends on U_BOOT_V2
- string
- default "2.0.0"
-
-config U_BOOT_V2_MD5
- prompt "u-boot-v2 source md5"
- depends on U_BOOT_V2
- string
-
-config U_BOOT_V2_CONFIG
- prompt "config file"
- depends on U_BOOT_V2
- string
- default "u-boot-v2.config"
- help
- this entry specifies the .config file used to compile your U-Boot
-
-config U_BOOT_V2_ARCH_STRING
- depends on U_BOOT_V2
- string
- default "arm" if ARCH_ARM
- default "blackfin" if ARCH_BLACKFIN
- default "ppc" if ARCH_PPC
diff --git a/rules/u-boot-v2.make b/rules/u-boot-v2.make
deleted file mode 100644
index f86eb7dfa..000000000
--- a/rules/u-boot-v2.make
+++ /dev/null
@@ -1,105 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2007 by Sascha Hauer
-# 2008, 2009 by Marc Kleine-Budde
-#
-# 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
-#
-PACKAGES-$(PTXCONF_U_BOOT_V2) += u-boot-v2
-
-#
-# Paths and names
-#
-U_BOOT_V2_VERSION := $(call remove_quotes,$(PTXCONF_U_BOOT_V2_VERSION))
-U_BOOT_V2_MD5 := $(call remove_quotes,$(PTXCONF_U_BOOT_V2_MD5))
-U_BOOT_V2 := u-boot-$(U_BOOT_V2_VERSION)
-U_BOOT_V2_SUFFIX := tar.gz
-U_BOOT_V2_URL :=
http://www.pengutronix.de/software/u-boot/download/$(U_BOOT_V2).$(U_BOOT_V2_SUFFIX)
-U_BOOT_V2_SOURCE := $(SRCDIR)/$(U_BOOT_V2).$(U_BOOT_V2_SUFFIX)
-U_BOOT_V2_DIR := $(BUILDDIR)/$(U_BOOT_V2)
-
-U_BOOT_V2_CONFIG := $(call remove_quotes,
$(PTXDIST_PLATFORMCONFIGDIR)/$(PTXCONF_U_BOOT_V2_CONFIG))
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-U_BOOT_V2_PATH := PATH=$(CROSS_PATH)
-U_BOOT_V2_ENV := KCONFIG_NOTIMESTAMP=1
-U_BOOT_V2_MAKEVARS := \
- HOSTCC=$(HOSTCC) \
- ARCH=$(PTXCONF_U_BOOT_V2_ARCH_STRING) \
- CROSS_COMPILE=$(BOOTLOADER_CROSS_COMPILE)
-
-ifdef PTXCONF_U_BOOT_V2
-$(U_BOOT_V2_CONFIG):
- @echo
- @echo
"*****************************************************************************"
- @echo "**** Please generate a u-boot config with 'ptxdist menuconfig
u-boot-v2' ****"
- @echo
"*****************************************************************************"
- @echo
- @echo
- @exit 1
-endif
-
-$(STATEDIR)/u-boot-v2.prepare: $(U_BOOT_V2_CONFIG)
- @$(call targetinfo)
-
- @echo "Using U-Boot-v2 config file: $(U_BOOT_V2_CONFIG)"
- @install -m 644 $(U_BOOT_V2_CONFIG) $(U_BOOT_V2_DIR)/.config
-
- @$(call ptx/oldconfig, U_BOOT_V2)
-
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/u-boot-v2.install:
- @$(call targetinfo)
- @install -D -m755 $(U_BOOT_V2_DIR)/scripts/ubootenv
$(PTXCONF_SYSROOT_HOST)/bin/ubootenv
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/u-boot-v2.targetinstall:
- @$(call targetinfo)
- @install -D -m644 $(U_BOOT_V2_DIR)/uboot.bin $(IMAGEDIR)/u-boot-v2-image
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Clean
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/u-boot-v2.clean:
- @$(call targetinfo)
- @$(call clean_pkg, U_BOOT_V2)
- rm -rf $(IMAGEDIR)/u-boot-v2-image
-
-# ----------------------------------------------------------------------------
-# oldconfig / menuconfig
-# ----------------------------------------------------------------------------
-
-u-boot-v2_oldconfig u-boot-v2_menuconfig: $(STATEDIR)/u-boot-v2.extract
- @if test -e $(U_BOOT_V2_CONFIG); then \
- cp $(U_BOOT_V2_CONFIG) $(U_BOOT_V2_DIR)/.config; \
- fi
- cd $(U_BOOT_V2_DIR) && \
- $(U_BOOT_V2_PATH) $(U_BOOT_V2_ENV) $(MAKE)
$(U_BOOT_V2_MAKEVARS) $(subst u-boot-v2_,,$@)
- @if cmp -s $(U_BOOT_V2_DIR)/.config $(U_BOOT_V2_CONFIG); then \
- echo "U-Boot-v2 configuration unchanged"; \
- else \
- cp $(U_BOOT_V2_DIR)/.config $(U_BOOT_V2_CONFIG); \
- fi
-
-# vim: syntax=make
--
2.17.1
_______________________________________________
ptxdist mailing list
[email protected]