summaryrefslogtreecommitdiff
path: root/meta/recipes-extended/lsb
Commit message (Collapse)AuthorAgeFilesLines
* lsb: Fix PR bump, fix bashisms, correct dependency issue, tweak package ↵Richard Purdie2012-04-181-10/+11
| | | | | | description Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lsb: Add DISTRO Info to /etc/lsb-release file also add util-linux to DEPENDSSaul Wold2012-04-171-0/+5
| | | | | | | | | | | Add the DISTRO* fields to the /etc/lsb-release file so the distro parsing code can find standard information about the Poky Distro when using the Self-Hosted Image. The lsb_release command uses getopt which is provided by util-linux Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* More quoting fixesRichard Purdie2012-02-281-1/+1
| | | | Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lsbtest: Add recipe for LSB tests and automate testYi Zhao2012-02-284-0/+791
| | | | | | | | | | | | | The recipe is used for LSB tests. The script LSB_Test.sh does the following things: - setup LSB testing environment - download LSB rpm packages with list file packages_list from remote - install the packages - execute LSB testing with profile file session - collect the results Install packages_list and session files into ${D}/opt/lsb-test. [YOCTO #1567]
* More quoting fixesMartin Jansa2012-02-262-2/+2
| | | | | | | | * We have various variables which are either not quoted at all or are half quoted. This patch fixes the bad exmaples so everything is consistent. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* LSB_Setup.sh: Add locale resources and startup script avahi-daemonXiaofeng Yan2012-02-031-21/+29
| | | | | | | | | | | | | | | | 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>
* init-functions: Add two functionsXiaofeng Yan2012-02-031-0/+7
| | | | | | | | | | | | | | 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>
* lsb: Change link of ${baselib} to lib64 for 64bits systemXiaofeng Yan2011-10-171-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Correct two faults: 1 Binaries of lsb test suite need ld-linux.so* in /lib64. for example: Target$ ./lsbcmdchk -sh: ./lsbcmdchk: No such file or directory Target$ strings lsbcmdchk | grep "ld-" /lib64/ld-lsb-x86-64.so.3 "lsbcmdchk" from lsb test suite is a binary program. A new modification to lsb_1.4.bb caused that binaries from lsb test suite can't run because binaries of lsb test suite need ld-linux.so* in /lib64. But the link is changed due to adding multilib. I changed this link again. 2 correct mandir Waring will appear when running task task do_populate_sysroot NOTE: package lsb-1.4-r2: task do_populate_sysroot: Succeeded WARNING: For recipe lsb, the following files were installed but not shipped in any package: WARNING: /{datadir}/man/man1/lsb_release.1.gz I changed mandir=${D}/man to mandir=${D}/${datadir}/man Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lsb: Fix hard code libdir issue for multilibMei Lei2011-08-081-9/+9
| | | | | Signed-off-by: Mei Lei <lei.mei@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lsbsetup_1.0.bb: Change the hardcoded /usr/lib to support multilibMei Lei2011-07-201-1/+1
| | | | | Signed-off-by: Mei Lei <lei.mei@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* Drop PRIORITY variableRichard Purdie2011-07-012-2/+0
| | | | | | | | | | | | | | As discussed on the mailing list, this variable isn't useful and if wanted would be better implemented by distros using pn-X overrides. This patch executes: find . -regex ".*\.\(bb\|inc\)$" | xargs sed -i '/^PRIORITY = ".*"$/d' against the tree removing the referenced. Thanks to Phil Blundell for the command. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* lsbsetup: Rename this file and add a link for lsb testXiaofeng Yan2011-05-192-25/+27
| | | | | | | | | | | | | [YOCTO #1079] Rename this file version from 0.9 to 1.0. Link time environment for Hong Kong time for lsb test. Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com> Added yocto bugid Signed-off-by: Saul Wold <sgw@linux.intel.com>
* lsbsetup: Add a link for lsb testXiaofeng Yan2011-05-171-2/+4
| | | | | | Link /usr/lib/sendmail to /usr/sbin/sendmail Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* lsb: Install init-functions to rpm packageXiaofeng Yan2011-05-171-2/+4
| | | | | | | The script init-functions can't be built into rpm package of lsb. I modify lsb_1.4.bb to add this script to rpm package of lsb. Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* lsbsetup: recreate locale fr_FRKang Kai2011-05-162-1/+2
| | | | | | | | Update LSB_Setup.sh to recreate locale fr_FR, which helps to pass LSB libstdc++ test. Bump PR to r3. Signed-off-by: Kang Kai <kai.kang@windriver.com>
* lsbsetup: Add link for sendmailXiaofeng Yan2011-05-111-0/+1
| | | | | | Link /sbin/sendmail/ to /usr/lib/sendmail Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* init-functions: Conforming applications may install one or more ↵Xiaofeng Yan2011-05-115-0/+116
| | | | | | | | | | | | | initialization scripts LSB Test Suite need init scripts for lsb-image. During the installer's post-install processing phase the program /usr/lib/lsb/install_initd \ must be called to activate the init script. \ When a software package is removed, /usr/lib/lsb/remove_initd \ must be called to deactivate the init script. Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* wq!lsb: Add init-functions to lsb-imageXiaofeng Yan2011-05-111-14/+25
| | | | | | init-functions is needed by LSB Test Suite. Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* LSB_Setup.sh: Add character set to lsb-imageXiaofeng Yan2011-05-041-0/+1
| | | | | | Add character set to lsb-image to solve bugs from lsb test Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* lsbsetup: add commands install_initd and remove_initdKang Kai2011-05-041-1/+6
| | | | | | | | | Add commands install_initd and remove_initd link to chkconfig, which can handler LSB format init.d scripts. Needed by LSB commands check. Bump PR to r2 Part fixes [Yocto 520] Signed-off-by: Kang Kai <kai.kang@windriver.com>
* lsbsetup: add some workaround for LSB testsKang Kai2011-04-222-5/+18
| | | | | | | | | Add some workaround for LSB libstdcpp and tcl tests. Recreate locales for libstdcpp test, and resolve localhost is for tcl test [Yocto 898] Bump PR, update LICENSE information and installed file mode Signed-off-by: Kang Kai <kai.kang@windriver.com>
* lsb: fix lic_files_chksumSaul Wold2011-04-081-1/+1
| | | | | | Fixes [YOCTO #961] Signed-off-by: Saul Wold <sgw@linux.intel.com>
* LSB_Setup.sh: Add function to install all test packagesXiaofeng Yan2011-04-061-20/+30
| | | | | | Add function to install all of lsb test suite packages instead of installing parts of test packages Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* Various: Switch to SOURCEFORGE_MIRRORTom Rini2011-03-231-1/+1
| | | | Signed-off-by: Tom Rini <tom_rini@mentor.com>
* lsbsetup: Fix LIC_FILE_CHKSUMSaul Wold2011-03-051-2/+1
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* LSB_Setup.sh:Install LSB Test Suite and set lsb test environmentXiaofeng Yan2011-03-041-10/+10
| | | | | | Perfect some funtions for lsb test in yocto 1.0 Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
* lsbsetup: add missing directory installSaul Wold2010-12-161-0/+1
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* lsbsetup: fix install processSaul Wold2010-12-142-18/+3
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* lsbsetup: Set up lsb test environment on target platformXiaofeng Yan2010-12-102-0/+229
| | | | | | | | This is a script which uses for setting up lsb test environment and install packages of lsb test suite [sgw@linux.intel.com: moved the recipe to a more logical location] Signed-off-by: Xiaofeng Yan<xiaofeng.yan@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
* SRC_URI Checksums AdditionalsSaul Wold2010-12-091-0/+3
| | | | Signed-off-by: Saul Wold <sgw@linux.intel.com>
* LSB: Add a new packageXiaofeng Yan2010-11-141-0/+83
This package is needed by lsb test Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>