summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
Commit message (Collapse)AuthorAgeFilesLines
* poky-default-revisions.inc: Move SRCREV settings into this fileRichard Purdie2010-10-071-1/+0
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* augeas: Add missing dependency on readlineMark Hatle2010-10-011-0/+2
| | | | | | | | [BUGID #381] Augeas apparently has a readline dependency. Add this to the DEPENDS. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
* tzcode-native: added LICENSE fieldSaul Wold2010-09-301-1/+1
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* polkit-gnome: added LICENSE fieldSaul Wold2010-09-301-0/+1
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* mc: add to extended, but not part of any imageSaul Wold2010-09-301-0/+12
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* task-poky-lsb/basic: Add LICENSE fieldsRichard Purdie2010-09-302-0/+2
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* procps: use new batch update-alternatives featureKevin Tian2010-09-291-30/+6
| | | | Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* diffutils: use new batch update-alternatives featureKevin Tian2010-09-291-20/+2
| | | | Signed-off-by Kevin Tian <kevin.tian@intel.com>
* bzip2: use new batch update-alternatives featureKevin Tian2010-09-291-20/+5
| | | | Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* task-poky-basic.bb: fix lighttpd typoSaul Wold2010-09-281-1/+1
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* task-poky-basic.bb: add lighttp to basic image type for webserverSaul Wold2010-09-281-0/+1
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* lighttpd: Add 1.4.28 as new recipe.Zhai Edwin2010-09-284-0/+423
| | | | Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
* cpio: add version 2.11 (GPLv3)Scott Garman2010-09-272-0/+22
| | | | | | | This is the most recent version of cpio. Recipe derived from OpenEmbedded's recipe for cpio v2.5. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* grep: add version 2.7 (GPLv3)Scott Garman2010-09-271-0/+41
| | | | | | | This is the most recent version of grep. Recipe derived from OpenEmbedded's recipe for grep v2.6.3. Signed-off-by: Scott Garman <scott.a.garman@intel.com>
* man-pages_3.25.bb: Fix SRC_URI to contain Archive directorySaul Wold2010-09-231-1/+1
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* [#BUG298]:Fix some bugs during compiling based on x86_64Xiaofeng Yan2010-09-221-21/+16
| | | | | fix a problem that compliation failed for groff on machine x86_64 Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* zypper: fix runtime dependencyQing He2010-09-211-1/+2
| | | | | | | add procps as runtime recommendation, since pgrep is used by zypper binary Signed-off-by: Qing He <qing.he@intel.com>
* libzypp: RDEPENDS sat-solverQing He2010-09-211-1/+4
| | | | | | | rpmdb2solv provided by sat-solver is executed from within libzypp, RDEPENDS sat-solver to get the utility included, fixes [BUGID #328] Signed-off-by: Qing He <qing.he@intel.com>
* libzypp: change /usr/lib64 to /usr/libKevin Tian2010-09-091-1/+3
| | | | | | similar to previous sat-solver fix, we use /usr/lib for x86-64 target Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* task-poky-lsb: Remove man-pages due to build failuresSaul Wold2010-09-081-1/+1
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* task-poky-lsb: add man-pages, which will pull man and groffSaul Wold2010-09-081-0/+1
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* man-pages:Add new man-pages packageXiaofeng Yan2010-09-081-0/+29
| | | | | | The Linux man-pages project documents the Linux kernel and C library interfaces that are employed by user programs Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* groff:Add new groff packageXiaofeng Yan2010-09-084-0/+144
| | | | | | groff allows for a short reference for the GNU roff language Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* man: Add new man packageXiaofeng Yan2010-09-0830-0/+1040
| | | | | | A set of documentation tools: man, apropos and whatis Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* at: Disable PARALLEL_MAKE for at and add back to task-basicSaul Wold2010-09-082-2/+4
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* libzypp: workaround to pass mips buildKevin Tian2010-09-082-1/+25
| | | | | | | | | | | | | | | | | | | | | | | libzypp failed due to GCC "internal compiler error: segmentation fault" error on MIPS target. The cause is about boost tribool type usage. If having assignement within conditional check as below: if ( (a = b) ) ... <a is a tribool type, b is a normal bool type> then gcc4.3.3 throws internal error. Then the workaround is to move assignement out of the conditional check. However I didn't find same case from web. We can come back to recheck this issue after upgrading to gcc4.5.0 for MIPS. If this issue is still there, we'll need more analysis to decide whether to report to gcc upstream or to libzypp upstream. This fixes [BUGID #277] Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* sat-solver: change /usr/lib64 to /usr/libKevin Tian2010-09-081-1/+2
| | | | | | | | | | we use /usr/lib for x86-64 target, but sat-solver will use /usr/lib64 if 64bit target arch is detected. This finally causes libzypp failed to find libsatsolver.a. use "-DLIB=lib" to explicitly enforce the requirement fix [BUGID #286] Signed-off-by: Kevin Tian <kevin.tian@intel.com>
* poky-default-revisions.inc: Move SRCREVs to correct locations, fix whitespaceRichard Purdie2010-09-063-10/+4
| | | | Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
* tasks-poky-basic and tasks-poky-qt: bump PR and remove atSaul Wold2010-09-041-4/+3
| | | | | | | Remove at since it's failing build Add Zypper to lsb image Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* zypper: add new packageQing He2010-09-032-0/+39
| | | | | Signed-off-by: Saul Wold <saul.wold@intel.com> Signed-off-by: Qing He <qing.he@intel.com>
* libzypp: add new packageQing He2010-09-033-0/+83
| | | | | Signed-off-by: Saul Wold <saul.wold@intel.com> Signed-off-by: Qing He <qing.he@intel.com>
* sat-solver: added new packageQing He2010-09-033-0/+112
| | | | | Signed-off-by: Saul Wold <saul.wold@intel.com> Signed-off-by: Qing He <qing.he@intel.com>
* augeas: add new packageQing He2010-09-032-0/+29
| | | | | | version 0.7.3 Signed-off-by: Qing He <qing.he@intel.com>
* rpcbind: move patch to correct locationSaul Wold2010-09-021-0/+0
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* mingetty: Add new mingetty packageXiaofeng Yan2010-09-021-0/+17
| | | | | | mingetty allows for a compact getty program for virtual consoles only Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* logrotate: Add new logrotate packageXiaofeng Yan2010-09-021-0/+28
| | | | | | logrotate allows for the rotation, compression and removal of system log file Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* cronie: add the latest version 1.4.4Dexuan Cui2010-09-022-0/+102
| | | | Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
* task-poky-basic: add cron, logrotate, mingettySaul Wold2010-09-021-3/+3
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* at: fix for parallel build issue & bug #180Nitin A Kamble2010-09-024-17/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | parallel build was failing inconsistently due to missing dependancy specification in the make file. Fixed it with a new patch. Bug 180 reported this issue: | arm-poky-linux-gnueabi-gcc -march=armv5te -mtune=arm926ej-s -c -I. -fexpensive-optimizations -fomit-frame-pointer -frename-registers -O2 -ggdb -feliminate-unused-debug-types -DHAVE_CONFIG_H -DVERSION=\"3.1.12\" -DETCDIR=\"/etc\" -DLOADAVG_MX=0.8 -DDAEMON_USERNAME=\"daemon\" -DDAEMON_GROUPNAME=\"daemon\" -DLFILE=\"/var/spool/cron/atjobs/.SEQ\" -Wall atd.c | atd.c:511:2: error: #error "No mail command specified." | make: *** [atd.o] Error 1 Fixed it with the recommended solution of defining SENDMAIL as /bin/true Fixes [BUGID #180] Reorganized the recipe file for cleanlyness. Add the init script for at As per Scott's wiki instructions added the this init script for at: http://git.buildroot.net/buildroot/tree/package/at/S99at add libpam to dependancy And bumped PR. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* rpcbind: add patch to fix host include pathSaul Wold2010-09-022-2/+18
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* task-poky-lsb: add sysklogd, libaio, mdadm, screen, watchdogSaul Wold2010-09-022-7/+7
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* rpcbind: add new recipe version 0.2.0Dongxiao Xu2010-09-021-0/+16
| | | | | | | Introduce rpcbind utility into poky which is a server that converts RPC program numbers into universal addresses. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* libtirpc: add new recipe version 0.2.1Dongxiao Xu2010-09-021-0/+13
| | | | | | libtirpc is depended by rpcbind, so introduce it into poky. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* which (GPLv3): inherit update-alternatives to handle install priorityDongxiao Xu2010-09-021-13/+5
| | | | | | | inherit the update-alternatives class to handle install priority issue, which is recommended by poky. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* sed: Upgraded to the latest version 4.2.1Dongxiao Xu2010-09-021-0/+25
| | | | | | | sed version 4.2.1 is under GPLv3 license inherit update-altenatives to handle the install priority issue Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* sed: Inherit update-altenatives to handle the install priorityDongxiao Xu2010-09-021-11/+5
| | | | | | This method is simple and preferred by poky Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
* at: gplv2 recipe at version 3.1.12Nitin A Kamble2010-09-028-0/+543
| | | | | | | | Took the 3.1.10.2 version of the gplv2 recipe from the master branch, and upgraded it to 3.1.12 version and then replaced the gplv3 files viz posixtm.[ch] by gplv2 files to make the recipe gplv2. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
* at: remove GPLv3 versionSaul Wold2010-09-028-186/+1
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* mdadm: add patch to fix passing linker options to ccSaul Wold2010-09-022-2/+18
| | | | Signed-off-by: Saul Wold <Saul.Wold@intel.com>
* libaio: add new recipeQing He2010-09-024-0/+830
| | | | | | | | | | version 0.3.107 from open embedded changes: - use $(AR) and $(RANLIB) instead of ar and ranlib Signed-off-by: Qing He <qing.he@intel.com>