summaryrefslogtreecommitdiff
path: root/classes
AgeCommit message (Collapse)AuthorFiles
2007-01-07image.bbclass: Make images trigger all do_deploy tasks to run so kernels and ↵Richard Purdie1
things like updater.sh for the zaurus get deployed with the image. This change on affects bitbake 1.7.x users who *will* need to use the latest 1.7.x version from svn.
2007-01-07kernel.bbclass: Remove the KERNEL_RELEASE variable and set it to ↵Richard Purdie1
KERNEL_VERSION. This should removes a large source of kernel module problems as the variables then 'just work'
2007-01-06kernel.bbclass: Create relative symlinks from "zImage" to actual kernel ↵Paul Sokolovsky1
image in use. * Make sure update-alternatives created relative symlinks in /boot (or whatever) kernel image directory is used. This is required for tools like LAB (Linux As Bootloader) which may mount rootfs over some other temporary fs tree to get access to kernel to boot. * Closes #1569.
2007-01-02Add rootfs_deb.bbclass from PokyRichard Purdie1
2007-01-02Add package_deb.bbclass from PokyRichard Purdie1
2007-01-01image.bbclass rootfs_ipk.bbclass: Move common functionality into ↵Richard Purdie2
image.bbclass to prepare for rootfs_deb/bbclass (from poky)
2007-01-01package.bbclass: Add fakeroot-native as a depenedncy (from poky)Richard Purdie1
2007-01-01siteinfo.bbclass: Demote site files message to debug log level (from poky)Richard Purdie1
2007-01-01base.bbclass: Allow base_contains to take an array of values to check for ↵Richard Purdie1
(from poky)
2007-01-01site: Start to refactor files to benefit from common site files. Much more ↵Richard Purdie1
work is needed but this is a start
2006-12-31Rename: image_ipk -> image.bbclass, IPKG_INSTALL -> PACKAGE_INSTALL to ↵Richard Purdie3
prepare for deb packaging
2006-12-31Split STAGING_BINDIR into CROSS and NATIVE versions. This means there is no ↵Richard Purdie3
need to rename -config scripts and multimachine won't break with binconfig.bbclass. ***NOTE: This change will require staging to be rebuilt***
2006-12-29merge of '3961d9fa0932ee3f91d25b24350816ff1c3c7ff8'Marcin Juszkiewicz1
and '91d610fe22ec5f30832680d42abf443bcd99fe6c'
2006-12-29debian.bbclass: fix typoMarcin Juszkiewicz1
2006-12-19Fix typo in system restricted packagesStelios Koroneos1
2006-12-19Fixed error in the way the user specified exclusion lists were handledStelios Koroneos1
Remove debug messages
2006-12-19Remove depedancy on icecc-create-env to temporeraly solve circullar ↵Stelios Koroneos1
dependancy problem
2006-12-19Updated icecc.bbclassStelios Koroneos1
Handles native/cross cross-kernel and target compile jobs Accepts user supplied package and class exclusion lists
2006-12-12package.bbclass: set PATH before running OBJDUMP to get dependencies calculatedMarcin Juszkiewicz1
I do not know does this is best way of fixing it but it is better to have it in repository then having rootfs images without libc.
2006-12-12many files: KERNELORG_MIRROR variable createdMarcin Juszkiewicz1
2006-12-06patch.bbclass: Fix errors when reapplying patchesRichard Purdie1
2006-12-05angstrom: add source mirror for angstromKoen Kooi1
2006-12-03ice.bbclass, apply patch from #1495, closes #1495Leon Woestenberg1
2006-12-02palmtop.bbclass: Fix sharprom override (from nicolasfs #oe)Richard Purdie1
2006-11-29Introduce STAGING_BINDIR_CROSS and STAGING_BINDIR_NATIVE as discussed on the ↵Richard Purdie11
mailing list. There should be no functionality changes yet.
2006-11-28bitbake.conf : introduce the OBJDUMP variable, by default set toGraeme Gregory1
${HOST_PREFIX}objdump package.bbclass : make use of the OBJDUMP variable rather than calling ${BUILD_PREFIX}objdump inside do_shlibs. As the original usage was faulty and ended up calling host objdump which works for some arm targets but not all.
2006-11-28cross.bbclass + gcc-package-cross.inc: put the immediate expansion trick in ↵Richard Purdie1
cross.bbclass
2006-11-25base.bbclass: Try to ensure the MACHINE variable isn't exported (needs ↵Richard Purdie1
bitbake support to complete)
2006-11-21base.bbclass: added support for creating source mirrorMarcin Juszkiewicz1
- if SOURCE_MIRROR_FETCH variable is set then we ignore COMPATIBLE_MACHINE/COMPATIBLE_HOST settings to be able to fetch all recipes. - Fetching sources can be done by setting any MACHINE/DISTRO combination and SOURCE_MIRROR_FETCH = "1" in configuration. Then one invocation of BitBake should do all fetching: bitbake --cmd fetchall --continue world - scripts to manage source mirror will get added into contrib/
2006-11-21base.bbclass: added lsof mirrors (main server does not allow connections ↵Marcin Juszkiewicz1
without revdns)
2006-11-20classes/package_*: Add IMAGE_PKGTYPE (from poky)Richard Purdie3
2006-11-20package_ipk.bbclass: Fix invalid syntax added earlierRichard Purdie1
2006-11-20merge of '20512a86807847c46b89aa3589332b9d24cd6502'Richard Purdie1
and 'd6303c5e818fd02ef51ffd8057190cb2a110bc74'
2006-11-20kernel.bbclass: unset MACHINE otherwise things break (from poky)Richard Purdie1
2006-11-20merge of '6b50eeffe6b0887666782f657e8f8fc694b7045c'Richard Purdie1
and 'c647d36367af59b2cc5bdd6d28a4c0a873539f76'
2006-11-20package_ipk.bbclass: Simplify os.path.join calls (from poky)Richard Purdie1
2006-11-20mozilla bbclass: inherit pkgconfigKoen Kooi1
2006-11-20base.bbclass: whitespace cleanup, remove unneeded stage addtask callRichard Purdie1
2006-11-20Convert IPKG_ARCHS -> PACKAGE_ARCHS, IPKG_EXTRA_ARCHS -> PACKAGE_EXTRA_ARCHS ↵Richard Purdie4
in preparation for deb handling
2006-11-20classes: Clean up anonymous function whitespaceRichard Purdie5
2006-11-18Micro-Optimisation decreasing initial parsing time by 10%Holger Freyther6
python () {} and python __anonymous () {} are as the same says functions without a name. They get executed when the main bb file is completely parsed. This is used to set information like FILESDIR. This is a python method so it gets evaled which means compiled and executed a lot of times. By moving the code of the anonfunc into a proper method this is only compiled once. The result is is the 10% speed up when parsing. Reindent anonfuncs and new defs without tabs and four spaces
2006-11-16base.bbclass: Add missing fetchall dummy functionRichard Purdie1
2006-11-16base.bbclass: added two mirrors for info-zip.orgMarcin Juszkiewicz1
2006-11-16base.bbclass: Fix duplicate task execution in fetchallRichard Purdie1
2006-11-15efl.bbclass, e.bbclass: move -dbg before Justin Patrin2
2006-11-15e classes: include dbg packagesKoen Kooi2
2006-11-14site infrastructure changes: Allow more than one file per target so common ↵Richard Purdie2
files can be created. Add a new class to handle this. Based on the work of Jamie Lenehan, with changes from me. This commit creates a common x86 file and the arm configs are merged but much work still remains.
2006-11-14disapproval of revision 'b36008d6d508c1a3c7c580085c230913aebe4f87'Richard Purdie1
2006-11-14native.bbclass: set INHIBIT_DEFAULT_DEPS - native packages does not need ↵Marcin Juszkiewicz1
cross toolchain which is added by base.bbclass
2006-11-14distutils-base bbclass: exclude debug files from $bindir and $libdir, ↵Koen Kooi1
PYTHON_DIR still contains them, see bug #1581