Age | Commit message (Collapse) | Author | Files |
|
arguments for format string by removing a spurious '%s'
|
|
Added extra entry into dict to mark 32bit/64bit and use it for manipulating
ELF headers.
Some architectures would need checking (not OE ones).
|
|
|
|
|
|
|
|
The idea of insane.bbclass is to report all issues found at
once. This is why the checks return True if no error was found
and False if at least one was found.
At the end of all check runs we will see if at least one check
failed and call bb.fatal
|
|
so do bb.fatal instead if bb.error
symptom:
ERROR: Architecture did not match (20 to 3) on /work/ppc603e-angstrom-linux/udev-092-r15/install/udev/sbin/scsi_id
This means OE detected type 3 (i386) while it expected type 20 (powerpc), most likely caused by some fool hardcoding 'gcc' as compiler
|
|
package-index use it
|
|
per architecture subdirs of deploy/ipk
see: http://lists.linuxtogo.org/pipermail/openembedded-devel/2007-February/001462.html
|
|
|
|
|
|
native ones:
.la files should have installed=yes (at least I believe
this). And somehow some believe this as well, some don't though...
some like fakeroot love to install two .la files...
non-native:
.la should have installed=no
both:
should not point to tmp/work. libgettext and libltdl(libtool)
fails this...
happy fixing and arguing
|
|
r1258,r1195)
The .so check now looks for symlinks ending with .so. These are a typical
trait of -dev packages and kills a lot of false positives.
This was authored by ross and was taken from the poky svn repository.
|
|
|
|
|
|
* change "," to "%" so python doesn't die if an error occurs
* spell architecture correctly
* add arm/eabi tupple that works for stripped binaries, but fails for -dbg binaries (abiversion 0 vs 97)
|
|
Debian packages
|
|
x86_64 can not be detected properly with this code - needed change:
- ELFFile.my_assert(self.data[ELFFile.EI_CLASS], chr(ELFFile.ELFCLASS32)) # only 32 bits
+ ELFFile.my_assert(self.data[ELFFile.EI_CLASS], chr(ELFFile.ELFCLASS64))
|
|
|
|
Add a small ELF parser and read OSABI, ABIVERSION, ENDIAN and MACHINE. This
code compares TARGET_OS and TARGET_ARCH to a list of known versions. Currently
we have values for linux and linux-uclibc for arm, armeb and powerpc. mips,
i386, amd64, ia64 are missing. ABI wise ARM EABI is missing as well, but koen
is likely to enter the values into the documented dict
|
|
Add a method to implement koen's skipping of
errors of type .so in non dev package. This
will turn into a list of known and acked issues which
we decided to ignore. I do not yet know how to maintain
such a list properly though
Split the .so in non-dev package and the .debug in non-dbg
package into two different packages
|
|
-Print all errors of the built packages and if we have printed
any errors fail
-Log the errors to a log file, so we can see them afterwards
-Print the path (- the TMPDIR) of the package in question
|
|
errors
-Inspired by doku's work on mpd's buildsystem grep through
the config.log and find broken autotools tests
-Make errors fatal so we will notice these things more quickly.
|
|
some packages
|
|
and 'bf8b52c7c7ffdfe7cb88423cc23d4eeb9c573c2f'
|
|
Welte
|
|
nslu2, nas100d and dsmg600 image building out into classes so they can be reused with multiple distros (like SlugOS and Angstrom)
|
|
* I'm not sure if I like distro revisions in bbclasses
|
|
should rethink and have something that works for multiple kernel versions generically not just a 2.4/2.6 split. There are certainly better ways to do it than this.
|
|
|
|
|
|
http://linuxtogo.org/~florian/gpepe/
|
|
|
|
causing python
traceback spew during population
|
|
migration
|
|
armeb-linux-uclibcgnueabi. Yes, I know neither of them work yet (or at least they don't work for me), but without adding support here no-one will be able to work on making it work.
|
|
|
|
and '77df6e755fc8272db3fd5e4c3b0620b4453ca180'
|
|
|
|
and 'bb4adcc719267cf21949b39dd8d42169fddbc6b3'
|
|
|
|
|
|
|
|
|
|
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.
|
|
KERNEL_VERSION. This should removes a large source of kernel module problems as the variables then 'just work'
|
|
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.
|
|
|
|
|
|
image.bbclass to prepare for rootfs_deb/bbclass (from poky)
|