Age | Commit message (Collapse) | Author | Files | |
---|---|---|---|---|
2009-03-12 | Kernel bbclass "too many open files" bugfix | Jader H. Silva | 1 | |
tempfile.mkstemp() is used to create a temporary file. This function return a tuple with an OS file descriptor and a filename. Filename is stored in "tmpfile" but descriptor is not stored anywhere, but it is still open because it's only an integer to python so it is not closed at the end of the function. For each iteration in which this function is called, a new OS file descriptor is opened, but not closed. The solution is to store the file descriptor and close it. | ||||
2009-03-09 | Revert "module-base: Fix the test on KERNEL_OBJECT_SUFFIX" | Tom Rini | 1 | |
This reverts commit 25b281668e62d90c027978b13b53075534b81d0c. As pointed out by Pieter <pieterg@gmx.com> my logic here was backwards and the code was correct before and this change is incorrect. | ||||
2009-03-09 | native.bbclass: Remove java specific stuff from do_stage again. | Robert Schuster | 1 | |
2009-03-09 | java-native.bbclass: New file. | Robert Schuster | 1 | |
2009-03-04 | package_ipk.bbclass: use bb.utils.prunedir to remove CONTROL directory | Marcin Juszkiewicz | 1 | |
It was removing file by file before and did not removed conffiles file. As a result package_rpm was not able to create package. | ||||
2009-03-02 | Merge branch 'mickey/org.openembedded.dev' into org.openembedded.dev | Michael 'Mickey' Lauer | 2 | |
Conflicts: classes/qt4e.bbclass packages/bluez/bluez4_4.31.bb packages/mc/mc_4.6.2.bb packages/vte/vte.inc packages/vte/vte_0.16.13.bb packages/vte/vte_0.16.14.bb | ||||
2009-02-27 | qt4[e|x11].bbclass: set ARM_INSTRUCTION_SET to arm | Michael 'Mickey' Lauer | 2 | |
2009-02-27 | qt-embedded: restore qtopia4core.bbclass, add qt4e.bbclass | Jeremy Lainé | 2 | |
2009-02-27 | qtopia4core.bbclass: depend qt-embedded, qtopia-core is obsolete | Jeremy Lainé | 1 | |
2009-02-27 | qt-embedded: restore qtopia4core.bbclass, add qt4e.bbclass | Jeremy Lainé | 2 | |
2009-02-27 | qtopia4core.bbclass: depend qt-embedded, qtopia-core is obsolete | Jeremy Lainé | 1 | |
2009-02-25 | efl.bbclass: touch config.rpath which is necessary for newer automake | Michael 'Mickey' Lauer | 1 | |
2009-02-22 | image.bbclass: install stuff listed in IMAGE_INSTALL as well | Koen Kooi | 2 | |
rootfs_ipk: task-boot change fixes | ||||
2009-02-22 | rootfs_ipk bbclass: make ONLINE_PACKAGE_MANAGEMENT work on non task-base ↵ | Koen Kooi | 1 | |
images as well * This fixes the "image broken due to not running postinsts because opkg* isn't installed" type of bugs | ||||
2009-02-19 | task-boot: rename DISTRO_ vars to IMAGE_ vars and move to image.bbclass * ↵ | Koen Kooi | 1 | |
update users as well Acked-By: Marcin Juszkiewicz <hrw@openembedded.org> | ||||
2009-02-17 | base.bbclass: output messages only if BitBake 1.8 is used (from Poky) | Marcin Juszkiewicz | 1 | |
before (with BitBake trunk): NOTE: package linux-2.6.28-r4: task do_compile: started NOTE: package linux-2.6.28-r4: task do_compile: Started after: NOTE: package linux-2.6.28-r4: task do_compile: Started | ||||
2009-02-17 | failure-cleanup.bbclass: class that does -c clean on a package that fails to ↵ | Koen Kooi | 1 | |
build | ||||
2009-02-14 | icecc.bbclass: base fix for cross and native builds, patch/9 | Roman I Khimov | 1 | |
2009-02-13 | package_ipk.bbclass: Add missing : from a045dfacf6f2541e0f410d9d109581f181303756 | Tom Rini | 1 | |
2009-02-13 | Merge branch 'master' of ↵ | Otavio Salvador | 2 | |
git://projetos.ossystems.com.br/git/users/otavio/org.openembedded.dev into org.openembedded.dev * 'master' of git://projetos.ossystems.com.br/git/users/otavio/org.openembedded.dev: flash-plugin: add 10.0.12.36 sun-jre6: add 1.6.0.10 parted: drop versions up to 1.8.8 package.bbclass, package_ipk.bbclass: add dynamic depends on locale packages (ipk specific) cups: add 1.3.8. rt61-firmware: add 1.2 | ||||
2009-02-13 | package.bbclass, package_ipk.bbclass: add dynamic depends on locale packages ↵ | Otavio Salvador | 2 | |
(ipk specific) | ||||
2009-02-11 | sanity.bbclass: do not fail if /bin/sh is not symlink | Marcin Juszkiewicz | 1 | |
2009-02-10 | module_strip: When picking module suffix, use KERNEL_MAJOR_VERSION. | Tom Rini | 1 | |
With the previously broken and unused KERNEL_OBJECT_SUFFIX, this actually evaluted to "" so we always did a find path -name *, which is why we need the -d test later on. Switch to testing for KERNEL_OBJECT_SUFFIX==2.6 and else'ing for 2.4 and doing .ko or .o. Leave KERNEL_OBJECT_SUFFIX in-tact for non-mainline users. This was easier than getting kernel.bbclass to evaluate KERNEL_OBJECT_SUFFIX either on its own or re-jigging module-base and module_strip, again for non-mainline users. | ||||
2009-02-10 | module-base: Fix the test on KERNEL_OBJECT_SUFFIX | Tom Rini | 1 | |
We were saying if we're newer than 2.6.0, use ".o" and otherwise use ".ko", which is backwards. | ||||
2009-02-07 | autotools_stage.bbclass: merge from poky | Koen Kooi | 1 | |
2009-02-04 | insane.bbclass: Fix MIPS and GNU_HASH check. | Tom Rini | 1 | |
MIPS doesn't do GNU_HASH so if objdump tells us "[mips32]" or "[mips64]" then set sane = True | ||||
2009-02-04 | sanity.bbclass: make a warning about dash being used as /bin/sh (from Poky) | Marcin Juszkiewicz | 1 | |
gtk+ fails with dash | ||||
2009-02-03 | base.bbclass: only error out on missing checksums when OE_STRICT_CHECKSUMS ↵ | Koen Kooi | 1 | |
is set * we want to error out on non-matching sums, missing ones are less bad * People can now set OE_STRICT_CHECKSUMS = "" in local.conf to make a missing checksum a warning, but checksum errors are still fatal, as it should | ||||
2009-02-03 | dietlibc: introduce dietlibc to openembedded | woglinde | 1 | |
2009-01-30 | rootfs_deb.bbclass : fix merge problems where I removed ${libdir} | Graeme Gregory | 1 | |
2009-01-30 | package_deb.bbclass, rootfs_deb.bbclass : merge in poky changes to these ↵ | Graeme Gregory | 2 | |
classes that make sure correct files end up on rootfs | ||||
2009-01-30 | kernel.bbclass: move initramfs stuff to configure so we can do ↵ | Koen Kooi | 1 | |
postprocessing on it with do_configure_append | ||||
2009-01-28 | Merge branch 'org.openembedded.dev' into trini/canadian-final-merge | Tom Rini | 5 | |
2009-01-28 | package_ipk.bbclass: Add and use IPKGCONF_CANSDK. | Tom Rini | 1 | |
This is analogous to IPKGCONF_{TARGET,SDK} | ||||
2009-01-27 | Merge trini/canadian-merge branch into org.openembedded.dev, fixup a | Tom Rini | 5 | |
conflict on checksums.ini | ||||
2009-01-27 | module.bbclass: add common make options to module_do_install() | Cliff Brake | 1 | |
the problem was that KERNELDIR was not getting passed to "make install", so the host kernel src dir got used, and the wrong kernel version was then extracted. | ||||
2009-01-25 | kernel.bbclass: Remove some repetition in last commit. | Tim 'timtim' Ellis | 1 | |
2009-01-25 | kernel.bbclass: Add missing entry for scsi headers in staging, as needed by ↵ | Tim 'timtim' Ellis | 1 | |
iscsi-target Signed-off by Koen Kooi <koen@openembedded.org> | ||||
2009-01-22 | sanity.bbclass: Provide preserving the mmap_min_addr setting over reboots ↵ | Richard Purdie | 1 | |
(from Poky) git-svn-id: https://svn.o-hand.com/repos/poky@5106 311d38ba-8fff-0310-9ca6-ca027cbcb966 | ||||
2009-01-20 | lsppc: Remove foonas classes lsppchg-image and lsppchd-image | Tim 'timtim' Ellis | 2 | |
2009-01-20 | image.bbclass: resize images (ext2/ext3) only if they are bigger then ↵ | Denys Dmytriyenko | 1 | |
IMAGE_ROOTFS_SIZE | ||||
2009-01-20 | Auto resizing ext2/ext3 images (from Poky) | Marcin Juszkiewicz | 1 | |
During my work for OpenedHand I wrote one usefull thing which we used for ext2/ext3 images - autosizing. In few words: it checks how big rootfs is, adds IMAGE_EXTRA_SPACE amount of kilobytes to it and gives that size to genext2fs. | ||||
2009-01-19 | package.bbclass: skip symlinks when generating shlib info in package_do_shlibs() | Denys Dmytriyenko | 1 | |
2009-01-18 | gnome.bbclass: inherit gtk-icon-cache | Koen Kooi | 1 | |
2009-01-17 | n2100-image.bbclass: Fix usage of tail so image post works | Tim 'timtim' Ellis | 1 | |
2009-01-16 | SDK: Rename 'SDK_PREFIX' to 'SDK_PATH' so that it has a meaning analogous to ↵ | Tom Rini | 1 | |
BUILD/TARGET/HOST This isn't a big deal until we introduce the rest of the SDK variables for doing Canadian builds. | ||||
2009-01-16 | canadian sdk: Add classes/canadian{,-cross,-native,-sdk}.bbclass | Tom Rini | 4 | |
2009-01-16 | insane.bbclass: Fix thinko in package_qa_check_staged logic for iscrossnative | Tom Rini | 1 | |
2009-01-16 | insane.bbclass: Add handling for canadian classes | Richard Purdie | 1 | |
2009-01-16 | bitbake.conf: Add EXEEXT variables for BUILD/HOST/TARGET so we can start to ↵ | Richard Purdie | 3 | |
handle other architectures |