Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1] x-load: remove recipe
@ 2014-05-06 14:02 Petter Mabäcker
  2014-05-06 14:03 ` [PATCH 1/1] " Petter Mabäcker
  0 siblings, 1 reply; 2+ messages in thread
From: Petter Mabäcker @ 2014-05-06 14:02 UTC (permalink / raw)
  To: openembedded-core

From: Petter Mabacker <petter@technux.se>

Proposal to remove x-load recipe, after discussion on oe mailing list.
The conclusion was that X-load shouldn't be used anymore, it has been superseded by u-boot SPL
for all cortex based TI SoCs. For legacy boards meta-ti layer has a maintained recipe of
x-load that should be used instead.


The following changes since commit 7b78c364b7de901f97cd8dbe56d5e02f545bf3d3:

  cleanup-workdir: Fix crosssdk reference after addition of PN (2014-05-05 09:05:42 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib petmab/remove_xload
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=petmab/remove_xload

Petter Mabacker (1):
  x-load: remove recipe

 .../x-load/x-load-git/beagleboard/name.patch       |   18 ---------
 meta/recipes-bsp/x-load/x-load.inc                 |   40 --------------------
 meta/recipes-bsp/x-load/x-load_git.bb              |   21 ----------
 3 files changed, 79 deletions(-)
 delete mode 100644 meta/recipes-bsp/x-load/x-load-git/beagleboard/name.patch
 delete mode 100644 meta/recipes-bsp/x-load/x-load.inc
 delete mode 100644 meta/recipes-bsp/x-load/x-load_git.bb

-- 
1.7.9.5



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH 1/1] x-load: remove recipe
  2014-05-06 14:02 [PATCH 0/1] x-load: remove recipe Petter Mabäcker
@ 2014-05-06 14:03 ` Petter Mabäcker
  0 siblings, 0 replies; 2+ messages in thread
From: Petter Mabäcker @ 2014-05-06 14:03 UTC (permalink / raw)
  To: openembedded-core

From: Petter Mabacker <petter@technux.se>

x-load has been superseded by u-boot SPL for all cortex based TI SoCs.
For legacy boards meta-ti layer (that contains a maintained recipe)
should be used instead.

Signed-off-by: Petter Mabacker <petter@technux.se>
---
 .../x-load/x-load-git/beagleboard/name.patch       |   18 ---------
 meta/recipes-bsp/x-load/x-load.inc                 |   40 --------------------
 meta/recipes-bsp/x-load/x-load_git.bb              |   21 ----------
 3 files changed, 79 deletions(-)
 delete mode 100644 meta/recipes-bsp/x-load/x-load-git/beagleboard/name.patch
 delete mode 100644 meta/recipes-bsp/x-load/x-load.inc
 delete mode 100644 meta/recipes-bsp/x-load/x-load_git.bb

diff --git a/meta/recipes-bsp/x-load/x-load-git/beagleboard/name.patch b/meta/recipes-bsp/x-load/x-load-git/beagleboard/name.patch
deleted file mode 100644
index 29c26a9..0000000
--- a/meta/recipes-bsp/x-load/x-load-git/beagleboard/name.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Upstream-Status: Inappropriate [configuration]
-
-Index: git/Makefile
-===================================================================
---- git.orig/Makefile
-+++ git/Makefile
-@@ -225,8 +225,9 @@ omap3evm_config :	unconfig
- overo_config :	unconfig
- 	@$(MKCONFIG) $(@:_config=) arm omap3 overo
- 
--omap3530beagle_config :    unconfig
--	@$(MKCONFIG) $(@:_config=) arm omap3 omap3530beagle
-+beagleboard_config :    unconfig
-+	@$(MKCONFIG) omap3530beagle arm omap3 omap3530beagle
-+	@./mkconfig omap3530beagle arm omap3 omap3530beagle
- 
- #########################################################################
- ## OMAP4 (ARM-CortexA9) Systems
diff --git a/meta/recipes-bsp/x-load/x-load.inc b/meta/recipes-bsp/x-load/x-load.inc
deleted file mode 100644
index 05d5ff0..0000000
--- a/meta/recipes-bsp/x-load/x-load.inc
+++ /dev/null
@@ -1,40 +0,0 @@
-SUMMARY = "First level bootloader for OMAP SoCs"
-SECTION = "bootloaders"
-LICENSE = "GPL"
-
-inherit deploy
-
-DEPENDS = ""
-
-PARALLEL_MAKE=""
-
-EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}"
-
-XLOAD_MACHINE ?= "${MACHINE}_config"
-
-XLOAD_IMAGE ?= "x-load-${MACHINE}-${PV}-${PR}.bin.ift"
-XLOAD_SYMLINK ?= "x-load-${MACHINE}.bin.ift"
-MLO_IMAGE ?= "MLO-${MACHINE}-${PV}-${PR}"
-MLO_SYMLINK ?= "MLO-${MACHINE}"
-
-do_compile () {
-	unset LDFLAGS
-	unset CFLAGS
-	unset CPPFLAGS
-	oe_runmake distclean
-	oe_runmake ${XLOAD_MACHINE}
-	oe_runmake ift
-}
-
-do_deploy () {
-	install ${S}/x-load.bin.ift ${DEPLOYDIR}/${XLOAD_IMAGE}
-	install ${S}/x-load.bin.ift ${DEPLOYDIR}/${MLO_IMAGE}
-
-	cd ${DEPLOYDIR}
-	rm -f ${XLOAD_SYMLINK}
-	ln -sf ${XLOAD_IMAGE} ${XLOAD_SYMLINK}
-	rm -f ${MLO_SYMLINK}
-	ln -sf ${MLO_IMAGE} ${MLO_SYMLINK}
-}
-addtask deploy before do_build after do_compile
-
diff --git a/meta/recipes-bsp/x-load/x-load_git.bb b/meta/recipes-bsp/x-load/x-load_git.bb
deleted file mode 100644
index 65dc85c..0000000
--- a/meta/recipes-bsp/x-load/x-load_git.bb
+++ /dev/null
@@ -1,21 +0,0 @@
-require x-load.inc
-
-FILESPATH = "${FILE_DIRNAME}/x-load-git/${MACHINE}:${FILE_DIRNAME}/x-load-git/"
-
-LICENSE = "GPLv2+"
-LIC_FILES_CHKSUM = "file://README;beginline=1;endline=25;md5=ef08d08cb99057bbb5b9d6d0c5a4396f"
-
-SRCREV = "9f94c6577e3a018b6b75cbe39f32bb331871f915"
-PV = "1.5.0+git${SRCPV}"
-
-#SRC_URI = "git://www.sakoman.net/git/x-load-omap3.git;branch=master"
-#SRC_URI = "git://gitorious.org/x-load-omap3/mainline.git;branch=master"
-SRC_URI = "git://gitorious.org/x-loader/x-loader.git;branch=master"
-
-SRC_URI_append_beagleboard = " file://name.patch "
-
-S = "${WORKDIR}/git"
-
-PACKAGE_ARCH = "${MACHINE_ARCH}"
-
-COMPATIBLE_MACHINE = "(beagleboard|omap3evm|overo)"
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-05-06 14:08 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-06 14:02 [PATCH 0/1] x-load: remove recipe Petter Mabäcker
2014-05-06 14:03 ` [PATCH 1/1] " Petter Mabäcker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox