mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Roland Hieber <r.hieber@pengutronix.de>
To: ptxdist@pengutronix.de
Cc: Roland Hieber <r.hieber@pengutronix.de>
Subject: [ptxdist] [PATCH 02/12] u-boot-v2: remove in favor of barebox
Date: Wed, 30 May 2018 18:39:01 +0200	[thread overview]
Message-ID: <20180530163911.30456-2-r.hieber@pengutronix.de> (raw)
In-Reply-To: <20180530163911.30456-1-r.hieber@pengutronix.de>

Historical package that has since been renamed to barebox.

Fixes: 6815a8a1789ed3b3437436e0f859 ("[barebox] add new packet barebox")
Signed-off-by: Roland Hieber <r.hieber@pengutronix.de>
---
 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
ptxdist@pengutronix.de

  reply	other threads:[~2018-05-30 16:39 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-30 16:39 [ptxdist] [PATCH 01/12] sun-java6-jre: move to staging Roland Hieber
2018-05-30 16:39 ` Roland Hieber [this message]
2018-05-30 16:39 ` [ptxdist] [PATCH 03/12] ddrescue: version bump 1.15 -> 1.23 Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 04/12] ed: version bump 1.7 -> 1.14.2 Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 05/12] ed: resurrect from staging after version bump Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 06/12] file: version bump 5.32 -> 5.33 Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 07/12] tar: version bump 1.26 -> 1.30 Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 08/12] vim: version bump 7.3 -> 8.1 Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 09/12] joe: version bump 3.5 -> 4.6 Roland Hieber
2018-05-31  9:27   ` Michael Olbrich
2018-05-30 16:39 ` [ptxdist] [PATCH 10/12] proftpd: version bump 1.3.5 -> 1.3.6 Roland Hieber
2018-05-31  9:28   ` Michael Olbrich
2018-05-30 16:39 ` [ptxdist] [PATCH 11/12] stunnel: version bump 5.45 -> 5.46 Roland Hieber
2018-05-30 16:39 ` [ptxdist] [PATCH 12/12] c-ares: version bump 1.10.0 -> 1.14.0 Roland Hieber

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180530163911.30456-2-r.hieber@pengutronix.de \
    --to=r.hieber@pengutronix.de \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox