From 288adb52fd3f802deafa9b19257b3eff610f97b2 Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Tue, 12 Dec 2006 14:45:04 +0000 Subject: many files: KERNELORG_MIRROR variable created --- classes/base.bbclass | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'classes') diff --git a/classes/base.bbclass b/classes/base.bbclass index e1d0e8854a..249a25a218 100644 --- a/classes/base.bbclass +++ b/classes/base.bbclass @@ -770,12 +770,12 @@ ${GNU_MIRROR} ftp://ftp.matrix.com.br/pub/gnu ${GNU_MIRROR} ftp://ftp.cs.ubc.ca/mirror2/gnu ${GNU_MIRROR} ftp://sunsite.ust.hk/pub/gnu ${GNU_MIRROR} ftp://ftp.ayamura.org/pub/gnu -ftp://ftp.kernel.org/pub http://www.kernel.org/pub -ftp://ftp.kernel.org/pub ftp://ftp.us.kernel.org/pub -ftp://ftp.kernel.org/pub ftp://ftp.uk.kernel.org/pub -ftp://ftp.kernel.org/pub ftp://ftp.hk.kernel.org/pub -ftp://ftp.kernel.org/pub ftp://ftp.au.kernel.org/pub -ftp://ftp.kernel.org/pub ftp://ftp.jp.kernel.org/pub +${KERNELORG_MIRROR} http://www.kernel.org/pub +${KERNELORG_MIRROR} ftp://ftp.us.kernel.org/pub +${KERNELORG_MIRROR} ftp://ftp.uk.kernel.org/pub +${KERNELORG_MIRROR} ftp://ftp.hk.kernel.org/pub +${KERNELORG_MIRROR} ftp://ftp.au.kernel.org/pub +${KERNELORG_MIRROR} ftp://ftp.jp.kernel.org/pub ftp://ftp.gnupg.org/gcrypt/ ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/ ftp://ftp.gnupg.org/gcrypt/ ftp://ftp.surfnet.nl/pub/security/gnupg/ ftp://ftp.gnupg.org/gcrypt/ http://gulus.USherbrooke.ca/pub/appl/GnuPG/ -- cgit v1.2.3 From 779b350577b72b2bd9cf00c3f3a9203a1e07cfcb Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Tue, 12 Dec 2006 16:41:25 +0000 Subject: package.bbclass: set PATH before running OBJDUMP to get dependencies calculated I do not know does this is best way of fixing it but it is better to have it in repository then having rootfs images without libc. --- classes/package.bbclass | 1 + 1 file changed, 1 insertion(+) (limited to 'classes') diff --git a/classes/package.bbclass b/classes/package.bbclass index c53b3ee708..132fdcb37a 100644 --- a/classes/package.bbclass +++ b/classes/package.bbclass @@ -576,6 +576,7 @@ python package_do_shlibs() { path = os.path.join(root, file) if os.access(path, os.X_OK) or lib_re.match(file): cmd = bb.data.getVar('OBJDUMP', d, 1) + " -p " + path + " 2>/dev/null" + cmd = "PATH=\"%s\" %s" % (bb.data.getVar('PATH', d, 1), cmd) fd = os.popen(cmd) lines = fd.readlines() fd.close() -- cgit v1.2.3