Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [PATCH 0/3] ezx: move some _svn.bb recipes to _git.bb
@ 2010-06-18 19:30 Antonio Ospite
  2010-06-18 19:30 ` [PATCH 1/3] ezx: replace ezx-gen-blob_svn.bb with ezx-gen-blob_git.bb Antonio Ospite
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Antonio Ospite @ 2010-06-18 19:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: openezx-devel

gen-blob and boot_usb (now moto-boot-usb) are now managed with git, this
series replaces the svn recipes, all future development will be in the git
repositories.


Antonio Ospite (3):
  ezx: replace ezx-gen-blob_svn.bb with ezx-gen-blob_git.bb
  ezx: rename ezx-boot-usb recipe to moto-boot-usb, use git
  ezx: rename references to ezx-boot-usb into moto-boot-usb

 conf/distro/include/preferred-om-2008-versions.inc |    2 +-
 conf/machine/include/motorola-ezx-base.inc         |    2 +-
 recipes/ezx/ezx-boot-usb-native_svn.bb             |   29 --------------
 recipes/ezx/ezx-gen-blob_git.bb                    |   41 ++++++++++++++++++++
 recipes/ezx/ezx-gen-blob_svn.bb                    |   41 --------------------
 recipes/ezx/moto-boot-usb-native_git.bb            |   27 +++++++++++++
 6 files changed, 70 insertions(+), 72 deletions(-)
 delete mode 100644 recipes/ezx/ezx-boot-usb-native_svn.bb
 create mode 100644 recipes/ezx/ezx-gen-blob_git.bb
 delete mode 100644 recipes/ezx/ezx-gen-blob_svn.bb
 create mode 100644 recipes/ezx/moto-boot-usb-native_git.bb


-- 
Antonio Ospite
http://ao2.it

PGP public key ID: 0x4553B001

A: Because it messes up the order in which people normally read text.
   See http://en.wikipedia.org/wiki/Posting_style
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?



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

* [PATCH 1/3] ezx: replace ezx-gen-blob_svn.bb with ezx-gen-blob_git.bb
  2010-06-18 19:30 [PATCH 0/3] ezx: move some _svn.bb recipes to _git.bb Antonio Ospite
@ 2010-06-18 19:30 ` Antonio Ospite
  2010-06-18 19:30 ` [PATCH 2/3] ezx: rename ezx-boot-usb recipe to moto-boot-usb, use git Antonio Ospite
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Antonio Ospite @ 2010-06-18 19:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: openezx-devel

gen-blob is now at git.openezx.org, replace the old svn recipe with one
which fetches the code from the git repository.

Signed-off-by: Antonio Ospite <ospite@studenti.unina.it>
---
 recipes/ezx/ezx-gen-blob_git.bb |   41 +++++++++++++++++++++++++++++++++++++++
 recipes/ezx/ezx-gen-blob_svn.bb |   41 ---------------------------------------
 2 files changed, 41 insertions(+), 41 deletions(-)
 create mode 100644 recipes/ezx/ezx-gen-blob_git.bb
 delete mode 100644 recipes/ezx/ezx-gen-blob_svn.bb

diff --git a/recipes/ezx/ezx-gen-blob_git.bb b/recipes/ezx/ezx-gen-blob_git.bb
new file mode 100644
index 0000000..5ebcad1
--- /dev/null
+++ b/recipes/ezx/ezx-gen-blob_git.bb
@@ -0,0 +1,41 @@
+DESCRIPTION = "Generic Blob [Bootloader] for the Motorola EZX platform"
+SECTION = "bootloaders"
+AUTHOR = "OpenEZX Team"
+HOMEPAGE = "http://people.openezx.org/wyrm/gen-blob"
+LICENSE = "GPL"
+PROVIDES = "virtual/bootloader"
+DEPENDS = "virtual/kernel"
+SRCREV = "48d1cf4dbc8228b982ff40c36922769f70347da1"
+PV = "1.0.0+gitr${SRCPV}"
+PR = "r0"
+PE = "1"
+
+SRC_URI = "\
+  git://git.openezx.org/gen-blob.git;protocol=git;branch=master \
+  file://remove-bogus-sed.patch \
+"
+S = "${WORKDIR}/git"
+
+inherit autotools
+
+EXTRA_OECONF = "\
+  --with-board=lubbock \
+  --with-cpu=pxa262 \
+  --with-linux-prefix=${STAGING_KERNEL_DIR} \
+  --enable-usb \
+"
+
+do_configure() {
+	gnu-configize
+	oe_runconf
+}
+
+do_deploy() {
+	install -d ${DEPLOY_DIR_IMAGE}
+	install -m 0644 src/blob/blob-a780  ${DEPLOY_DIR_IMAGE}/gen-blob-for-1stgen.${SRCDATE}
+	install -m 0644 src/blob/blob-a1200 ${DEPLOY_DIR_IMAGE}/gen-blob-for-2ndgen.${SRCDATE}
+}
+
+addtask deploy before do_build after do_compile
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
diff --git a/recipes/ezx/ezx-gen-blob_svn.bb b/recipes/ezx/ezx-gen-blob_svn.bb
deleted file mode 100644
index 39cec89..0000000
--- a/recipes/ezx/ezx-gen-blob_svn.bb
+++ /dev/null
@@ -1,41 +0,0 @@
-DESCRIPTION = "Generic Blob [Bootloader] for the Motorola EZX platform"
-SECTION = "bootloaders"
-AUTHOR = "OpenEZX Team"
-HOMEPAGE = "http://people.openezx.org/wyrm/gen-blob"
-LICENSE = "GPL"
-PROVIDES = "virtual/bootloader"
-DEPENDS = "virtual/kernel"
-SRCREV = "2519"
-PV = "1.0.0+svnr${SRCPV}"
-PE = "1"
-PR = "r2"
-
-SRC_URI = "\
-  svn://svn.openezx.org/trunk/src/blob/;module=gen-blob;proto=http \
-  file://remove-bogus-sed.patch \
-"
-S = "${WORKDIR}/gen-blob"
-
-inherit autotools
-
-EXTRA_OECONF = "\
-  --with-board=lubbock \
-  --with-cpu=pxa262 \
-  --with-linux-prefix=${STAGING_KERNEL_DIR} \
-  --enable-usb \
-"
-
-do_configure() {
-	gnu-configize
-	oe_runconf
-}
-
-do_deploy() {
-	install -d ${DEPLOY_DIR_IMAGE}
-	install -m 0644 src/blob/blob-a780  ${DEPLOY_DIR_IMAGE}/gen-blob-for-1stgen.${SRCDATE}
-	install -m 0644 src/blob/blob-a1200 ${DEPLOY_DIR_IMAGE}/gen-blob-for-2ndgen.${SRCDATE}
-}
-
-addtask deploy before do_build after do_compile
-
-PACKAGE_ARCH = "${MACHINE_ARCH}"
-- 
1.7.1




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

* [PATCH 2/3] ezx: rename ezx-boot-usb recipe to moto-boot-usb, use git
  2010-06-18 19:30 [PATCH 0/3] ezx: move some _svn.bb recipes to _git.bb Antonio Ospite
  2010-06-18 19:30 ` [PATCH 1/3] ezx: replace ezx-gen-blob_svn.bb with ezx-gen-blob_git.bb Antonio Ospite
