aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
AgeCommit message (Collapse)Author
2012-02-22texi2html: Fix for multilibZhai Edwin
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-02-21iputils: Add base_libdir to VPATH in order to find the crypto librarySaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2012-02-21rpcbind: add DEPENDS on quota for rpcsvc/rquota.hSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2012-02-21recipes: bump PR to rebuild .la files without libz.laMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-02-21stat: remove NATIVE_INSTALL_WORKSPaul Eggleton
This variable is no longer used in OE-Core. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-02-10sat-solver: Fix build with zlib 1.2.6Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2012-02-10zlib: Upgrade 1.2.5 -> 1.2.6Khem Raj
Dont use autotools, it really not so autoconf like. the configure script gets updated with every release of zlib and we overwrite that. Instead use the upstream provided configure copyright year was changed in zlib.h which caused change in LIC_FILE_CHECKSUM fix.inverted.LFS.logic.patch is already applied upstream so drop it Drop the configure.ac and Makefile.am scripts since we do not autoreconf anymore and do not inherit autotools anymore Bump PR for depending recipes so a rebuild it ensues so that they dont depend on .la anymore and add missing dependencies discovered during incremental build Signed-off-by: Khem Raj <raj.khem@gmail.com>
2012-02-07classes,recipes: Replace POKY_* with CORE_IMAGE_*Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2012-02-03libzypp: add missing runtime dependences on gzip and gnupgSteve Sakoman
gzip is required to uncompress repository files gnupg is required for the support of signed repositories. Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-02-03shadow-securetty: allow root logins on usb serial gadget deviceSteve Sakoman
Existing tty list does not include ttyGS0, add it Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-02-03LSB_Setup.sh: Add locale resources and startup script avahi-daemonXiaofeng Yan
The purpose of adding locale resources is to resolve bug 1954 because missing locale resources cause many failures. The purpose of adding startup script avahi-daemon is to resolve bug 1907. The detailed description is as follows: No daemon progress "avahi-daemon" when system starting up. Function "gethostbyaddr" will search file "/var/run/avahi-daemon/socket" but there is no this file which is created by avahi-daemon. [YOCTO #1907 #1954] Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-02-03init-functions: Add two functionsXiaofeng Yan
Add log_begin_msg() and log_end_msg () in init-functions because some startup scripts need them. if there are not two functions, then error information will arise on screen. for example, $ /etc/init.d/avahi-daemon start /etc/init.d/avahi-daemon: line 161: log_begin_msg: command not found /etc/init.d/avahi-daemon: line 163: log_end_msg: command not found [YOCTO #1907] Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-02-03byacc: upgrade from 20111219 to 20120115Nitin A Kamble
update md5sum for license as the copyright years are updated in the file Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-02-02libidn: Update to 1.24Saul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2012-02-02sysklogd: various fixes so it starts/stops cleanlyJoshua Lock
This patch fixes several issues with the sysklogd recipe: o Errors at start due to non-existent /var/log/news/ - every other log file is created in /var/log, not a sub-directory. Do the same for news logs. o klogd would not be stopped due to pidfile recycling, give klogd its own pidfile o preinstalls failed at rootfs creation time by trying to access the host root filesystem rather than a path relative to $D. Update the preinst to test for $D and do the right thing. Signed-off-by: Joshua Lock <josh@linux.intel.com>
2012-02-01tzdata_2011n: provide pkg_postinst and timezone defaultsAndrea Adami
* Introduce DEFAULT_TIMEZONE variable ('Universal', present in base package) * and add /etc/timezone during do_install. * While there, fix hardcoded references to $exec_prefix (/usr). * Add the pkg_postinst script (adapted from Gentoo). * Create /etc/localtime during postinst. * Bump PR Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
2012-01-26shadow-sysroot: Simplfy login.defs installationRichard Purdie
Currently if shadow-sysroot is installed from a sstate package, shadow_sysroot_sstate_postinst is looking in ${D} for login.defs which isn't a valid for an install from sstate. The easiest and most correct way to fix this is to override the standard sysroot_stage_all function to install the files correctly and then sstate installs work as expected. This simplifies the code as an added bonus. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-01-25ltp: Update recipe and fix building on uclibcKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-01-25shadow: Split securetty into a separate recipeRichard Purdie
The securetty file is machine specific whilst the rest of the shadow recipe is not. Unfortunately making the recipce machine specific is both inefficient and also causes dependency problems since parts of the system such as the useradd code depend upon it and this introduces a machine specific element to sstate checksums which should not be machine specific. To resolve this, this patch separates out the file into a separate recipe meaning the machine specific components are isolated. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-01-24ltp: disable elf binary strippingNitin A Kamble
Otherwise the ltp tests ldd01 & nm01 fail due to missing stripped information. This Fixes these bugs: [YOCTO #1922] [YOCTO #1923] Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2012-01-24ed: upgrade to 1.6Shane Wang
This patch is to upgrade ed to 1.6, and the change of license checksum is because the diff between two ed.h files: 3c3,4 < Copyright (C) 1993, 1994, 2006, 2007, 2008, 2009, 2010 --- > Copyright (C) 1993, 1994 Andrew Moore, Talke Studio > Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 the diff between two main.c files: 2c2 < Copyright (C) 1993, 1994, 2006, 2007, 2008, 2009, 2010 --- > Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 46d45 Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-24iptables: upgrade to 1.4.12.2Shane Wang
This patch is to upgrade iptables to 1.4.12.2, and introduce a patch not to check unknown symbols. Otherwise, when it is compiled, it will report "libxtables.so.7" from LD_PRELOAD cannot be preloaded. Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-24polkit: upgrade to 0.104Shane Wang
Upgrade polkit to 0.104. And fix the typo for "endline" and the checksum. Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-24tcp-wrappers: refactor packages for staticdevSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2012-01-24augeas: refactor packages for staticdevSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2012-01-24Fix Upstream-Status entriesSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2012-01-24core-image-foo: add description to each image bb fileShane Wang
Add DESCRIPTION to each image bb file according to poky reference manual for Hob2 use later. Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-19hdparm: remove PRIORITYPaul Eggleton
PRIORITY is no longer set in recipes in OE-Core, so remove it. (Since "optional" is the default value from bitbake.conf, no PR bump is necessary.) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-01-19chkconfig: Update package from v1.3.55 to v1.3.57Andrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-01-17libpam: upgrade to 1.1.5Scott Garman
Updated HOMEPAGE, BUGTRACKER, and SRC_URI fields to reflect new project hosting. Cleaned up some of the metadata ordering. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
2012-01-17hdparm: upgrade to 9.37Shane Wang
The patch was imported from the OpenEmbedded server (http://git.openembedded.org/openembedded/tree/recipes/hdparm) as of commit id 4d2cb79dcecd056742f411a328f9f1f1113bf689. And changes include: - upgrade to the latest version 9.37 from 9.35. - added license checksum. - the license for wiper which is in hdparm is GPLv2. Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-17stat: add recipe stat with version 3.3Shane Wang
stat is brought into Yocto because the latest version hdparm 9.37 depends on it, and add license checksum. The recipe was imported from the OpenEmbedded server (http://git.openembedded.org/openembedded/tree/recipes/stat) as of commit ids 709c4d66e0b107ca606941b988bad717c0b45d9b, 44985d56bc556786812a0a02d6219afd31a7381d, b3246d96069fd11caee42ec6ebcbf6dca2d62449. Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-17ghostscript: build cups filtersJames Limbouris
Cups filters are no longer built by default. Since ghostscript already depends on cups, build the filters and package them as ghostscript-cups. Ghostscript uses the cups-config script from the oe sysroots to determine some of the target install paths, as well as to determine the linker path. The config script gives out paths pointing to the sysroot, so some of the paths needed to be adjusted in the Makefile. Signed-off-by: James Limbouris <james@digitalmatter.com.au>
2012-01-10findutils: Use CACHED_CONFIGUREVARS to specify cached configure varsKhem Raj
Since this feature is depending on wchar support we only cache is when we have libc-posix-clang-wchar enabled Signed-off-by: Khem Raj <raj.khem@gmail.com>
2012-01-06mc: remove not needed fix for automake 1.11.2Nitin A Kamble
The pkglibexec_SCRIPTS pair is valid. the 1.11.2 introduced an bug to make it invalid. Now the automake 1.11.2 recipe is fixed, so no need for this fix for mc recipe. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2012-01-04mc: fix configure with automake 1.11.2Dexuan Cui
As Nitin said, "automake version 1.11.2 has made use of dir variables more strict, the pkglibexec var can not have SCRIPTS suffix. Using pkgdata instead." Fixes this error: | contrib/Makefile.am:10: `pkglibexecdir' is not a legitimate directory for `SCRIPTS' | autoreconf: automake failed with exit status: 1 NOTE: package mc-4.8.1-r0: task do_configure: Failed Signed-off-by: Dexuan Cui <dexuan.cui@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2012-01-03texinfo: fix gettext patchSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2012-01-03lighttpd: Upgrade to 1.4.30Zhai Edwin
Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
2012-01-03mdadm: upgrade to the latest version 3.2.3Dexuan Cui
deleted 1 patch since it's in new version now. made LICENSE field more accurate. updated chksum of COPYING: only working change; no actual license change. Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
2012-01-03watchdog: upgrade to 5.11Shane Wang
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-03quota: upgrade to 4.00Shane Wang
The license change in rquota_server.c is the following two lines have been removed: 11a12,13 > * Version: $Id: rquota_server.c,v 1.22 2010/01/05 16:04:57 jkar8572 Exp $ > * Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-03procps: raise update-alternatives priorityKoen Kooi
This fixes a problem with the uptime utility: root@beagleboneA3-0088:/var/lib/cloud9# busybox uptime 16:00:17 up 2 days, 6:46, load average: 0.14, 0.04, 0.05 root@beagleboneA3-0088:/var/lib/cloud9# uptime.procps 16:00:22 up 2 days, 6:46, 1 user, load average: 0.14, 0.05, 0.06 root@beagleboneA3-0088:/var/lib/cloud9# uptime.coreutils 16:00pm up 4382 days 15:58, 1 user, load average: 0.13, 0.05, 0.05 root@beagleboneA3-0088:/var/lib/cloud9# ls /usr/bin/uptime -la lrwxrwxrwx 1 root root 16 Dec 26 08:56 /usr/bin/uptime -> uptime.coreutils Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-01-03misc patches: fix patch headersNitin A Kamble
These patches were marked by "UpstreamStatus:" line, fix it to use "Upstream-Status:" instead. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2012-01-03byacc: upgrade from 20110908 to 20111219Nitin A Kamble
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
2012-01-02minicom: upgrade to 2.5Shane Wang
Signed-off-by: Shane Wang <shane.wang@intel.com>
2012-01-02polkit: upgrade to 0.103Shane Wang
This is the patch to upgrade polkit to 0.103. The license is changed because the HTML content is generated by GTK-Doc V1.18 (XML node) rather than GTK-Doc V1.17 (XML node), which causes the change of the tag. Signed-off-by: Shane Wang <shane.wang@intel.com>
2011-12-24which: Disable iberty since its not listed in DEPENDSRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-23which: Add missing SRC checksumsMark Hatle
Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-23gperf: Add missing SRC checksumMark Hatle
Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-12-22bash: Add SRC_URI Checksums for GPLv2Saul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>