aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-05-09xfsprogs: misc fixes for recipeAndreas Oberritter
* Only libhandle's license is the LGPLv2.1, all tools are licensed under the GPLv2. * Create seperate package for libhandle. * Create seperate packages for mkfs.xfs and fsck.xfs to save space. * Use real license file for LIC_FILES_CHKSUM. * Fix libhandle.so symlink. * Remove unneeded symlinks from ${base_libdir} Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Eric Bénard <eric@eukrea.com>
2012-05-09xinput-calibrator 0.7.5: add xterm to RDEPENDS, the menu item doesn't work ↵Koen Kooi
without it Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Acked-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Eric Bénard <eric@eukrea.com>
2012-05-09media-ctl: update to latest gitKoen Kooi
* split out libs * media-ctl has been relicensed to LGPLv2.1+ Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Eric Bénard <eric@eukrea.com>
2012-05-09v4l-utils: update to 0.8.8Koen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Eric Bénard <eric@eukrea.com>
2012-05-09yavta: update to latest gitKoen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Eric Bénard <eric@eukrea.com>
2012-04-30synergy: remove inherit of siteinfo and fix license stringTasslehoff Kjappfot
Signed-off-by: Tasslehoff Kjappfot <tasskjapp@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-30ubi-utils-klibc: initial commit of version 1.4.9Andrea Adami
* Initially only ubiattach was targeted (for kexecboot project). * Based on klibc_1.5.25, will be revised once new klibc is out. Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-27kernel bbclass: recreate uImage unless KEEPUIMAGE is setKoen Kooi
The intent of the uImage code in this class includes the following 1) be able to specify custom load addresses without needing to patch the kernel 2) add better information to the uImage description field The current state is a NOP anyway, the kernel will always build a uImage when you tell it to 'make uImage'. Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-27busybox 1.19.4 bbapped: create dir before installing into it, fixes build ↵Koen Kooi
failures on the autobuilder Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-04-27synergy: add synergy 1.3.8Tasslehoff Kjappfot
Signed-off-by: Tasslehoff Kjappfot <tasskjapp@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-26README: keep PATCH prefix in subject-prefix, some people filter their inbox ↵Martin Jansa
based on that Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-04-26expedite: add LIC_FILES_CHKSUMMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-04-26eio: fix LIC_FILES_CHKSUMMartin Jansa
* formal changes in r66247 and copy&paste fix in r66262 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-04-26efl-from-svn.inc: renameMartin Jansa
* people with this included will notice new release recipes and use them if possible without breaking upgrade path Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-04-26meta-efl: add recipes for new released versionsMartin Jansa
* drop/reset PR where possible as PV is increased * remove RREPLACES for versions before meta-efl was created Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-04-26e-base: bump EFL_SRCREV for 1.2Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-04-26systemd-machine-units: add machine specific recipe for BSPsMartin Jansa
* some machines like n900/gta02/palmpre are using extra units to initialize something (g_ether, cmt, ...), so make it easy to bbappend such units * stuff like INHERIT_append_crespo = " systemd" from BSP doesn't play well with systemd.bbclass Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-04-26systemd.bbclass: allow recipe to inherit systemd with empty SYSTEMD_SERVICEMartin Jansa
* I have use case where common recipe does inherit systemd and only some BSP's are bbappending some SERVICEs to it * install was moved intentionaly, so that /lib/systemd/system is not created if there is no .service file (causing QA Warning about unpackaged dir) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-04-26kernel: Fix packaging issueSaul Wold
Remove /etc since it is empty, when creating a machine that does not deliver any module config files, the /etc is empty and is then warned about not being shipped, so we remove it. This occurs in the routerstationpro with the following warning: WARNING: For recipe linux-yocto, the following files/directories were installed but not shipped in any package: WARNING: /etc Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-04-26{kernel, module}.bbclass: don't run depmod for module packages during do_rootfsAndreas Oberritter
* depmod already gets executed by pkg_postinst_kernel-image. * If you build a module using module.bbclass, pkg_postinst returns 1 in do_rootfs, causing pkg_postinst to run again on first boot. To improve this situation, I copied pkg_postinst from kernel.bbclass to module.bbclass. This was rejected by Koen, because he doesn't like the code from kernel.bblcass, which uses ${STAGING_DIR_KERNEL}. Richard then suggested that calling depmod during do_rootfs wasn't necessary at all, because it already gets done by kernel-image. Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-04-26kernel.bbclass: resync with oe-core versionMartin Jansa
* 4 spaces for anonymous python * don't recreate uImage if it already exists Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2012-04-25xserver-common: drop xinput-calibrator call as it is done by xdg nowOtavio Salvador
The new xinput-calibrator package provides a xdg file that handles this logic so drop it from session. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-04-25net-snmp: split net-snmp-serverMario Domenech Goulart
net-snmp-server has been split into two packages: net-snmp-server-snmpd and net-snmp-server-snmptrapd net-snmp-server is now a "meta-package" which depends on net-snmp-server-snmpd and net-snmp-server-snmptrapd. net-snmpd-server-systemd in no longer generated. It has been split into net-snmp-server-snmpd-systemd and net-snmp-server-snmptrapd-systemd. Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br>
2012-04-25epiphany 2.30.6: add missing gnome-doc-utils dependencyKoen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-24klibc_1.5.25: add patches to build with 3.2 kernel headersAndrea Adami
* kernel_3.2__aligned_u64.patch is already upstream * hack around the missing headers (now in /generated/asm) * bump INC_PR * waiting for klibc_2.0 release Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-24meta-openembedded: net-snmp: systemd supportMario Domenech Goulart
Backported systemd-related commits from net-snmp's master branch (full description in the systemd-support.patch file). .service files slightly adapted from Fedora's. Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-24oe-stylize.py: Add SUMMARY variableAndreas Oberritter
Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-21qt bbappends: play nice with bbappends in other layers by incrementing PRINC ↵Koen Kooi
instead of overwriting it Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-20linux-yocto-tiny-kexecboot: initial commit of version 3.2Andrea Adami
* this is the skeleton for .bbappend recipes * residing in the BSP layers Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-19gcc-4.5: Backport cpp honor sysroot patchKhem Raj
This patch is well vetted on gcc-4.6 Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-19README: fix meta-efl, meta-gpe and meta-xfce to point to openembedded.orgDenys Dmytriyenko
Fix README files for meta-efl, meta-gpe and meta-xfce to point to the correct openembedded.org address instead of the outdated openembedded.net in git URIs. Reported by Autif Khan for one of the layers. Signed-off-by: Denys Dmytriyenko <denys@ti.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-18gpsd: fix gpsd init scriptJohan Hovold
Replace return with exit where appropriate. Current init script uses return outside of functions resulting in warnings such as the following when using bash as interpreter: /etc/init.d/gpsd: line 98: return: can only `return' from a function or sourced script Signed-off-by: Johan Hovold <johan.hovold@lundinova.se> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-18mime-support: Update to version 3.48Luca Vaudano
Signed-off-by: Luca Vaudano <vaudano@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-18cloud9: silence systemd bbclass WARNING, ${PN}-systemd is unwantedKoen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-18gateone: silence systemd bbclass WARNING, ${PN}-systemd is unwantedKoen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-18systemd bbclass: allow recipes to silence WARNING during parsing when ↵Koen Kooi
${PN}-systemd is unwanted Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-17lighttpd: lastest oe-core installs lighttpd.conf directly to /etc/Radek Dostal
Signed-off-by: Radek Dostal <rd@radekdostal.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-17pixman: remove IWMMXT settingMartin Jansa
* khem moved it to oe-core and kept it here Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-17e-base: bump EFL_SRCREVMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-16systemd: create empty machine-id to fix first boot failuresKoen Kooi
Acked-by: Denys Dmytriyenko <denys@ti.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-14bbappends: append to BBCLASSEXTEND instead of overwriting itKoen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-13libxcursor: fix 'git mv' gone wrongKoen Kooi
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-13systemd: fix emergency and rescue servicesKoen Kooi
In OE we use /home/root, not /root. Bug-reported-by: Graham Murphy <Graham.Murphy@jhuapl.edu> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-13xorg: add more native BBCLASSEXTENDs for gtk+-nativeMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-13qte-toolchain: add qwte supportEric BENARD
we have QWT in meta-oe so include it in the SDK to give users the opportunity to use these widgets in their developments. Signed-off-by: Eric Bénard <eric@eukrea.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-13qwt: add 6.0.1 versionEric BENARD
- only the qwt-e version is compile and run tested ATM Signed-off-by: Eric Bénard <eric@eukrea.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-13xserver-common: use git patches and add functions fileMartin Jansa
* otherwise we were depending on initscripts to provide it without RDEPENDing on it Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-12gnuradio : Remove old files.Philip Balister
Left the buildsys patch for now. It does not apply, but I have only built this with gcc-4.6 from toolchain layer, not gcc from Angstrom. The patch does not apply, but I am saving it to remind me how to fix the problem. Signed-off-by: Philip Balister <philip@opensdr.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-12gnuradio : Update to version 3.5.3.Philip Balister
Signed-off-by: Philip Balister <philip@opensdr.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2012-04-12uhd : Update to version 3.4.1.Philip Balister
Signed-off-by: Philip Balister <philip@opensdr.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>