@ 2010-06-18 19:30 ` Antonio Ospite
  2010-06-18 19:30 ` [PATCH 3/3] ezx: rename references to ezx-boot-usb into moto-boot-usb Antonio Ospite
  2010-06-19  7:50 ` [PATCH 0/3] ezx: move some _svn.bb recipes to _git.bb Michael 'Mickey' Lauer
  3 siblings, 0 replies; 5+ messages in thread
From: Antonio Ospite @ 2010-06-18 19:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: openezx-devel

boot_usb is now named moto-boot-usb and is hosted on git.openezx.org, move
recipes/ezx/ezx-boot-usb-native_svn.bb to
recipes/ezx/moto-boot-usb-native_git.bb and fix it.

Signed-off-by: Antonio Ospite <ospite@studenti.unina.it>
---
 recipes/ezx/ezx-boot-usb-native_svn.bb  |   29 -----------------------------
 recipes/ezx/moto-boot-usb-native_git.bb |   27 +++++++++++++++++++++++++++
 2 files changed, 27 insertions(+), 29 deletions(-)
 delete mode 100644 recipes/ezx/ezx-boot-usb-native_svn.bb
 create mode 100644 recipes/ezx/moto-boot-usb-native_git.bb

diff --git a/recipes/ezx/ezx-boot-usb-native_svn.bb b/recipes/ezx/ezx-boot-usb-native_svn.bb
deleted file mode 100644
index 280de30..0000000
--- a/recipes/ezx/ezx-boot-usb-native_svn.bb
+++ /dev/null
@@ -1,29 +0,0 @@
-DESCRIPTION = "Boot a Motorola EZX device with a user supplied kernel"
-DEPENDS = "virtual/libusb0-native virtual/kernel"
-SECTION = "devel"
-AUTHOR = "Team OpenEZX <openezx-devel@lists.openezx.org>"
-LICENSE = "GPL"
-SRCREV = "2522"
-PV = "0.3.0+svnr${SRCPV}"
-
-SRC_URI = "svn://svn.openezx.org/trunk/src/host;module=boot_usb;proto=http" 
-S = "${WORKDIR}/boot_usb"
-
-EXTRA_OECONF := '--with-kernel-dir="${STAGING_DIR}/${MACHINE_ARCH}${TARGET_VENDOR}-${TARGET_OS}/kernel"'
-
-inherit autotools native
-
-do_deploy() {
-        install -d ${DEPLOY_DIR_TOOLS}
-        install -m 0755 src/boot_usb ${DEPLOY_DIR_TOOLS}/ezx-boot-usb-${PV}
-}
-
-do_stage() {
-	:
-}
-
-do_install() {
-	:
-}
-
-addtask deploy before do_build after do_compile
diff --git a/recipes/ezx/moto-boot-usb-native_git.bb b/recipes/ezx/moto-boot-usb-native_git.bb
new file mode 100644
index 0000000..e6fdaa1
--- /dev/null
+++ b/recipes/ezx/moto-boot-usb-native_git.bb
@@ -0,0 +1,27 @@
+DESCRIPTION = "Boot a Motorola EZX device with a user supplied kernel"
+DEPENDS = "virtual/libusb0-native virtual/kernel"
+SECTION = "devel"
+AUTHOR = "Team OpenEZX <openezx-devel@lists.openezx.org>"
+LICENSE = "GPL"
+SRCREV = "d7136c6c9fe9d62b8f3defccef5dca47258bef63"
+PV = "0.3.0+gitr${SRCPV}"
+PR = "r0"
+PE = "1"
+
+SRC_URI = "git://git.openezx.org/moto-boot-usb.git;protocol=git;branch=master"
+S = "${WORKDIR}/git"
+
+EXTRA_OECONF := '--with-kernel-dir="${STAGING_DIR}/${MACHINE_ARCH}${TARGET_VENDOR}-${TARGET_OS}/kernel"'
+
+inherit autotools native
+
+do_deploy() {
+        install -d ${DEPLOY_DIR_TOOLS}
+        install -m 0755 src/moto-boot-usb ${DEPLOY_DIR_TOOLS}/moto-boot-usb-${PV}
+}
+
+do_install() {
+  :
+}
+
+addtask deploy before do_build after do_compile
-- 
1.7.1




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

* [PATCH 3/3] ezx: rename references to ezx-boot-usb into moto-boot-usb
  2010-06-18 19:30 [PATCH 0/3] ezx: move some _svn.bb recipes to _git.bb Antonio Ospite
  2010-06-18 19:30 ` [PATCH 1/3] ezx: replace ezx-gen-blob_svn.bb with ezx-gen-blob_git.bb Antonio Ospite
  2010-06-18 19:30 ` [PATCH 2/3] ezx: rename ezx-boot-usb recipe to moto-boot-usb, use git Antonio Ospite
@ 2010-06-18 19:30 ` Antonio Ospite
  2010-06-19  7:50 ` [PATCH 0/3] ezx: move some _svn.bb recipes to _git.bb Michael 'Mickey' Lauer
  3 siblings, 0 replies; 5+ messages in thread
From: Antonio Ospite @ 2010-06-18 19:30 UTC (permalink / raw)
  To: openembedded-devel; +Cc: openezx-devel

Signed-off-by: Antonio Ospite <ospite@studenti.unina.it>
---
 conf/distro/include/preferred-om-2008-versions.inc |    2 +-
 conf/machine/include/motorola-ezx-base.inc         |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/conf/distro/include/preferred-om-2008-versions.inc b/conf/distro/include/preferred-om-2008-versions.inc
index 4ae673c..3020fe9 100644
--- a/conf/distro/include/preferred-om-2008-versions.inc
+++ b/conf/distro/include/preferred-om-2008-versions.inc
@@ -334,7 +334,6 @@ PREFERRED_VERSION_expat ?= "2.0.0"
 PREFERRED_VERSION_expat-native ?= "1.95.7"
 PREFERRED_VERSION_expect ?= "5.44.1"
 PREFERRED_VERSION_ez-ipupdate ?= "3.0.10"
-PREFERRED_VERSION_ezx-boot-usb-native ?= "0.1.0"
 PREFERRED_VERSION_ezx-gpiotool ?= "1877"
 PREFERRED_VERSION_faac ?= "1.24"
 PREFERRED_VERSION_faad2 ?= "2.0"
@@ -1275,6 +1274,7 @@ PREFERRED_VERSION_monotone-4 ?= "0.19"
 PREFERRED_VERSION_monotone-5 ?= "0.25.2"
 PREFERRED_VERSION_monotone-6 ?= "0.34"
 PREFERRED_VERSION_motion ?= "3.2.6"
+PREFERRED_VERSION_moto-boot-usb-native ?= "0.1.0"
 PREFERRED_VERSION_mousepad ?= "0.2.12"
 PREFERRED_VERSION_mp3blaster ?= "3.2.3"
 PREFERRED_VERSION_mpc ?= "0.12.1"
diff --git a/conf/machine/include/motorola-ezx-base.inc b/conf/machine/include/motorola-ezx-base.inc
index bb68ff4..fdd00ac 100644
--- a/conf/machine/include/motorola-ezx-base.inc
+++ b/conf/machine/include/motorola-ezx-base.inc
@@ -56,7 +56,7 @@ MKUBIFS_ARGS = "-m 1 -e 130944 -c 487"
 UBINIZE_ARGS = "-m 1 -p 128KiB "
 
 
-EXTRA_IMAGEDEPENDS += "ezx-boot-usb-native ezx-gen-blob"
+EXTRA_IMAGEDEPENDS += "moto-boot-usb-native ezx-gen-blob"
 
 IMAGE_INSTALL_append += "\
   kernel-module-ohci-hcd \
-- 
1.7.1




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

* Re: [PATCH 0/3] ezx: move some _svn.bb recipes to _git.bb
  2010-06-18 19:30 [PATCH 0/3] ezx: move some _svn.bb recipes to _git.bb Antonio Ospite
                   ` (2 preceding siblings ...)
  2010-06-18 19:30 ` [PATCH 3/3] ezx: rename references to ezx-boot-usb into moto-boot-usb Antonio Ospite
@ 2010-06-19  7:50 ` Michael 'Mickey' Lauer
  3 siblings, 0 replies; 5+ messages in thread
