* [2011.03-maintenance][PATCH 0/7] Pull request 20130302
@ 2013-03-02 11:55 Apelete Seketeli
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 1/7] udev: update SRC_URI of multiple recipes Apelete Seketeli
` (7 more replies)
0 siblings, 8 replies; 17+ messages in thread
From: Apelete Seketeli @ 2013-03-02 11:55 UTC (permalink / raw)
To: openembedded-devel
Hello,
The patches that come as a follow-up of this message fix issues found
while building muffinman-image on top of the 2011.03-maintenance
branch, and also add the capability to build a ubi image for the
ben-nanonote machine. This work is intended to be used as a basis for
porting the JLime distribution to oe-core.
These modifications were tested by successfully building
muffinman-image from scratch on a Debian Wheezy host.
Please pull into 2011.03-maintenance branch.
The following changes since commit ff679935b073a89c4e407d259bcc2eea9148fb91:
opkg-utils: bump SRCREV to latest (2012-10-26 11:11:59 +0200)
are available in the git repository at:
git://seketeli.net/~apelete/oe.git muffinman-image-fix
Apelete Seketeli (7):
udev: update SRC_URI of multiple recipes
git: update SRC_URI
pam: update SRC_URI
netbase: update SRC_URI
libcap: update SRC_URI
gnutls: update SRC_URI
jlime-2010.1: add capability to build ubi image for ben-nanonote
machine
conf/bitbake.conf | 2 +-
conf/distro/jlime-2010.1.conf | 3 ++-
conf/machine/ben-nanonote.conf | 12 ++++++++++++
recipes/git/git.inc | 2 +-
recipes/gnutls/gnutls.inc | 2 +-
recipes/libcap/libcap2_2.20.bb | 2 +-
recipes/netbase/netbase_4.21.bb | 2 +-
recipes/pam/libpam_1.1.1.bb | 2 +-
recipes/udev/udev_151.bb | 2 +-
recipes/udev/udev_162.bb | 2 +-
recipes/udev/udev_165.bb | 2 +-
11 files changed, 23 insertions(+), 10 deletions(-)
--
1.7.10.4
^ permalink raw reply [flat|nested] 17+ messages in thread
* [2011.03-maintenance][PATCH 1/7] udev: update SRC_URI of multiple recipes
2013-03-02 11:55 [2011.03-maintenance][PATCH 0/7] Pull request 20130302 Apelete Seketeli
@ 2013-03-02 11:57 ` Apelete Seketeli
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 2/7] git: update SRC_URI Apelete Seketeli
` (6 subsequent siblings)
7 siblings, 0 replies; 17+ messages in thread
From: Apelete Seketeli @ 2013-03-02 11:57 UTC (permalink / raw)
To: openembedded-devel
Update the SRC_URI of udev_151.bb, udev_162.bb and udev_165.bb recipes
to build.shr-project.org since the corresponding source packages were
no longer available on any kernel.org mirror.
---
recipes/udev/udev_151.bb | 2 +-
recipes/udev/udev_162.bb | 2 +-
recipes/udev/udev_165.bb | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/recipes/udev/udev_151.bb b/recipes/udev/udev_151.bb
index a5a94ec..891bca3 100644
--- a/recipes/udev/udev_151.bb
+++ b/recipes/udev/udev_151.bb
@@ -12,7 +12,7 @@ DEFAULT_PREFERENCE = "-1"
DEPENDS = "gperf-native usbutils acl glib-2.0"
RDEPENDS_${PN} += "module-init-tools-depmod udev-utils"
-SRC_URI = "http://www.mirrorservice.org/sites/ftp.kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
+SRC_URI = "http://build.shr-project.org/sources/udev-${PV}.tar.gz \
file://udev-replace-le16toh.patch \
file://udev-replace-lutimes.patch \
file://mount.blacklist \
diff --git a/recipes/udev/udev_162.bb b/recipes/udev/udev_162.bb
index 9795c06..9c61b9b 100644
--- a/recipes/udev/udev_162.bb
+++ b/recipes/udev/udev_162.bb
@@ -15,7 +15,7 @@ RDEPENDS_${PN} += "module-init-tools-depmod udev-utils"
SRC_URI[md5sum] = "7c537de77442317ef1b93f9dba38fd4e"
SRC_URI[sha256sum] = "f536de7fc0ec231cb793aae9501c648763901d4360c27a864d1bdf3ed8aca00f"
-SRC_URI = "http://www.mirrorservice.org/sites/ftp.kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
+SRC_URI = "http://build.shr-project.org/sources/udev-${PV}.tar.gz \
file://mount.blacklist \
file://run.rules \
"
diff --git a/recipes/udev/udev_165.bb b/recipes/udev/udev_165.bb
index f79e549..fd73849 100644
--- a/recipes/udev/udev_165.bb
+++ b/recipes/udev/udev_165.bb
@@ -12,7 +12,7 @@ DEFAULT_PREFERENCE = "-1"
DEPENDS = "gperf-native usbutils acl glib-2.0"
RDEPENDS_${PN} += "module-init-tools-depmod udev-utils"
-SRC_URI = "http://www.mirrorservice.org/sites/ftp.kernel.org/pub/linux/utils/kernel/hotplug/udev-${PV}.tar.gz \
+SRC_URI = "http://build.shr-project.org/sources/udev-${PV}.tar.gz \
file://mount.blacklist \
file://run.rules \
"
--
1.7.10.4
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [2011.03-maintenance][PATCH 2/7] git: update SRC_URI
2013-03-02 11:55 [2011.03-maintenance][PATCH 0/7] Pull request 20130302 Apelete Seketeli
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 1/7] udev: update SRC_URI of multiple recipes Apelete Seketeli
@ 2013-03-02 11:57 ` Apelete Seketeli
2013-03-02 13:17 ` Martin Jansa
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 3/7] pam: " Apelete Seketeli
` (5 subsequent siblings)
7 siblings, 1 reply; 17+ messages in thread
From: Apelete Seketeli @ 2013-03-02 11:57 UTC (permalink / raw)
To: openembedded-devel
Update SRC_URI to build.shr-project.org since git source packages are
no longer available from kernel.org.
---
recipes/git/git.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes/git/git.inc b/recipes/git/git.inc
index eb59a2c..ae656e1 100644
--- a/recipes/git/git.inc
+++ b/recipes/git/git.inc
@@ -2,7 +2,7 @@ DESCRIPTION = "The git revision control system used by the Linux kernel develope
SECTION = "console/utils"
LICENSE = "GPLv2"
-SRC_URI = "${KERNELORG_MIRROR}/pub/linux/software/scm/git/git-${PV}.tar.bz2;name=src"
+SRC_URI = "http://build.shr-project.org/sources/git-${PV}.tar.bz2;name=src"
S = "${WORKDIR}/git-${PV}"
--
1.7.10.4
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [2011.03-maintenance][PATCH 3/7] pam: update SRC_URI
2013-03-02 11:55 [2011.03-maintenance][PATCH 0/7] Pull request 20130302 Apelete Seketeli
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 1/7] udev: update SRC_URI of multiple recipes Apelete Seketeli
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 2/7] git: update SRC_URI Apelete Seketeli
@ 2013-03-02 11:57 ` Apelete Seketeli
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 4/7] netbase: " Apelete Seketeli
` (4 subsequent siblings)
7 siblings, 0 replies; 17+ messages in thread
From: Apelete Seketeli @ 2013-03-02 11:57 UTC (permalink / raw)
To: openembedded-devel
Update SRC_URI to downloads.yoctoproject.org since pam source packages
are no longer available from kernel.org.
---
recipes/pam/libpam_1.1.1.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes/pam/libpam_1.1.1.bb b/recipes/pam/libpam_1.1.1.bb
index 09bc554..7f7e4b4 100644
--- a/recipes/pam/libpam_1.1.1.bb
+++ b/recipes/pam/libpam_1.1.1.bb
@@ -23,7 +23,7 @@ pn = "Linux-PAM"
p = "${pn}-${PV}"
S = "${WORKDIR}/${p}"
-SRC_URI = "${KERNELORG_MIRROR}/pub/linux/libs/pam/library/${p}.tar.bz2 \
+SRC_URI = "http://downloads.yoctoproject.org/mirror/sources/${p}.tar.bz2 \
file://pam-nodocs.patch \
file://define-HAVE_DBM.patch \
"
--
1.7.10.4
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [2011.03-maintenance][PATCH 4/7] netbase: update SRC_URI
2013-03-02 11:55 [2011.03-maintenance][PATCH 0/7] Pull request 20130302 Apelete Seketeli
` (2 preceding siblings ...)
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 3/7] pam: " Apelete Seketeli
@ 2013-03-02 11:57 ` Apelete Seketeli
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 5/7] libcap: " Apelete Seketeli
` (3 subsequent siblings)
7 siblings, 0 replies; 17+ messages in thread
From: Apelete Seketeli @ 2013-03-02 11:57 UTC (permalink / raw)
To: openembedded-devel
Update SRC_URI to downloads.yoctoproject.org since netbase source
package is no longer available from developer.irexnet.com.
---
recipes/netbase/netbase_4.21.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes/netbase/netbase_4.21.bb b/recipes/netbase/netbase_4.21.bb
index 075c9db..b46b363 100644
--- a/recipes/netbase/netbase_4.21.bb
+++ b/recipes/netbase/netbase_4.21.bb
@@ -17,7 +17,7 @@ INITSCRIPT_PARAMS_openmn = "start 85 1 2 3 4 5 . stop 85 0 6 1 ."
INITSCRIPT_PARAMS_slugos = "start 42 S 0 6 ."
SRC_URI = "\
- http://developer.irexnet.com/pub/iOn/Sources/1.0/Third%20party/all/netbase-${PV}.tar.gz \
+ http://downloads.yoctoproject.org/mirror/sources/netbase-${PV}.tar.gz \
file://options \
file://init \
file://hosts \
--
1.7.10.4
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [2011.03-maintenance][PATCH 5/7] libcap: update SRC_URI
2013-03-02 11:55 [2011.03-maintenance][PATCH 0/7] Pull request 20130302 Apelete Seketeli
` (3 preceding siblings ...)
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 4/7] netbase: " Apelete Seketeli
@ 2013-03-02 11:57 ` Apelete Seketeli
2013-03-02 13:16 ` Martin Jansa
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 6/7] gnutls: " Apelete Seketeli
` (2 subsequent siblings)
7 siblings, 1 reply; 17+ messages in thread
From: Apelete Seketeli @ 2013-03-02 11:57 UTC (permalink / raw)
To: openembedded-devel
Update SRC_URI to downloads.yoctoproject.org since libcap source
packages are no longer available from kernel.org.
---
recipes/libcap/libcap2_2.20.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes/libcap/libcap2_2.20.bb b/recipes/libcap/libcap2_2.20.bb
index e3a18ec..3e7d4bd 100644
--- a/recipes/libcap/libcap2_2.20.bb
+++ b/recipes/libcap/libcap2_2.20.bb
@@ -9,7 +9,7 @@ BUILD_CFLAGS += "-I${S}/libcap/include"
CFLAGS += "-I${S}/libcap/include"
LDFLAGS =+ "-L../libcap"
-SRC_URI = "${KERNELORG_MIRROR}/pub/linux/libs/security/linux-privs/libcap2/libcap-${PV}.tar.bz2 \
+SRC_URI = "http://downloads.yoctoproject.org/mirror/sources/libcap-${PV}.tar.bz2 \
file://make.patch \
"
--
1.7.10.4
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [2011.03-maintenance][PATCH 6/7] gnutls: update SRC_URI
2013-03-02 11:55 [2011.03-maintenance][PATCH 0/7] Pull request 20130302 Apelete Seketeli
` (4 preceding siblings ...)
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 5/7] libcap: " Apelete Seketeli
@ 2013-03-02 11:57 ` Apelete Seketeli
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 7/7] jlime-2010.1: add capability to build ubi image for ben-nanonote machine Apelete Seketeli
2013-03-04 20:40 ` [2011.03-maintenance][PATCH 0/7] Pull request 20130302 Tom Rini
7 siblings, 0 replies; 17+ messages in thread
From: Apelete Seketeli @ 2013-03-02 11:57 UTC (permalink / raw)
To: openembedded-devel
Update SRC_URI since the gnutls source packages were moved into a
different directory on ftp.gnutls.org.
---
recipes/gnutls/gnutls.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/recipes/gnutls/gnutls.inc b/recipes/gnutls/gnutls.inc
index a8e1e0d..0e055e3 100644
--- a/recipes/gnutls/gnutls.inc
+++ b/recipes/gnutls/gnutls.inc
@@ -8,7 +8,7 @@ LICENSE_${PN}-bin = "GPLv3+"
LICENSE_${PN}-extra = "GPLv3+"
LICENSE_${PN}-openssl = "GPLv3+"
-SRC_URI = "ftp://ftp.gnutls.org/pub/gnutls/gnutls-${PV}.tar.bz2;name=gnutls"
+SRC_URI = "ftp://ftp.gnutls.org/gcrypt/gnutls/v2.10/gnutls-${PV}.tar.bz2;name=gnutls"
inherit autotools binconfig pkgconfig gettext
--
1.7.10.4
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [2011.03-maintenance][PATCH 7/7] jlime-2010.1: add capability to build ubi image for ben-nanonote machine
2013-03-02 11:55 [2011.03-maintenance][PATCH 0/7] Pull request 20130302 Apelete Seketeli
` (5 preceding siblings ...)
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 6/7] gnutls: " Apelete Seketeli
@ 2013-03-02 11:57 ` Apelete Seketeli
2013-03-04 20:40 ` [2011.03-maintenance][PATCH 0/7] Pull request 20130302 Tom Rini
7 siblings, 0 replies; 17+ messages in thread
From: Apelete Seketeli @ 2013-03-02 11:57 UTC (permalink / raw)
To: openembedded-devel
Add capability to build a ubi image for the ben-nanonote machine when
using the jlime-2010.1 distro. The resulting image is ready to use and
fully functionnal.
---
conf/bitbake.conf | 2 +-
conf/distro/jlime-2010.1.conf | 3 ++-
conf/machine/ben-nanonote.conf | 12 ++++++++++++
3 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/conf/bitbake.conf b/conf/bitbake.conf
index 01b9321..527127e 100644
--- a/conf/bitbake.conf
+++ b/conf/bitbake.conf
@@ -399,7 +399,7 @@ IMAGE_CMD_cpio.gz = "type cpio >/dev/null; cd ${IMAGE_ROOTFS} && (find . | cpio
IMAGE_CMD_cpio.xz = "type cpio >/dev/null; cd ${IMAGE_ROOTFS} && (find . | cpio -o -H newc | xz -c ${XZ_COMPRESSION_LEVEL} > ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.cpio.xz) ${EXTRA_IMAGECMD}"
IMAGE_CMD_cpio.gz.u-boot = "type cpio >/dev/null; cd ${IMAGE_ROOTFS} && (find . | cpio -o -H newc | gzip -c -9 >${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.cpio.gz) ${EXTRA_IMAGECMD}; mkimage -A ${UBOOT_ARCH} -O linux -T ramdisk -C gzip -n ${IMAGE_NAME} -d ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.cpio.gz ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.cpio.gz.u-boot"
IMAGE_CMD_cpio.lzma = "type cpio >/dev/null; cd ${IMAGE_ROOTFS} && (find . | cpio -o -H newc | lzma -c -9 >${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.cpio.lzma) ${EXTRA_IMAGECMD}"
-IMAGE_CMD_ubi = "echo \[ubifs\] > ubinize.cfg ; echo mode=ubi >> ubinize.cfg ; echo image=${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.ubifs.img >> ubinize.cfg ; echo vol_id=0 >> ubinize.cfg ; echo vol_type=dynamic >> ubinize.cfg ; echo vol_name=${UBI_VOLNAME} >> ubinize.cfg ; echo vol_flags=autoresize >> ubinize.cfg;mkfs.ubifs -r ${IMAGE_ROOTFS} -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.ubifs.img ${MKUBIFS_ARGS} && ubinize -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ubi ${UBINIZE_ARGS} ubinize.cfg"
+IMAGE_CMD_ubi = "echo \[ubifs\] > ubinize.cfg ; echo mode=ubi >> ubinize.cfg ; echo image=${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.ubifs.img >> ubinize.cfg ; echo vol_id=0 >> ubinize.cfg ; echo vol_type=dynamic >> ubinize.cfg ; echo vol_name=${UBI_VOLNAME} >> ubinize.cfg ; echo vol_flags=autoresize >> ubinize.cfg ${EXTRA_IMAGECMD} ; mkfs.ubifs -r ${IMAGE_ROOTFS} -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.ubifs.img ${MKUBIFS_ARGS} && ubinize -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ubi ${UBINIZE_ARGS} ubinize.cfg"
IMAGE_CMD_ubifs = "mkfs.ubifs -r ${IMAGE_ROOTFS} -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.ubifs.img ${MKUBIFS_ARGS}"
EXTRA_IMAGECMD = ""
diff --git a/conf/distro/jlime-2010.1.conf b/conf/distro/jlime-2010.1.conf
index a3ec20e..d6a92cf 100644
--- a/conf/distro/jlime-2010.1.conf
+++ b/conf/distro/jlime-2010.1.conf
@@ -30,13 +30,14 @@ DISTRO_EXTRA_RDEPENDS = "nano keymaps console-tools"
#
IMAGE_NAME = "${DISTRO_NAME}-${IMAGE_BASENAME}-${DISTRO_VERSION}-${MACHINE}"
SPLASH = "psplash"
+UBI_VOLNAME = "rootfs"
#
# Naming schemes + packages
#
INHERIT += "debian package_tar package_ipk src_distribute_local"
SRC_DIST_LOCAL ?= "symlink"
-IMAGE_FSTYPES = "tar.gz tar.bz2 jffs2"
+IMAGE_FSTYPES = "tar.gz tar.bz2 jffs2 ubi"
PREFERRED_PROVIDER_virtual/update-alternatives = "opkg"
#
diff --git a/conf/machine/ben-nanonote.conf b/conf/machine/ben-nanonote.conf
index fd4aba4..e92992d 100644
--- a/conf/machine/ben-nanonote.conf
+++ b/conf/machine/ben-nanonote.conf
@@ -13,6 +13,18 @@ KERNEL_IMAGETYPE = "vmlinux.bin"
IMAGE_FSTYPES ?= "jffs2"
+# do ubiattach /dev/ubi_ctrl -m 2
+# From dmesg:
+# UBI: physical eraseblock size: 524288 bytes (512 KiB)
+# UBI: logical eraseblock size: 516096 bytes
+# UBI: smallest flash I/O unit: 4096
+# UBI: VID header offset: 4096 (aligned 4096)
+# UBI: data offset: 8192
+MKUBIFS_ARGS = "-m 4096 -e 516096 -c 4095"
+UBINIZE_ARGS = "-m 4096 -p 512KiB"
+
+EXTRA_IMAGECMD_ubi = "; echo vol_alignment=1 >> ubinize.cfg"
+
PREFERRED_PROVIDER_virtual/xserver = "xserver-kdrive"
PREFERRED_VERSION_xserver-kdrive = "1.3.0.0"
--
1.7.10.4
^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance][PATCH 5/7] libcap: update SRC_URI
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 5/7] libcap: " Apelete Seketeli
@ 2013-03-02 13:16 ` Martin Jansa
0 siblings, 0 replies; 17+ messages in thread
From: Martin Jansa @ 2013-03-02 13:16 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1252 bytes --]
On Sat, Mar 02, 2013 at 12:57:06PM +0100, Apelete Seketeli wrote:
> Update SRC_URI to downloads.yoctoproject.org since libcap source
> packages are no longer available from kernel.org.
> ---
> recipes/libcap/libcap2_2.20.bb | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/recipes/libcap/libcap2_2.20.bb b/recipes/libcap/libcap2_2.20.bb
> index e3a18ec..3e7d4bd 100644
> --- a/recipes/libcap/libcap2_2.20.bb
> +++ b/recipes/libcap/libcap2_2.20.bb
> @@ -9,7 +9,7 @@ BUILD_CFLAGS += "-I${S}/libcap/include"
> CFLAGS += "-I${S}/libcap/include"
> LDFLAGS =+ "-L../libcap"
>
> -SRC_URI = "${KERNELORG_MIRROR}/pub/linux/libs/security/linux-privs/libcap2/libcap-${PV}.tar.bz2 \
> +SRC_URI = "http://downloads.yoctoproject.org/mirror/sources/libcap-${PV}.tar.bz2 \
Why not add downloads.yoctoproject.org to default MIRRORS it will
resolve IIRC 3 patches from this set.
> file://make.patch \
> "
>
> --
> 1.7.10.4
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance][PATCH 2/7] git: update SRC_URI
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 2/7] git: update SRC_URI Apelete Seketeli
@ 2013-03-02 13:17 ` Martin Jansa
2013-03-02 15:32 ` Apelete Seketeli
0 siblings, 1 reply; 17+ messages in thread
From: Martin Jansa @ 2013-03-02 13:17 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1315 bytes --]
On Sat, Mar 02, 2013 at 12:57:03PM +0100, Apelete Seketeli wrote:
> Update SRC_URI to build.shr-project.org since git source packages are
> no longer available from kernel.org.
> ---
> recipes/git/git.inc | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/recipes/git/git.inc b/recipes/git/git.inc
> index eb59a2c..ae656e1 100644
> --- a/recipes/git/git.inc
> +++ b/recipes/git/git.inc
> @@ -2,7 +2,7 @@ DESCRIPTION = "The git revision control system used by the Linux kernel develope
> SECTION = "console/utils"
> LICENSE = "GPLv2"
>
> -SRC_URI = "${KERNELORG_MIRROR}/pub/linux/software/scm/git/git-${PV}.tar.bz2;name=src"
> +SRC_URI = "http://build.shr-project.org/sources/git-${PV}.tar.bz2;name=src"
I don't know how long I'll keep "old" PREMIRROR there, it would be
better to send missing archives to Tom King to add them to
sources.oe.org which is more official source (and probably already
listed in default MIRRORS)
>
> S = "${WORKDIR}/git-${PV}"
>
> --
> 1.7.10.4
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance][PATCH 2/7] git: update SRC_URI
2013-03-02 13:17 ` Martin Jansa
@ 2013-03-02 15:32 ` Apelete Seketeli
2013-03-02 15:46 ` Martin Jansa
0 siblings, 1 reply; 17+ messages in thread
From: Apelete Seketeli @ 2013-03-02 15:32 UTC (permalink / raw)
To: openembedded-devel
Le 02-Mar-13, Martin Jansa a écrit:
> On Sat, Mar 02, 2013 at 12:57:03PM +0100, Apelete Seketeli wrote:
> > Update SRC_URI to build.shr-project.org since git source packages are
> > no longer available from kernel.org.
> > ---
> > recipes/git/git.inc | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/recipes/git/git.inc b/recipes/git/git.inc
> > index eb59a2c..ae656e1 100644
> > --- a/recipes/git/git.inc
> > +++ b/recipes/git/git.inc
> > @@ -2,7 +2,7 @@ DESCRIPTION = "The git revision control system used by the Linux kernel develope
> > SECTION = "console/utils"
> > LICENSE = "GPLv2"
> >
> > -SRC_URI = "${KERNELORG_MIRROR}/pub/linux/software/scm/git/git-${PV}.tar.bz2;name=src"
> > +SRC_URI = "http://build.shr-project.org/sources/git-${PV}.tar.bz2;name=src"
>
> I don't know how long I'll keep "old" PREMIRROR there, it would be
> better to send missing archives to Tom King to add them to
> sources.oe.org which is more official source (and probably already
> listed in default MIRRORS)
How do I send Tom King the missing archives ?
I'll reformat the patches into a v2 as soon as this is fixed.
Cheers.
--
Apelete
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance][PATCH 2/7] git: update SRC_URI
2013-03-02 15:32 ` Apelete Seketeli
@ 2013-03-02 15:46 ` Martin Jansa
2013-03-02 17:13 ` Apelete Seketeli
0 siblings, 1 reply; 17+ messages in thread
From: Martin Jansa @ 2013-03-02 15:46 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1710 bytes --]
On Sat, Mar 02, 2013 at 04:32:27PM +0100, Apelete Seketeli wrote:
> Le 02-Mar-13, Martin Jansa a écrit:
> > On Sat, Mar 02, 2013 at 12:57:03PM +0100, Apelete Seketeli wrote:
> > > Update SRC_URI to build.shr-project.org since git source packages are
> > > no longer available from kernel.org.
> > > ---
> > > recipes/git/git.inc | 2 +-
> > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/recipes/git/git.inc b/recipes/git/git.inc
> > > index eb59a2c..ae656e1 100644
> > > --- a/recipes/git/git.inc
> > > +++ b/recipes/git/git.inc
> > > @@ -2,7 +2,7 @@ DESCRIPTION = "The git revision control system used by the Linux kernel develope
> > > SECTION = "console/utils"
> > > LICENSE = "GPLv2"
> > >
> > > -SRC_URI = "${KERNELORG_MIRROR}/pub/linux/software/scm/git/git-${PV}.tar.bz2;name=src"
> > > +SRC_URI = "http://build.shr-project.org/sources/git-${PV}.tar.bz2;name=src"
> >
> > I don't know how long I'll keep "old" PREMIRROR there, it would be
> > better to send missing archives to Tom King to add them to
> > sources.oe.org which is more official source (and probably already
> > listed in default MIRRORS)
>
> How do I send Tom King the missing archives ?
> I'll reformat the patches into a v2 as soon as this is fixed.
You can send him URLs to needed archives on yocto and shr premirrors
and he will wget it from there.
>
> Cheers.
> --
> Apelete
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance][PATCH 2/7] git: update SRC_URI
2013-03-02 15:46 ` Martin Jansa
@ 2013-03-02 17:13 ` Apelete Seketeli
2013-03-05 9:23 ` Apelete Seketeli
0 siblings, 1 reply; 17+ messages in thread
From: Apelete Seketeli @ 2013-03-02 17:13 UTC (permalink / raw)
To: openembedded-devel; +Cc: Tom King
Hello Tom,
Le 02-Mar-13, Martin Jansa a écrit:
> On Sat, Mar 02, 2013 at 04:32:27PM +0100, Apelete Seketeli wrote:
> > Le 02-Mar-13, Martin Jansa a écrit:
> > > On Sat, Mar 02, 2013 at 12:57:03PM +0100, Apelete Seketeli wrote:
> > > > Update SRC_URI to build.shr-project.org since git source packages are
> > > > no longer available from kernel.org.
> > > > ---
> > > > recipes/git/git.inc | 2 +-
> > > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > > >
> > > > diff --git a/recipes/git/git.inc b/recipes/git/git.inc
> > > > index eb59a2c..ae656e1 100644
> > > > --- a/recipes/git/git.inc
> > > > +++ b/recipes/git/git.inc
> > > > @@ -2,7 +2,7 @@ DESCRIPTION = "The git revision control system used by the Linux kernel develope
> > > > SECTION = "console/utils"
> > > > LICENSE = "GPLv2"
> > > >
> > > > -SRC_URI = "${KERNELORG_MIRROR}/pub/linux/software/scm/git/git-${PV}.tar.bz2;name=src"
> > > > +SRC_URI = "http://build.shr-project.org/sources/git-${PV}.tar.bz2;name=src"
> > >
> > > I don't know how long I'll keep "old" PREMIRROR there, it would be
> > > better to send missing archives to Tom King to add them to
> > > sources.oe.org which is more official source (and probably already
> > > listed in default MIRRORS)
> >
> > How do I send Tom King the missing archives ?
> > I'll reformat the patches into a v2 as soon as this is fixed.
>
> You can send him URLs to needed archives on yocto and shr premirrors
> and he will wget it from there.
Could you please add the following archives to
sources.openembedded.org ? I need them to fix non-working SRC_URIs in
many recipes:
http://downloads.yoctoproject.org/mirror/sources/libcap-2.20.tar.bz2
http://downloads.yoctoproject.org/mirror/sources/Linux-PAM-1.1.1.tar.bz2
http://downloads.yoctoproject.org/mirror/sources/netbase_4.21.tar.gz
http://build.shr-project.org/sources/udev-151.tar.gz
http://build.shr-project.org/sources/udev-162.tar.gz
http://build.shr-project.org/sources/udev-165.tar.gz
http://build.shr-project.org/sources/git-1.7.3.5.tar.bz2
Please let me know when the archives are available at
sources.openembedded.org, I'll reformat this patchset into v2 and
resend the pull request then.
Thanks.
--
Apelete
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance][PATCH 0/7] Pull request 20130302
2013-03-02 11:55 [2011.03-maintenance][PATCH 0/7] Pull request 20130302 Apelete Seketeli
` (6 preceding siblings ...)
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 7/7] jlime-2010.1: add capability to build ubi image for ben-nanonote machine Apelete Seketeli
@ 2013-03-04 20:40 ` Tom Rini
2013-03-05 9:14 ` Apelete Seketeli
7 siblings, 1 reply; 17+ messages in thread
From: Tom Rini @ 2013-03-04 20:40 UTC (permalink / raw)
To: openembedded-devel
On Sat, Mar 02, 2013 at 12:55:52PM +0100, Apelete Seketeli wrote:
> Hello,
>
> The patches that come as a follow-up of this message fix issues found
> while building muffinman-image on top of the 2011.03-maintenance
> branch, and also add the capability to build a ubi image for the
> ben-nanonote machine. This work is intended to be used as a basis for
> porting the JLime distribution to oe-core.
>
> These modifications were tested by successfully building
> muffinman-image from scratch on a Debian Wheezy host.
> Please pull into 2011.03-maintenance branch.
In addition to the changes requested, please make sure to CC me on the
v2 so that gmail marks this as important. Thanks!
--
Tom
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance][PATCH 0/7] Pull request 20130302
2013-03-04 20:40 ` [2011.03-maintenance][PATCH 0/7] Pull request 20130302 Tom Rini
@ 2013-03-05 9:14 ` Apelete Seketeli
0 siblings, 0 replies; 17+ messages in thread
From: Apelete Seketeli @ 2013-03-05 9:14 UTC (permalink / raw)
To: openembedded-devel
Le 04-Mar-13, Tom Rini a écrit:
> On Sat, Mar 02, 2013 at 12:55:52PM +0100, Apelete Seketeli wrote:
>
> > Hello,
> >
> > The patches that come as a follow-up of this message fix issues found
> > while building muffinman-image on top of the 2011.03-maintenance
> > branch, and also add the capability to build a ubi image for the
> > ben-nanonote machine. This work is intended to be used as a basis for
> > porting the JLime distribution to oe-core.
> >
> > These modifications were tested by successfully building
> > muffinman-image from scratch on a Debian Wheezy host.
> > Please pull into 2011.03-maintenance branch.
>
> In addition to the changes requested, please make sure to CC me on the
> v2 so that gmail marks this as important. Thanks!
Thanks for the advice, I'll make sure to CC you once the v2 patches
are ready.
Cheers.
--
Apelete
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance][PATCH 2/7] git: update SRC_URI
2013-03-02 17:13 ` Apelete Seketeli
@ 2013-03-05 9:23 ` Apelete Seketeli
0 siblings, 0 replies; 17+ messages in thread
From: Apelete Seketeli @ 2013-03-05 9:23 UTC (permalink / raw)
To: openembedded-devel; +Cc: Tom King
Le 02-Mar-13, Apelete Seketeli a écrit:
> Hello Tom,
>
> Le 02-Mar-13, Martin Jansa a écrit:
> > On Sat, Mar 02, 2013 at 04:32:27PM +0100, Apelete Seketeli wrote:
> > > Le 02-Mar-13, Martin Jansa a écrit:
> > > > On Sat, Mar 02, 2013 at 12:57:03PM +0100, Apelete Seketeli wrote:
> > > > > Update SRC_URI to build.shr-project.org since git source packages are
> > > > > no longer available from kernel.org.
> > > > > ---
> > > > > recipes/git/git.inc | 2 +-
> > > > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > > > >
> > > > > diff --git a/recipes/git/git.inc b/recipes/git/git.inc
> > > > > index eb59a2c..ae656e1 100644
> > > > > --- a/recipes/git/git.inc
> > > > > +++ b/recipes/git/git.inc
> > > > > @@ -2,7 +2,7 @@ DESCRIPTION = "The git revision control system used by the Linux kernel develope
> > > > > SECTION = "console/utils"
> > > > > LICENSE = "GPLv2"
> > > > >
> > > > > -SRC_URI = "${KERNELORG_MIRROR}/pub/linux/software/scm/git/git-${PV}.tar.bz2;name=src"
> > > > > +SRC_URI = "http://build.shr-project.org/sources/git-${PV}.tar.bz2;name=src"
> > > >
> > > > I don't know how long I'll keep "old" PREMIRROR there, it would be
> > > > better to send missing archives to Tom King to add them to
> > > > sources.oe.org which is more official source (and probably already
> > > > listed in default MIRRORS)
> > >
> > > How do I send Tom King the missing archives ?
> > > I'll reformat the patches into a v2 as soon as this is fixed.
> >
> > You can send him URLs to needed archives on yocto and shr premirrors
> > and he will wget it from there.
>
> Could you please add the following archives to
> sources.openembedded.org ? I need them to fix non-working SRC_URIs in
> many recipes:
>
> http://downloads.yoctoproject.org/mirror/sources/libcap-2.20.tar.bz2
> http://downloads.yoctoproject.org/mirror/sources/Linux-PAM-1.1.1.tar.bz2
> http://downloads.yoctoproject.org/mirror/sources/netbase_4.21.tar.gz
> http://build.shr-project.org/sources/udev-151.tar.gz
> http://build.shr-project.org/sources/udev-162.tar.gz
> http://build.shr-project.org/sources/udev-165.tar.gz
> http://build.shr-project.org/sources/git-1.7.3.5.tar.bz2
>
> Please let me know when the archives are available at
> sources.openembedded.org, I'll reformat this patchset into v2 and
> resend the pull request then.
I'm replying to myself here as a reminder request to feedback: still
need the above mentioned archives to be added to
sources.openembedded.org. Is Tom King currently around ?
Cheers.
--
Apelete
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [2011.03-maintenance][PATCH 2/7] git: update SRC_URI
@ 2013-03-08 5:30 Tom King
0 siblings, 0 replies; 17+ messages in thread
From: Tom King @ 2013-03-08 5:30 UTC (permalink / raw)
To: openembedded-devel, apelete
I have added these to the OE Sourcemirror and you are good to go for
updating the recipies.
Cheers
Tom
From: Apelete Seketeli <apelete@seketeli.net>
To: openembedded-devel@lists.openembedded.org
Cc: Tom King <ka6sox@gmail.com>
Date: Tue, 5 Mar 2013 10:23:45 +0100
Subject: Re: [oe] [2011.03-maintenance][PATCH 2/7] git: update SRC_URI
Le 02-Mar-13, Apelete Seketeli a écrit:
> Hello Tom,
>
> Le 02-Mar-13, Martin Jansa a écrit:
> > On Sat, Mar 02, 2013 at 04:32:27PM +0100, Apelete Seketeli wrote:
> > > Le 02-Mar-13, Martin Jansa a écrit:
> > > > On Sat, Mar 02, 2013 at 12:57:03PM +0100, Apelete Seketeli wrote:
> > > > > Update SRC_URI to build.shr-project.org since git source packages
are
> > > > > no longer available from kernel.org.
> > > > > ---
> > > > > recipes/git/git.inc | 2 +-
> > > > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > > > >
> > > > > diff --git a/recipes/git/git.inc b/recipes/git/git.inc
> > > > > index eb59a2c..ae656e1 100644
> > > > > --- a/recipes/git/git.inc
> > > > > +++ b/recipes/git/git.inc
> > > > > @@ -2,7 +2,7 @@ DESCRIPTION = "The git revision control system
used by the Linux kernel develope
> > > > > SECTION = "console/utils"
> > > > > LICENSE = "GPLv2"
> > > > >
> > > > > -SRC_URI = "${KERNELORG_MIRROR}/pub/linux/software/scm/git/git-${
PV}.tar.bz2;name=src"
> > > > > +SRC_URI = "
http://build.shr-project.org/sources/git-${PV}.tar.bz2;name=src"
> > > >
> > > > I don't know how long I'll keep "old" PREMIRROR there, it would be
> > > > better to send missing archives to Tom King to add them to
> > > > sources.oe.org which is more official source (and probably already
> > > > listed in default MIRRORS)
> > >
> > > How do I send Tom King the missing archives ?
> > > I'll reformat the patches into a v2 as soon as this is fixed.
> >
> > You can send him URLs to needed archives on yocto and shr premirrors
> > and he will wget it from there.
>
> Could you please add the following archives to
> sources.openembedded.org ? I need them to fix non-working SRC_URIs in
> many recipes:
>
> http://downloads.yoctoproject.org/mirror/sources/libcap-2.20.tar.bz2
> http://downloads.yoctoproject.org/mirror/sources/Linux-PAM-1.1.1.tar.bz2
> http://downloads.yoctoproject.org/mirror/sources/netbase_4.21.tar.gz
> http://build.shr-project.org/sources/udev-151.tar.gz
> http://build.shr-project.org/sources/udev-162.tar.gz
> http://build.shr-project.org/sources/udev-165.tar.gz
> http://build.shr-project.org/sources/git-1.7.3.5.tar.bz2
>
> Please let me know when the archives are available at
> sources.openembedded.org, I'll reformat this patchset into v2 and
> resend the pull request then.
I'm replying to myself here as a reminder request to feedback: still
need the above mentioned archives to be added to
sources.openembedded.org. Is Tom King currently around ?
Cheers.
--
Apelete
^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2013-03-08 5:47 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-02 11:55 [2011.03-maintenance][PATCH 0/7] Pull request 20130302 Apelete Seketeli
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 1/7] udev: update SRC_URI of multiple recipes Apelete Seketeli
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 2/7] git: update SRC_URI Apelete Seketeli
2013-03-02 13:17 ` Martin Jansa
2013-03-02 15:32 ` Apelete Seketeli
2013-03-02 15:46 ` Martin Jansa
2013-03-02 17:13 ` Apelete Seketeli
2013-03-05 9:23 ` Apelete Seketeli
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 3/7] pam: " Apelete Seketeli
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 4/7] netbase: " Apelete Seketeli
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 5/7] libcap: " Apelete Seketeli
2013-03-02 13:16 ` Martin Jansa
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 6/7] gnutls: " Apelete Seketeli
2013-03-02 11:57 ` [2011.03-maintenance][PATCH 7/7] jlime-2010.1: add capability to build ubi image for ben-nanonote machine Apelete Seketeli
2013-03-04 20:40 ` [2011.03-maintenance][PATCH 0/7] Pull request 20130302 Tom Rini
2013-03-05 9:14 ` Apelete Seketeli
-- strict thread matches above, loose matches on Subject: below --
2013-03-08 5:30 [2011.03-maintenance][PATCH 2/7] git: update SRC_URI Tom King
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.