Age | Commit message (Collapse) | Author | Files | |
---|---|---|---|---|
2009-09-03 | OpenEmbedded: Switch to using linux-uclibceabi and linux-gnu for TARGET_OS | Khem Raj | 1 | |
* Bump the ABI_LAYOUT. Build from scratch will be needed. * Replace using TARGET_OS from linux->linux-gnu. * Replace using linux-uclibcgnueabi->linux-uclibceabi. * Add 'eabi' to DISTRO_FEATURES (only for minimal and micro). * Use eabi and BASE_PACKAGE_ARCH to compute real TARGET_OS. * Fix the micro conf to get console image building. * Fix the linux-uclibcgnueabi overrides in all recipes. Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Phill Blundell <pb@reciva.com> Acked-by: Michael 'Mickey' Lauer <mickey@vanille-media.de> | ||||
2009-05-14 | First pass of cleanup of messages outputted to the user. | Chris Larson | 1 | |
OpenEmbedded outputs a lot of messages that the user is likely to never care about. We should only output something when it reflects upon their recipe (i.e. unpacking their sources, applying their patches), or is quite significant or unusual. Signed-off-by: Chris Larson <clarson@mvista.com> | ||||
2009-04-28 | insane.bbclass: Split package_qa_check_devdbg and don't run -dev check on ↵ | Tom Rini | 1 | |
SDK packages. We create package_qa_check_dev/package_qa_check_dbg checks. While in here clarify the comments as to what both are doing. Since SDK packages don't get split like normal ones, it's OK to have -dev stuff in non-dev packages. Suggested by Richard Purdie Acked-by: Koen Kooi <koen@openembedded.org> Signed-off-by: Tom Rini <trini@embeddedalley.com> | ||||
2009-04-17 | insane.bbclass: add an entry for darwin9/arm | Jeremy Lainé | 1 | |
2009-04-08 | insane.bbclass: make "LDFLAGS ignored" QA errors fatal | Jeremy Lainé | 1 | |
2009-04-02 | insane.bbclass: document error class "9" (LDFLAGS ignored) | Jeremy Lainé | 1 | |
2009-03-21 | insane.bbclass: Silence the annoying GNU_HASH QA checks when --hash-style ↵ | Chris Larson | 1 | |
isn't set. Signed-off-by: Chris Larson <clarson@mvista.com> | ||||
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-01-10 | insane.bbclass: Fix thinko in package_qa_check_staged logic for iscrossnative | Tom Rini | 1 | |
2009-01-09 | insane.bbclass: Add handling for canadian classes | Richard Purdie | 1 | |
2008-11-18 | insane.bbclass: Optimisation to speed up the package qa phase | Holger Hans Peter Freyther | 1 | |
If you have a package with many data files (like xserver-xorg-print) the overhead of forking and executing scanelf/objdump on these files is way too high. Change the code to open the file and check if it is an elf file. Pass the result to the checking functions. If we do not have an elf file in front of us do not execute scanelf/objdump. This is a speed increase, it still detects GNU hash, the other parts should continue to work as well but needs some verificiation. | ||||
2008-10-28 | insane.bbclass: Detect if someone is not using our LDFLAGS | Holger Hans Peter Freyther | 1 | |
We started passing --target-style=gnu/both to the linker. If the buildsystem is not picking up our LDFLAGS it will not have this hash in the binary. E.g. this is true for busybox. Add a check to insane.bbclass to check if we have a GNU_HASH in the elf binary. Make this a non fatal QA option until the majority of packages are fixed. | ||||
2008-10-27 | insane.bbclass: import bb to make python happy | Holger Hans Peter Freyther | 1 | |
With bitbake -b this broke, import bb to make the python runtime happy. | ||||
2008-10-04 | insane.bbclass: let sh4 arch play with uclibc | Henning Heinold | 1 | |
2008-06-16 | insane.bbclass: add linux-gnuspe as valid target | Dirk Opfer | 1 | |
2008-03-19 | insane bbclass: add '8' (.la references workdir) to list of fatal errors | Koen Kooi | 1 | |
* this will also trigger on broken libtool archives already present in staging. If you get hit by this: rebuild the offending recipes or do a clean rebuild | ||||
2008-03-19 | insane.bbclass: Only check installed status for packages which aren't ↵ | Richard Purdie | 1 | |
native/cross, find desktop-file-validate from PATH so it can be ASSUME_PROVIDED (from poky) | ||||
2008-03-15 | Reverse accidental changes in dc0f5b4ef4b836d72bf43dffa503ab86e6f7de54 | Richard Purdie | 1 | |
2008-03-15 | gcc: Some futher .bb -> .inc changes | Richard Purdie | 1 | |
2008-03-04 | Change staging layout to match the target system layout. WARNING - staging ↵ | Richard Purdie | 1 | |
ABI change. This update completes the conversion of OE.dev to use sysroot and have a staging layout that matches the target system. This means we no longer need to mangle pkgconfig files and can use its sysroot option instead. Users of old toolchains (gcc prior to 3.4 and external ones) may need to add cross-linkage and staging-linkage to their toolchain dependencies. Since this update changes staging layout and the contents of the .pc files it updates the staging ABI and people will need to rebuild. | ||||
2008-01-12 | insane.bbclass: fix formatting of fatal include error | Michael Lauer | 1 | |
2007-12-29 | insane.bbclass: make it more consistent. Fixes the following: | Cyril Romain | 1 | |
errors with id >=4 are not logged (the package_qa_write_error() method is actually not called); and error 7 and 8 are missing from the ERROR_NAMES list. | ||||
2007-12-26 | classes/insane.bbclass: Decided to not make the workdir issues fatal | Holger Freyther | 1 | |
2007-12-26 | classes/insane.bbclass: Handle non-elf files gracefully (again) | Holger Freyther | 1 | |
2007-12-26 | classes/insane.bbclass: Separate the workdir test and make it fatal | Holger Freyther | 1 | |
2007-12-26 | classes/insane.bbclass: Make .la failures non-fatal the right way, split up ↵ | Holger Freyther | 1 | |
the .la test in two parts -We have a function that can decide if a failure is fatal, use that instead of setting sane = True. -Test for installed and workdir separately. This allows us to ignore a certain error class and complain on others. | ||||
2007-12-26 | classes/insane.bbclass: Try to increase the readability | Holger Freyther | 1 | |
2007-12-26 | classes/insane.bbclass: Try to increase readability, remove deadcode, ask to ↵ | Holger Freyther | 1 | |
make desktop errors fatal | ||||
2007-12-26 | classes/insane.bbclass: Removal of whitespace and tabs | Holger Freyther | 1 | |
2007-11-23 | insane.bbclass: add package_qa_get_machine_dict() entries for linux-uclibc / ↵ | Jeremy Laine | 1 | |
i*86 | ||||
2007-11-14 | insane.bbclass: merge dot desktop check from poky | Koen Kooi | 1 | |
2007-10-08 | classes/insane.bbclass : x64_64 becomes x86_64 which is more useful | Graeme Gregory | 1 | |
2007-09-29 | insane.bbclass: Raise exceptions, not strings (from poky) | Richard Purdie | 1 | |
2007-08-10 | insane: complete blackfin support | Koen Kooi | 1 | |
2007-06-12 | siteinfo,insane: blackfin is uclinux, not linux | Koen Kooi | 1 | |
2007-06-11 | Blackfin support: | Koen Kooi | 1 | |
* siteinfo.bbclass, bfin-common: autofoo support * kernel-arch.bbclass, linux-libc-headers_2.6.20.bb: bfin -> blackfin mapping for the kernel * insane.bbclass: stubs for bfin arch, needs proper number, but that will get reported when it encounters the first binary * uclibc: config for adsp-bf537-stamp machine * adsp-bf537-stamp.conf: machine description for adsp-bf537-stamp board (http://www.analog.com/en/prod/0%2C2877%2CBF537%25252DSTAMP%2C00.html) The build currently stops in binutils cross with the "ld not supported on this archicture" message | ||||
2007-06-03 | classes/insane: fixed a bug with undefined 'name' and improved output a bit. | Michael Krelin | 1 | |
2007-06-01 | insane.bbclass: add avr32 support | Koen Kooi | 1 | |
2007-05-29 | classes/insane.bbclass: quote filenames to avoid problems with funny ↵ | Michael Krelin | 1 | |
characters. Closes bug #2227 | ||||
2007-05-17 | insane.bbclass: fix sdk builds | Koen Kooi | 1 | |
2007-05-12 | insane.bbclass: add support for ARM EABI/uclibc | Koen Kooi | 1 | |
2007-05-05 | insane.bbclass: repair last commit | Koen Kooi | 1 | |
2007-05-05 | insane.bbclass: on check for references to WORKDIR in RPATH, instead of ↵ | Koen Kooi | 1 | |
WORKDIR and STAGING [18:23] likewise: would be my proposed fix for now, until we figure out if cross tooling need to RPATH to it's own libs. | ||||
2007-04-27 | insane.bbclass: Re-add -B to scanelf to make it correctly check single RPATH ↵ | Leon Woestenberg | 1 | |
occurences. | ||||
2007-04-26 | insane.bbclass: Commented out scanelf format debugging. | Leon Woestenberg | 1 | |
2007-04-26 | insane.bbclass: RPATH check was always true due to scanelf output including ↵ | Leon Woestenberg | 1 | |
the file path. | ||||
2007-04-26 | insane.bbclass: depend on chrpath-native | Koen Kooi | 1 | |
2007-04-26 | insane.bbclass: Broaden check for RPATHs by removing work/ path component. | Leon Woestenberg | 1 | |
2007-04-26 | insane.bbclass: Fix check for bad RPATHs. This is gonna break builds. Needs ↵ | Leon Woestenberg | 1 | |
fixes in the shared library handling. | ||||
2007-04-22 | insane.bbclass: support mipsel - close #2119 | Thomas Kunze | 1 | |