From: Michael 'Mickey' Lauer @ 2010-06-19  7:50 UTC (permalink / raw)
  To: openembedded-devel; +Cc: openezx-devel

Am Freitag, den 18.06.2010, 21:30 +0200 schrieb Antonio Ospite:
> gen-blob and boot_usb (now moto-boot-usb) are now managed with git, this
> series replaces the svn recipes, all future development will be in the git
> repositories.
> 
> 
> Antonio Ospite (3):
>   ezx: replace ezx-gen-blob_svn.bb with ezx-gen-blob_git.bb
>   ezx: rename ezx-boot-usb recipe to moto-boot-usb, use git
>   ezx: rename references to ezx-boot-usb into moto-boot-usb
> 
>  conf/distro/include/preferred-om-2008-versions.inc |    2 +-
>  conf/machine/include/motorola-ezx-base.inc         |    2 +-
>  recipes/ezx/ezx-boot-usb-native_svn.bb             |   29 --------------
>  recipes/ezx/ezx-gen-blob_git.bb                    |   41 ++++++++++++++++++++
>  recipes/ezx/ezx-gen-blob_svn.bb                    |   41 --------------------
>  recipes/ezx/moto-boot-usb-native_git.bb            |   27 +++++++++++++
>  6 files changed, 70 insertions(+), 72 deletions(-)
>  delete mode 100644 recipes/ezx/ezx-boot-usb-native_svn.bb
>  create mode 100644 recipes/ezx/ezx-gen-blob_git.bb
>  delete mode 100644 recipes/ezx/ezx-gen-blob_svn.bb
>  create mode 100644 recipes/ezx/moto-boot-usb-native_git.bb

Acked-by: Michael 'Mickey' Lauer <mlauer@vanille-media.de>

-- 
:M:




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

end of thread, other threads:[~2010-06-19  7:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-18 19:30 [PATCH 0/3] ezx: move some _svn.bb recipes to _git.bb Antonio Ospite
2010-06-18 19:30 ` [PATCH 1/3] ezx: replace ezx-gen-blob_svn.bb with ezx-gen-blob_git.bb Antonio Ospite
2010-06-18 19:30 ` [PATCH 2/3] ezx: rename ezx-boot-usb recipe to moto-boot-usb, use git Antonio Ospite
2010-06-18 19:30 ` [PATCH 3/3] ezx: rename references to ezx-boot-usb into moto-boot-usb Antonio Ospite
2010-06-19  7:50 ` [PATCH 0/3] ezx: move some _svn.bb recipes to _git.bb Michael 'Mickey' Lauer

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