* [PATCH 0/2] Changes to match up with oe-core
@ 2012-02-07 22:50 Saul Wold
2012-02-07 22:50 ` [PATCH 1/2] task-core-tools-profile: change to match oe-core Saul Wold
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Saul Wold @ 2012-02-07 22:50 UTC (permalink / raw)
To: poky
Changes to match oe-core task-core-tools and update the
MIRRORS to use the correct URL.
Sau!
The following changes since commit cb89d43473a91ff4cb2447d642fcd9308d7366e3:
libzypp: add missing runtime dependences on gzip and gnupg (2012-02-03 17:23:34 +0000)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib sgw/fix
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=sgw/fix
Saul Wold (2):
task-core-tools-profile: change to match oe-core
poky.conf: Fix the MIRROR URI
meta-yocto/conf/distro/poky.conf | 22 ++++++++++----------
...s.bbappend => task-core-tools-profile.bbappend} | 0
2 files changed, 11 insertions(+), 11 deletions(-)
rename meta-yocto/recipes-core/tasks/{task-core-tools.bbappend => task-core-tools-profile.bbappend} (100%)
--
1.7.6.5
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] task-core-tools-profile: change to match oe-core
2012-02-07 22:50 [PATCH 0/2] Changes to match up with oe-core Saul Wold
@ 2012-02-07 22:50 ` Saul Wold
2012-02-07 22:50 ` [PATCH 2/2] poky.conf: Fix the MIRROR URI Saul Wold
2012-02-08 0:51 ` [PATCH 0/2] Changes to match up with oe-core Richard Purdie
2 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2012-02-07 22:50 UTC (permalink / raw)
To: poky
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
...s.bbappend => task-core-tools-profile.bbappend} | 0
1 files changed, 0 insertions(+), 0 deletions(-)
rename meta-yocto/recipes-core/tasks/{task-core-tools.bbappend => task-core-tools-profile.bbappend} (100%)
diff --git a/meta-yocto/recipes-core/tasks/task-core-tools.bbappend b/meta-yocto/recipes-core/tasks/task-core-tools-profile.bbappend
similarity index 100%
rename from meta-yocto/recipes-core/tasks/task-core-tools.bbappend
rename to meta-yocto/recipes-core/tasks/task-core-tools-profile.bbappend
--
1.7.6.5
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 2/2] poky.conf: Fix the MIRROR URI
2012-02-07 22:50 [PATCH 0/2] Changes to match up with oe-core Saul Wold
2012-02-07 22:50 ` [PATCH 1/2] task-core-tools-profile: change to match oe-core Saul Wold
@ 2012-02-07 22:50 ` Saul Wold
2012-02-08 0:51 ` [PATCH 0/2] Changes to match up with oe-core Richard Purdie
2 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2012-02-07 22:50 UTC (permalink / raw)
To: poky
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta-yocto/conf/distro/poky.conf | 22 +++++++++++-----------
1 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/meta-yocto/conf/distro/poky.conf b/meta-yocto/conf/distro/poky.conf
index 596336e..1bf35b1 100644
--- a/meta-yocto/conf/distro/poky.conf
+++ b/meta-yocto/conf/distro/poky.conf
@@ -44,19 +44,19 @@ QEMU_TARGETS ?= "arm i386 mips mipsel ppc x86_64"
# Other QEMU_TARGETS "mips64 mips64el sh4"
PREMIRRORS ?= "\
-bzr://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
-cvs://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
-git://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
-hg://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
-osc://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
-p4://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
-svk://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
-svn://.*/.* http://autobuilder.yoctoproject.org/sources/ \n"
+bzr://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
+cvs://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
+git://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
+hg://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
+osc://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
+p4://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
+svk://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
+svn://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n"
MIRRORS =+ "\
-ftp://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
-http://.*/.* http://autobuilder.yoctoproject.org/sources/ \n \
-https://.*/.* http://autobuilder.yoctoproject.org/sources/ \n"
+ftp://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
+http://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n \
+https://.*/.* http://downloads.yoctoproject.org/mirror/sources/ \n"
# The CONNECTIVITY_CHECK_URI's are used to test whether we can succesfully
# fetch from the network (and warn you if not). To disable the test set
--
1.7.6.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] Changes to match up with oe-core
2012-02-07 22:50 [PATCH 0/2] Changes to match up with oe-core Saul Wold
2012-02-07 22:50 ` [PATCH 1/2] task-core-tools-profile: change to match oe-core Saul Wold
2012-02-07 22:50 ` [PATCH 2/2] poky.conf: Fix the MIRROR URI Saul Wold
@ 2012-02-08 0:51 ` Richard Purdie
2 siblings, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2012-02-08 0:51 UTC (permalink / raw)
To: Saul Wold; +Cc: poky
On Tue, 2012-02-07 at 14:50 -0800, Saul Wold wrote:
> Changes to match oe-core task-core-tools and update the
> MIRRORS to use the correct URL.
>
> Sau!
>
> The following changes since commit cb89d43473a91ff4cb2447d642fcd9308d7366e3:
>
> libzypp: add missing runtime dependences on gzip and gnupg (2012-02-03 17:23:34 +0000)
>
> are available in the git repository at:
> git://git.yoctoproject.org/poky-contrib sgw/fix
> http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=sgw/fix
>
> Saul Wold (2):
> task-core-tools-profile: change to match oe-core
> poky.conf: Fix the MIRROR URI
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-02-08 0:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-07 22:50 [PATCH 0/2] Changes to match up with oe-core Saul Wold
2012-02-07 22:50 ` [PATCH 1/2] task-core-tools-profile: change to match oe-core Saul Wold
2012-02-07 22:50 ` [PATCH 2/2] poky.conf: Fix the MIRROR URI Saul Wold
2012-02-08 0:51 ` [PATCH 0/2] Changes to match up with oe-core Richard Purdie
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.